diff --git a/.github/workflows/generate_dump.yml b/.github/workflows/generate_dump.yml index 11782fa5d..ac8274c51 100644 --- a/.github/workflows/generate_dump.yml +++ b/.github/workflows/generate_dump.yml @@ -44,7 +44,6 @@ jobs: with: repository: ror-community/curation_ops token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} - ref: v2-crosswalk path: ./curation_ops - name: Set up Python environment uses: actions/setup-python@v2 diff --git a/.github/workflows/staging_manual_index.yml b/.github/workflows/staging_manual_index.yml index c6b422fb2..b2ef5e3c0 100644 --- a/.github/workflows/staging_manual_index.yml +++ b/.github/workflows/staging_manual_index.yml @@ -56,7 +56,6 @@ jobs: uses: actions/checkout@v2 with: repository: ror-community/validation-suite - ref: schema-v2 path: validation-suite - name: Validate files id: validatefiles diff --git a/.github/workflows/staging_pull_request.yml b/.github/workflows/staging_pull_request.yml index 116e1743f..c41958a11 100644 --- a/.github/workflows/staging_pull_request.yml +++ b/.github/workflows/staging_pull_request.yml @@ -49,7 +49,6 @@ jobs: uses: actions/checkout@v2 with: repository: ror-community/validation-suite - ref: schema-v2 path: validation-suite - name: Validate files id: validatefiles diff --git a/.github/workflows/v2_temp/dev_index_dump.yml b/.github/workflows/v2_temp/dev_index_dump.yml new file mode 100644 index 000000000..32966abaf --- /dev/null +++ b/.github/workflows/v2_temp/dev_index_dump.yml @@ -0,0 +1,77 @@ +name: DEV index full data dump +on: + workflow_dispatch: + inputs: + release-dump: + type: string + description: Name of existing release dump file to index, without .zip extension (ex v1.41-2024-02-13-ror-data) + schema-version: + required: true + description: Schema version to index + type: choice + options: + - v1 + - v2 + data-env: + required: true + description: ROR data env (test uses ror-data-test repo, prod uses ror-data) + default: 'test' + type: choice + options: + - test + - prod + + +env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} + +jobs: + check_permission: + runs-on: ubuntu-latest + if: github.event.ref == 'refs/heads/dev' + steps: + - name: Get Permission + uses: octokit/request-action@v2.x + id: get_permission + with: + route: GET /repos/${{ github.repository }}/collaborators/${{ github.actor }}/permission + env: + GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + - name: output + run: | + export role_name=${{ fromJson(steps.get_permission.outputs.data).role_name }} + if [[ "$role_name" == "admin" ]]; then + exit 0 + else + exit 1 + fi + index-dump: + runs-on: ubuntu-latest + if: github.event.ref == 'refs/heads/dev' + needs: check_permission + steps: + - name: checkout + uses: actions/checkout@v2 + - name: Index dump file + id: indexdatadump + run: | + cd .github/workflows + python -m pip install --upgrade pip + pip install requests==2.23.0 + if [[ ${{ github.event.inputs.schema-version }} == "v1" ]]; then + python index_dump.py -u ${{ secrets.INDEX_DUMP_DEV_API_URL }} -f ${{ github.event.inputs.release-dump }} -e ${{ github.event.inputs.data-env }} -he ${{ secrets.INDEX_DEV_API_HEADERS }} + else + python index_dump.py -u ${{ secrets.INDEX_DUMP_DEV_API_URL_V2 }} -f ${{ github.event.inputs.release-dump }} -e ${{ github.event.inputs.data-env }} -he ${{ secrets.INDEX_DEV_API_HEADERS }} + fi + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'DEV full index from dump status: ${{ steps.indexdatadump.outcome }}. From file: ${{ github.event.inputs.release-dump }}. Schema version: ${{ github.event.inputs.schema-version }}. Data env: ${{ github.event.inputs.data-env }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + diff --git a/.github/workflows/v2_temp/dev_manual_index.yml b/.github/workflows/v2_temp/dev_manual_index.yml new file mode 100644 index 000000000..b832d1103 --- /dev/null +++ b/.github/workflows/v2_temp/dev_manual_index.yml @@ -0,0 +1,144 @@ +name: DEV manual deploy from dev branch +on: + workflow_dispatch: + inputs: + schema-version: + required: true + description: Schema version + type: choice + options: + - v1 + - v2 + directory-name: + type: string + required: true + description: Name of the directory you would like to deploy to DEV + +env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} + +jobs: + check_permission: + runs-on: ubuntu-latest + #if: github.event.ref == 'refs/heads/dev' + steps: + - name: Get Permission + uses: octokit/request-action@v2.x + id: get_permission + with: + route: GET /repos/${{ github.repository }}/collaborators/${{ github.actor }}/permission + env: + GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + - name: output + run: | + export role_name=${{ fromJson(steps.get_permission.outputs.data).role_name }} + if [[ "$role_name" == "maintain" || "$role_name" == "admin" ]]; then + exit 0 + else + exit 1 + fi + check_validation: + runs-on: ubuntu-latest + #if: github.event.ref == 'refs/heads/dev' + needs: check_permission + steps: + - name: checkout + uses: actions/checkout@v2 + with: + ref: ${{ github.event.ref }} + - name: Set up Python environment + uses: actions/setup-python@v2 + with: + python-version: "3.8" + - name: Checkout validation suite + uses: actions/checkout@v2 + with: + repository: ror-community/validation-suite + ref: schema-v2 + path: validation-suite + - name: Validate files + id: validatefiles + run: | + mkdir files + cp ./${{ github.event.inputs.directory-name }}/*.json files/ + cd validation-suite + python -m pip install --upgrade pip + pip install -r requirements.txt + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + curl https://raw.githubusercontent.com/ror-community/ror-schema/master/ror_schema.json -o ror_schema.json + if [[ -f "../${{github.event.pull_request.head.ref}}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 1 -s ror_schema.json -f ../${{github.event.pull_request.head.ref}}/relationships.csv -p ../files/ --no-geonames + else + python run_validations.py -i ../files -v 1 -s ror_schema.json --no-geonames + fi + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + curl https://raw.githubusercontent.com/ror-community/ror-schema/master/ror_schema_v2_0.json -o ror_schema_v2_0.json + if [[ -f "../${{github.event.pull_request.head.ref}}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -f ../${{github.event.pull_request.head.ref}}/relationships.csv -p ../files/ --no-geonames + else + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json --no-geonames + fi + fi + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'Validation status during DEV manual index: ${{ steps.validatefiles.outcome }}. In directory: ${{ github.event.inputs.directory-name }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + copy-files: + runs-on: ubuntu-latest + #if: github.event.ref == 'refs/heads/dev' + needs: check_validation + steps: + - name: checkout + uses: actions/checkout@v2 + with: + ref: ${{ github.event.ref }} + - name: Install aws cli + id: install-aws-cli + uses: unfor19/install-aws-cli-action@v1.0.2 + - name: Zip and copy files + id: copyfiles + run: | + cd ./${{ github.event.inputs.directory-name }} + zip files.zip *.json + aws s3 cp files.zip s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.inputs.directory-name }}-${{ github.event.inputs.schema-version }}/files.zip + aws s3 ls s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.inputs.directory-name }}-${{ github.event.inputs.schema-version }}/files.zip + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'Copy status to DEV S3 Bucket: ${{ steps.copyfiles.outcome }}. From directory: ${{ github.event.inputs.directory-name }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + - name: Index file + id: indexdata + run: | + cd .github/workflows + python -m pip install --upgrade pip + pip install requests==2.23.0 + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + python index_files.py -u ${{ secrets.INDEX_DEV_API_URL_V1 }} -d ${{ github.event.inputs.directory-name }}-v1 -he ${{ secrets.INDEX_DEV_API_HEADERS }} + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + python index_files.py -u ${{ secrets.INDEX_DEV_API_URL_V2 }} -d ${{ github.event.inputs.directory-name }}-v2 -he ${{ secrets.INDEX_DEV_API_HEADERS }} + fi + + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'DEV index status: ${{ steps.indexdata.outcome }}. Using version ${{ github.event.inputs.schema-version }}. From directory: ${{ github.event.inputs.directory-name }}-${{ github.event.inputs.schema-version }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + diff --git a/.github/workflows/v2_temp/dev_merge.yml b/.github/workflows/v2_temp/dev_merge.yml new file mode 100644 index 000000000..6de121683 --- /dev/null +++ b/.github/workflows/v2_temp/dev_merge.yml @@ -0,0 +1,69 @@ +name: Deploy to DEV on PR merge to dev branch +on: + push: + branches: + - 'dev' + paths-ignore: + - '**/README.md' + - '**/workflows/**' +env: + MERGE_SHA: ${{ github.event.after }} + REPO_INFO: ${{ github.event.repository.full_name }} + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} + +jobs: + copy-files: + runs-on: ubuntu-latest + steps: + - name: Get Merge PR + uses: octokit/request-action@v2.x + id: get_merge_pr + with: + route: GET /search/issues + q: 'repo:${{ github.event.repository.full_name }}+is:pr+is:closed+merge_sha_commit:${{ github.event.after }}' + env: + GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + - name: Get branch name + run: | + export url=${{ fromJson(steps.get_merge_pr.outputs.data).items[0].pull_request.url }} + echo "release_branch=$(curl ${url} | jq -r .head.ref)" >> $GITHUB_ENV + - name: checkout + uses: actions/checkout@v2 + - name: Install aws cli + id: install-aws-cli + uses: unfor19/install-aws-cli-action@v1.0.2 + - name: Zip and copy files + id: copyfiles + run: | + cd ./${{ env.release_branch }} + zip files.zip *.json + aws s3 cp files.zip s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV}}/${{ env.release_branch }}-v2/files.zip + aws s3 ls s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ env.release_branch }}-v2/files.zip + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'Copy status to DEV S3 Bucket: ${{ steps.copyfiles.outcome }}. Using v2. On branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + - name: Index file + id: indexdata + run: | + cd .github/workflows + python -m pip install --upgrade pip + pip install requests==2.23.0 + python index_files.py -u ${{ secrets.INDEX_DEV_API_URL_V2 }} -d ${{ env.release_branch }}-v2 -he ${{ secrets.INDEX_DEV_API_HEADERS }} + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'DEV index status: ${{ steps.indexdata.outcome }}. Using v2. On branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME}. Directory: ${{ env.release_branch }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + diff --git a/.github/workflows/v2_temp/dev_pull_request.yml b/.github/workflows/v2_temp/dev_pull_request.yml new file mode 100644 index 000000000..850f3e508 --- /dev/null +++ b/.github/workflows/v2_temp/dev_pull_request.yml @@ -0,0 +1,77 @@ +name: PR to DEV +on: + pull_request: + types: [opened, reopened, synchronize] + branches: + - '!main' + - '!v**' + - 'dev' + paths-ignore: + - '**/README.md' + - '.github/*' + +env: + USER_INFO: ${{ github.event.pull_request.user.login }} + REPO_INFO: ${{ github.event.pull_request.base.repo.full_name }} + +jobs: + check_permission: + runs-on: ubuntu-latest + steps: + - name: Get Permission + uses: octokit/request-action@v2.x + id: get_permission + with: + route: GET /repos/${{ env.REPO_INFO }}/collaborators/${{ env.USER_INFO }}/permission + env: + GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + - name: output + run: | + export role_name=${{ fromJson(steps.get_permission.outputs.data).role_name }} + if [[ "$role_name" == "maintain" || "$role_name" == "admin" ]]; then + exit 0 + else + exit 1 + fi + check_validation: + runs-on: ubuntu-latest + needs: check_permission + steps: + - name: checkout + uses: actions/checkout@v2 + with: + ref: ${{ github.event.pull_request.head.sha }} + - name: Set up Python environment + uses: actions/setup-python@v2 + with: + python-version: "3.8" + - name: Checkout validation suite + uses: actions/checkout@v2 + with: + repository: ror-community/validation-suite + ref: schema-v2 + path: validation-suite + - name: Validate files + id: validatefiles + run: | + mkdir files + cp ./${{github.event.pull_request.head.ref}}/*.json files/ + cd validation-suite + python -m pip install --upgrade pip + pip install -r requirements.txt + curl https://raw.githubusercontent.com/ror-community/ror-schema/master/ror_schema_v2_0.json -o ror_schema_v2_0.json + if [[ -f "../${{github.event.pull_request.head.ref}}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -f ../${{github.event.pull_request.head.ref}}/relationships.csv -p ../files/ --no-geonames + else + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json --no-geonames + fi + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'Validation status during PR to DEV: ${{ steps.validatefiles.outcome }}. Using v2. On branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_HEAD_REF}. In directory: ${env.GITHUB_HEAD_REF}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + diff --git a/.github/workflows/v2_temp/generate_dump.yml b/.github/workflows/v2_temp/generate_dump.yml new file mode 100644 index 000000000..9f9daee56 --- /dev/null +++ b/.github/workflows/v2_temp/generate_dump.yml @@ -0,0 +1,99 @@ +name: Create data dump +on: + workflow_dispatch: + inputs: + schema-version: + required: true + description: Release schema version + type: choice + options: + - v1 + - v2 + new-release: + type: string + description: Name of the directory that the new release is located in + prev-release: + type: string + description: Name of the existing release zip file to base this data dump from + +jobs: + generate-dump: + runs-on: ubuntu-latest + steps: + - name: Echo message + id: echo_message + run: echo "Github action triggered with inputs new release ${{github.event.inputs.new-release}} and previous release ${{github.event.inputs.prev-release}}" + - name: checkout ror records repo + uses: actions/checkout@v2 + with: + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + path: ./ror-records-test + - name: checkout ror data repo + uses: actions/checkout@v2 + with: + repository: ror-community/ror-data-test + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + path: ./ror-data-test + - name: copy previous data dump file + id: copyprevdump + run: | + cp -R ./ror-data-test/${{github.event.inputs.prev-release}}.zip ./ror-records-test + - name: checkout ror curation ops repo + uses: actions/checkout@v2 + with: + repository: ror-community/curation_ops + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + ref: v2-crosswalk + path: ./curation_ops + - name: Set up Python environment + uses: actions/setup-python@v2 + with: + python-version: "3.8" + - name: execute script + id: gendumpscript + run: | + cd ./curation_ops/generate_dump/ + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + python generate_dump.py -r ${{github.event.inputs.new-release}} -e ${{github.event.inputs.prev-release}} -i '../../ror-records-test' -o '../../ror-records-test' -v 1 + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + python generate_dump.py -r ${{github.event.inputs.new-release}} -e ${{github.event.inputs.prev-release}} -i '../../ror-records-test' -o '../../ror-records-test' -v 2 + fi + - name: cat error file + if: ${{ steps.gendumpscript.outcome != 'success'}} + run: | + echo "ERRORS found:" + cat errors.log + - name: copy new data dump file + id: copynewdump + run: | + yes | cp -rf ./ror-records-test/${{github.event.inputs.new-release}}*.zip ./ror-data-test + - name: commit dump file + id: commitdumpfile + if: ${{ steps.copynewdump.outcome == 'success'}} + run: | + cd ./ror-data-test + git config --local user.email "ror-bot@ror.org" + git config --local user.name "ror-bot" + git add *.zip + git commit -m "add new data dump file" + git push origin main + - name: commit changed files + if: ${{ steps.commitdumpfile.outcome == 'success'}} + run: | + pwd + cd ./ror-records-test + git config --local user.email "ror-bot@ror.org" + git config --local user.name "ror-bot" + git add ${{github.event.inputs.new-release}}/v1/ + git commit -m "add generated v1 files" + git push origin main + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'DEV Data dump ${{github.event.inputs.new-release}} generation status: ${{ steps.commitdumpfile.outcome }}. Using base version ${{ github.event.inputs.schema-version }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/.github/workflows/v2_temp/generate_dump_v2_initial_release.yml b/.github/workflows/v2_temp/generate_dump_v2_initial_release.yml new file mode 100644 index 000000000..d7d85a798 --- /dev/null +++ b/.github/workflows/v2_temp/generate_dump_v2_initial_release.yml @@ -0,0 +1,106 @@ +name: Create data dump v2 first release +description: Generates a data dump based on an input file from ror-data-test and uploades the result to ror-data. For use during the first v1 release only. +on: + workflow_dispatch: + inputs: + schema-version: + required: true + description: Release schema version + type: choice + options: + - v1 + - v2 + new-release: + type: string + description: Name of the directory that the new release is located in + prev-release: + type: string + description: Name of the existing release zip file to base this data dump from + +jobs: + generate-dump: + runs-on: ubuntu-latest + steps: + - name: Echo message + id: echo_message + run: echo "Github action triggered with inputs new release ${{github.event.inputs.new-release}} and previous release ${{github.event.inputs.prev-release}}" + - name: checkout ror records repo + uses: actions/checkout@v2 + with: + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + path: ./ror-records-test + - name: checkout ror data test repo + uses: actions/checkout@v2 + with: + repository: ror-community/ror-data-test + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + path: ./ror-data-test + - name: checkout ror data prod repo + uses: actions/checkout@v2 + with: + repository: ror-community/ror-data + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + path: ./ror-data-prod + - name: copy previous data dump file + id: copyprevdump + run: | + cp -R ./ror-data-test/${{github.event.inputs.prev-release}}.zip ./ror-records-test + - name: checkout ror curation ops repo + uses: actions/checkout@v2 + with: + repository: ror-community/curation_ops + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + ref: v2-crosswalk + path: ./curation_ops + - name: Set up Python environment + uses: actions/setup-python@v2 + with: + python-version: "3.8" + - name: execute script + id: gendumpscript + run: | + cd ./curation_ops/generate_dump/ + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + python generate_dump.py -r ${{github.event.inputs.new-release}} -e ${{github.event.inputs.prev-release}} -i '../../ror-records-test' -o '../../ror-records-prod' -v 1 + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + python generate_dump.py -r ${{github.event.inputs.new-release}} -e ${{github.event.inputs.prev-release}} -i '../../ror-records-test' -o '../../ror-records-prod' -v 2 + fi + - name: cat error file + if: ${{ steps.gendumpscript.outcome != 'success'}} + run: | + echo "ERRORS found:" + cat errors.log + - name: copy new data dump file + id: copynewdump + run: | + yes | cp -rf ./ror-records-prod/${{github.event.inputs.new-release}}*.zip ./ror-data-prod + - name: commit dump file + id: commitdumpfile + if: ${{ steps.copynewdump.outcome == 'success'}} + run: | + cd ./ror-data-prod + git config --local user.email "ror-bot@ror.org" + git config --local user.name "ror-bot" + git add *.zip + git commit -m "add new data dump file" + git push origin main + - name: commit changed files + if: ${{ steps.commitdumpfile.outcome == 'success'}} + run: | + pwd + cd ./ror-records-test + git config --local user.email "ror-bot@ror.org" + git config --local user.name "ror-bot" + git add ${{github.event.inputs.new-release}}/v1/ + git commit -m "add generated v1 files" + git push origin main + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'DEV Data dump ${{github.event.inputs.new-release}} generation status: ${{ steps.commitdumpfile.outcome }}. Using base version ${{ github.event.inputs.schema-version }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/.github/workflows/v2_temp/index_dump.py b/.github/workflows/v2_temp/index_dump.py new file mode 100644 index 000000000..d52967649 --- /dev/null +++ b/.github/workflows/v2_temp/index_dump.py @@ -0,0 +1,43 @@ +import argparse +import os +import requests +import json +import sys + +def set_args(): + parser = argparse.ArgumentParser( + description="Send request to index data dump") + parser.add_argument('-u', '--url', help='URL to index dump file', required=True) + parser.add_argument('-f', '--file', help='name of dump file to be indexed', required=True) + parser.add_argument('-e', '--dataenv', help='data env to retrieve dump file from', required=True) + parser.add_argument('-he', '--headers', help='key:value json string; headers to authenticate request', required=True, type=json.loads) + args = parser.parse_args() + return args + +def send_request(url, headers): + try: + response = requests.get(url,headers=headers) + except requests.exceptions.RequestException as e: + raise e + return response + +def main(): + args = set_args() + url = args.url + filename = args.file + dataenv = args.dataenv + headers = args.headers + full_url = os.path.join(url, filename, dataenv) + print(full_url) + response = send_request(full_url, headers) + if not(response.ok): + print(response.text) + sys.exit(1) + elif response.ok: + print(response.text) + sys.exit(0) + + +if __name__ == "__main__": + main() + diff --git a/.github/workflows/v2_temp/index_files.py b/.github/workflows/v2_temp/index_files.py new file mode 100644 index 000000000..b7281f46f --- /dev/null +++ b/.github/workflows/v2_temp/index_files.py @@ -0,0 +1,39 @@ +import argparse +import os +import requests +import json +import sys + +def set_args(): + parser = argparse.ArgumentParser( + description="Send request to index files") + parser.add_argument('-u', '--url', help='URL to index files', required=True) + parser.add_argument('-d', '--dir', help='directory in S3 bucket that is to be indexed', required=True) + parser.add_argument('-he', '--headers', help='key:value json string; headers to authenticate request', required=True, type=json.loads) + args = parser.parse_args() + return args + +def send_request(url, headers): + try: + response = requests.get(url,headers=headers) + except requests.exceptions.RequestException as e: + raise e + return response + +def main(): + args = set_args() + url = args.url + dir = args.dir + headers = args.headers + full_url = os.path.join(url, dir) + response = send_request(full_url, headers) + if not(response.ok): + print(response.text) + sys.exit(1) + elif response.ok: + sys.exit(0) + + +if __name__ == "__main__": + main() + diff --git a/.github/workflows/v2_temp/main_pull_request.yml b/.github/workflows/v2_temp/main_pull_request.yml new file mode 100644 index 000000000..ec1e20e82 --- /dev/null +++ b/.github/workflows/v2_temp/main_pull_request.yml @@ -0,0 +1,33 @@ +name: PR to Main +on: + pull_request: + types: [opened, reopened, synchronize] + branches: + - '!v**' + - 'main' + - '!staging' + +env: + USER_INFO: ${{ github.event.pull_request.user.login }} + REPO_INFO: ${{ github.event.pull_request.base.repo.full_name }} + +jobs: + check_permission: + runs-on: ubuntu-latest + steps: + - name: Get Permission + uses: octokit/request-action@v2.x + id: get_permission + with: + route: GET /repos/${{ env.REPO_INFO }}/collaborators/${{ env.USER_INFO }}/permission + env: + GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + - name: output + run: | + export role_name=${{ fromJson(steps.get_permission.outputs.data).role_name }} + if [[ "$role_name" == "maintain" || "$role_name" == "admin" ]]; then + exit 0 + else + exit 1 + fi + diff --git a/.github/workflows/v2_temp/main_release.yml b/.github/workflows/v2_temp/main_release.yml new file mode 100644 index 000000000..386c4d6a2 --- /dev/null +++ b/.github/workflows/v2_temp/main_release.yml @@ -0,0 +1,79 @@ +name: Deploy to Prod +on: + release: + types: [published] + +env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} + TAG: ${{ github.event.release.tag_name }} + +jobs: + echo_info: + runs-on: ubuntu-latest + steps: + - name: Echo info + id: echo_message + run: echo "Github action Deploy to Prod was triggered with release tag ${{ github.event.release.tag_name }}" + check_permission: + runs-on: ubuntu-latest + steps: + - name: Get Permission + uses: octokit/request-action@v2.x + id: get_permission + with: + route: GET /repos/${{ github.repository }}/collaborators/${{ github.actor }}/permission + env: + GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + - name: output + run: | + export role_name=${{ fromJson(steps.get_permission.outputs.data).role_name }} + if [[ "$role_name" == "maintain" || "$role_name" == "admin" ]]; then + exit 0 + else + exit 1 + fi + copy_files: + runs-on: ubuntu-latest + needs: check_permission + steps: + - name: checkout + uses: actions/checkout@v2 + with: + ref: ${{ github.event.ref }} + - name: Install aws cli + id: install-aws-cli + uses: unfor19/install-aws-cli-action@v1.0.2 + - name: Zip and copy files + id: copyfiles + run: | + cd ./${{ github.event.release.tag_name }} + zip files.zip *.json + aws s3 cp files.zip s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.release.tag_name }}-v2/files.zip + aws s3 ls s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.release.tag_name }}-v2/files.zip + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'Copy status to DEV S3 Bucket: ${{ steps.copyfiles.outcome }}. From directory: ${{ github.event.release.tag_name }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + - name: Index data + id: indexdata + run: | + cd .github/workflows + python -m pip install --upgrade pip + pip install requests==2.23.0 + python index_files.py -u ${{ secrets.INDEX_DEV_API_URL_V2 }} -d ${{ github.event.release.tag_name }}-v2 -he ${{ secrets.INDEX_DEV_API_HEADERS }} + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'DEV index status: ${{ steps.indexdata.outcome }}. Using v2. From directory: ${{ github.event.release.tag_name }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/.github/workflows/v2_temp/publish_dump_zenodo.yml b/.github/workflows/v2_temp/publish_dump_zenodo.yml new file mode 100644 index 000000000..29b5fbae0 --- /dev/null +++ b/.github/workflows/v2_temp/publish_dump_zenodo.yml @@ -0,0 +1,62 @@ +name: Publish data dump to Zenodo +on: + workflow_dispatch: + inputs: + release: + required: true + type: string + description: Release version (ex v1.17) + zenodo-env: + required: true + description: Zenodo environment + default: 'sandbox' + type: choice + options: + - sandbox + - prod + record-id: + required: true + type: string + description: Parent Zenodo record ID (if different from default) + default: '1098376' +env: + ZENODO_TOKEN_SANDBOX: ${{ secrets.ZENODO_TOKEN_SANDBOX }} + ZENODO_TOKEN_PROD: ${{ secrets.ZENODO_TOKEN_PROD }} + PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + PERSONAL_ACCESS_TOKEN_USER: ${{ secrets.PERSONAL_ACCESS_TOKEN_USER }} + +jobs: + publish-dump: + runs-on: ubuntu-latest + steps: + - name: Echo message + id: echo_message + run: echo "Github action triggered with inputs release ${{github.event.inputs.release}}, Zenodo env ${{github.event.inputs.zenodo-env}}, parent record ID ${{github.event.inputs.record-id}}" + - name: checkout ror data repo + uses: actions/checkout@v2 + with: + repository: ror-community/ror-data + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + path: ./ror-data-test + - name: Set up Python environment + uses: actions/setup-python@v2 + with: + python-version: "3.8" + - name: execute script + id: publishdumpscript + run: | + cd ./ror-data + python -m pip install --upgrade pip + curl https://raw.githubusercontent.com/ror-community/curation_ops/main/upload_dump_zenodo/requirements.txt -o requirements.txt + pip install -r requirements.txt + curl https://raw.githubusercontent.com/ror-community/curation_ops/main/upload_dump_zenodo/upload_dump_zenodo.py -o upload_dump_zenodo.py + python upload_dump_zenodo.py -r ${{github.event.inputs.release}} -p ${{github.event.inputs.record-id}} -e ${{github.event.inputs.zenodo-env}} + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'DEV Data dump ${{github.event.inputs.release}} Zenodo publication status: ${{ steps.publishdumpscript.outcome }} Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/.github/workflows/v2_temp/validate.yml b/.github/workflows/v2_temp/validate.yml new file mode 100644 index 000000000..a89a80c23 --- /dev/null +++ b/.github/workflows/v2_temp/validate.yml @@ -0,0 +1,116 @@ +name: Validate files +on: + workflow_dispatch: + inputs: + schema-version: + required: true + description: Schema version + type: choice + options: + - v1 + - v2 + with-relationship: + type: boolean + description: Check box to validate with relationships + skip-geonames: + type: boolean + description: Check box to skip Geonames validation + directory-name: + type: string + description: Name of parent directory containing records to validate. Needed only if different from branch name. + +jobs: + validate-files: + runs-on: ubuntu-latest + if: github.event.ref != 'refs/heads/main' + steps: + - name: checkout + uses: actions/checkout@v2 + with: + ref: ${{ github.event.ref }} + - name: Set up Python environment + uses: actions/setup-python@v2 + with: + python-version: "3.8" + - name: Checkout validation suite + uses: actions/checkout@v2 + with: + repository: ror-community/validation-suite + ref: schema-v2 + path: validation-suite + - 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: | + echo ${{ github.event.inputs.schema-version}} + mkdir files + cp ./${{ env.WORKING_DIR }}/*/*.json files/ + cd validation-suite + python -m pip install --upgrade pip + pip install -r requirements.txt + curl https://raw.githubusercontent.com/ror-community/ror-schema/master/ror_schema.json -o ror_schema.json + curl https://raw.githubusercontent.com/ror-community/ror-schema/master/ror_schema_v2_0.json -o ror_schema_v2_0.json + ls ../files/ + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + echo "validating v1" + if [[ ${{ github.event.inputs.skip-geonames }} == true ]]; then + if [[ ${{ github.event.inputs.with-relationship }} == true ]]; then + if [[ -f "../${{ env.WORKING_DIR }}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 1 -s ror_schema.json -f ../${{ env.WORKING_DIR }}/relationships.csv -p ../files/ --no-geonames + else + python run_validations.py -i ../files -v 1 -s ror_schema.json -p ../files/ --no-geonames + fi + elif [[ ${{ github.event.inputs.with-relationship }} == false ]]; then + python run_validations.py -i ../files -v 1 -s ror_schema.json --no-geonames + fi + else + if [[ ${{ github.event.inputs.with-relationship }} == true ]]; then + if [[ -f "../${{ env.WORKING_DIR }}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 1 -s ror_schema.json -f ../${{ env.WORKING_DIR }}/relationships.csv -p ../files/ + else + python run_validations.py -i ../files -v 1 -s ror_schema.json -p ../files/ + fi + elif [[ ${{ github.event.inputs.with-relationship }} == false ]]; then + python run_validations.py -i ../files -v 1 -s ror_schema.json + fi + fi + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + echo "validating v2" + if [[ ${{ github.event.inputs.skip-geonames }} == true ]]; then + if [[ ${{ github.event.inputs.with-relationship }} == true ]]; then + if [[ -f "../${{ env.WORKING_DIR }}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -f ../${{ env.WORKING_DIR }}/relationships.csv -p ../files/ --no-geonames + else + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -p ../files/ --no-geonames + fi + elif [[ ${{ github.event.inputs.with-relationship }} == false ]]; then + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json --no-geonames + fi + else + if [[ ${{ github.event.inputs.with-relationship }} == true ]]; then + if [[ -f "../${{ env.WORKING_DIR }}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -f ../${{ env.WORKING_DIR }}/relationships.csv -p ../files/ + else + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -p ../files/ + fi + elif [[ ${{ github.event.inputs.with-relationship }} == false ]]; then + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json + fi + fi + fi + + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'Validation status ${{ steps.validatefiles.outcome }} in ${env.GITHUB_REPOSITORY}. Using version ${{ github.event.inputs.schema-version }}. On branch: ${{ env.WORKING_DIR }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index c0adc3897..d5df7da30 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -36,7 +36,6 @@ jobs: uses: actions/checkout@v2 with: repository: ror-community/validation-suite - ref: schema-v2 path: validation-suite - name: Get directory name if: "${{ github.event.inputs.directory-name != '' }}" diff --git a/README.md b/README.md index ced1fdfca..08c1cde63 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ JSON files for new and updated ROR records should be validated before generating 4. 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/curation_ops/blob/v2-crosswalk/generate_relationships/generate_relationships.py) triggered by a Github action [Create relationships](https://github.com/ror-community/ror-updates/actions/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. +Relationships are not included in the intitial ROR record JSON files. Relationships are generated using a script [generaterelationships.py](https://github.com/ror-community/curation_ops/blob/main/generate_relationships/generate_relationships.py) triggered by a Github action [Create relationships](https://github.com/ror-community/ror-updates/actions/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. 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: @@ -136,7 +136,7 @@ Relationships are not included in the intitial ROR record JSON files. Relationsh ## Remove relationships to inactive records Active records cannot contain relationships to inactive or withdrawn records. On each release, all release records must be checked for status changes and, for any where status changed from active to inactive or withdrawn, relationships to those records must be removed from active records (both in the release and in production). -Relationships to inactive records are removed using a script [remove_relationships.py](https://github.com/ror-community/curation_ops/blob/v2-crosswalk/remove_relationships/remove_relationships.py) triggered by a Github action [Remove relationships to inactive records](https://github.com/ror-community/ror-updates/actions/workflows/remove_relationships.yml), which must be run AFTER the Generate relationships action. +Relationships to inactive records are removed using a script [remove_relationships.py](https://github.com/ror-community/curation_ops/blob/main/remove_relationships/remove_relationships.py) triggered by a Github action [Remove relationships to inactive records](https://github.com/ror-community/ror-updates/actions/workflows/remove_relationships.yml), which must be run AFTER the Generate relationships action. 1. Go to https://github.com/ror-community/ror-updates/actions/workflows/remove_relationships.yml (Actions > Remove relationships to inactive records in the ror-updates repository) @@ -168,7 +168,7 @@ All release records must have their locations.geonames_details checked against t ## Update last modified dates All release records must have their last modified date updated to match the (planned) date of the release. Ideally, this date should match the data dump file date. Release file generation is often completed 1 or more days before the release is actually deployed. In that case, the planned release date should be used (not the current date). -Last modified dates are updated using a script [update_last_mod.py](https://github.com/ror-community/curation_ops/blob/v2-crosswalk/utilities/update_last_mod/update_last_mod.py) triggered by a Github action [Update last modified date](https://github.com/ror-community/ror-updates/actions/workflows/update_last_mod.yml). This action should be run after all other changes to release files are complete. +Last modified dates are updated using a script [update_last_mod.py](https://github.com/ror-community/curation_ops/blob/main/utilities/update_last_mod/update_last_mod.py) triggered by a Github action [Update last modified date](https://github.com/ror-community/ror-updates/actions/workflows/update_last_mod.yml). This action should be run after all other changes to release files are complete. 1. Go to https://github.com/ror-community/ror-updates/actions/workflows/update_last_mod.yml(Actions > Update last modified date in the ror-updates repository) 2. Click Run workflow at right and set the following options: diff --git a/v1.45/v1/004j8pp46.json b/v1.45/v1/004j8pp46.json new file mode 100644 index 000000000..5655f151f --- /dev/null +++ b/v1.45/v1/004j8pp46.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/004j8pp46", + "name": "Salim Habib University", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.8608, + "lng": 67.0104, + "state": null, + "state_code": null, + "city": "Karachi", + "geonames_city": { + "id": 1174872, + "city": "Karachi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.shu.edu.pk" + ], + "aliases": [], + "acronyms": [ + "SHU" + ], + "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.45/v1/0065v9d27.json b/v1.45/v1/0065v9d27.json new file mode 100644 index 000000000..93003f0f4 --- /dev/null +++ b/v1.45/v1/0065v9d27.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/0065v9d27", + "name": "International Clinical Epidemiology Network", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.62137, + "lng": 77.2148, + "state": null, + "state_code": null, + "city": "New Delhi", + "geonames_city": { + "id": 1261481, + "city": "New Delhi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://inclentrust.org/inclen/" + ], + "aliases": [], + "acronyms": [ + "INCLEN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.435388.1", + "preferred": "grid.435388.1" + }, + "ISNI": { + "all": [ + "0000 0004 0492 8164" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30290002" + ], + "preferred": "Q30290002" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/006q8y354.json b/v1.45/v1/006q8y354.json new file mode 100644 index 000000000..0aa46f8a3 --- /dev/null +++ b/v1.45/v1/006q8y354.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/006q8y354", + "name": "Center for Advanced Security Research Darmstadt", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Research Center for Applied Cybersecurity ATHENE", + "type": "Successor", + "id": "https://ror.org/0378v2g76" + } + ], + "addresses": [ + { + "lat": 49.87167, + "lng": 8.65027, + "state": null, + "state_code": null, + "city": "Darmstadt", + "geonames_city": { + "id": 2938913, + "city": "Darmstadt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cased.de" + ], + "aliases": [], + "acronyms": [ + "CASED" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Center_for_Advanced_Security_Research_Darmstadt", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q1022865" + ], + "preferred": "Q1022865" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/006xxv571.json b/v1.45/v1/006xxv571.json new file mode 100644 index 000000000..da1af36d7 --- /dev/null +++ b/v1.45/v1/006xxv571.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/006xxv571", + "name": "Mobius Labs GmbH (Germany)", + "email_address": null, + "ip_addresses": [], + "established": null, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mobiuslabs.com" + ], + "aliases": [ + "Mobius Labs", + "Mobius Labs GmbH" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Mobius Labs", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/00965mv68.json b/v1.45/v1/00965mv68.json new file mode 100644 index 000000000..35fd561e8 --- /dev/null +++ b/v1.45/v1/00965mv68.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/00965mv68", + "name": "Tecnológico Nacional de México Campus San Juan de los Ríos", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 17.82644, + "lng": -91.37517, + "state": null, + "state_code": null, + "city": "Balancán Municipality", + "geonames_city": { + "id": 8583436, + "city": "Balancán Municipality", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rios.tecnm.mx/rios/" + ], + "aliases": [ + "TecNM Campus San Juan de los Ríos" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/009t5dc22.json b/v1.45/v1/009t5dc22.json new file mode 100644 index 000000000..59fc46e1f --- /dev/null +++ b/v1.45/v1/009t5dc22.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/009t5dc22", + "name": "Laboratoire de recherche du CEIPI", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ceipi.edu" + ], + "aliases": [ + "Centre d'études internationales de la propriété intellectuelle" + ], + "acronyms": [ + "CEIPI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2181 1046" + ], + "preferred": "0000 0001 2181 1046" + }, + "Wikidata": { + "all": [ + "Q51780587" + ], + "preferred": "Q51780587" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00a19vs18.json b/v1.45/v1/00a19vs18.json new file mode 100644 index 000000000..4bb65a8b5 --- /dev/null +++ b/v1.45/v1/00a19vs18.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00a19vs18", + "name": "Culture et histoire dans l'espace roman", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cher.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "CHER" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783005" + ], + "preferred": "Q51783005" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00arpt780.json b/v1.45/v1/00arpt780.json new file mode 100644 index 000000000..ef3b4d37e --- /dev/null +++ b/v1.45/v1/00arpt780.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00arpt780", + "name": "Institute for Marine and Antarctic Studies", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.88995, + "lng": 147.33324, + "state": null, + "state_code": null, + "city": "Battery Point", + "geonames_city": { + "id": 8349119, + "city": "Battery Point", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.imas.utas.edu.au" + ], + "aliases": [], + "acronyms": [ + "IMAS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_for_Marine_and_Antarctic_Studies", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 5894 4338" + ], + "preferred": "0000 0004 5894 4338" + }, + "Wikidata": { + "all": [ + "Q6039487" + ], + "preferred": "Q6039487" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00bjskz46.json b/v1.45/v1/00bjskz46.json new file mode 100644 index 000000000..1e6e0d8ae --- /dev/null +++ b/v1.45/v1/00bjskz46.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00bjskz46", + "name": "InnovaWood", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "InnovaWood", + "type": "Successor", + "id": "https://ror.org/019gta678" + } + ], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.innovawood.com/" + ], + "aliases": [], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "GRID": { + "all": "grid.435327.4", + "preferred": "grid.435327.4" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00bn0wv11.json b/v1.45/v1/00bn0wv11.json new file mode 100644 index 000000000..6c10b7ed9 --- /dev/null +++ b/v1.45/v1/00bn0wv11.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00bn0wv11", + "name": "Xuzhou College of Industrial Technology", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.20442, + "lng": 117.28386, + "state": null, + "state_code": null, + "city": "Xuzhou", + "geonames_city": { + "id": 10630003, + "city": "Xuzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.xzcit.edu.cn" + ], + "aliases": [], + "acronyms": [ + "XZCIT" + ], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E5%BE%90%E5%B7%9E%E5%B7%A5%E4%B8%9A%E8%81%8C%E4%B8%9A%E6%8A%80%E6%9C%AF%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "徐州工业职业技术学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1762 598X" + ], + "preferred": "0000 0004 1762 598X" + }, + "Wikidata": { + "all": [ + "Q11070561" + ], + "preferred": "Q11070561" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00bq8vv83.json b/v1.45/v1/00bq8vv83.json new file mode 100644 index 000000000..68ea149a3 --- /dev/null +++ b/v1.45/v1/00bq8vv83.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/00bq8vv83", + "name": "IMT Mines Albi", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut Clément Ader", + "type": "Child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Centre de Recherche d'Albi en génie des Procédés, des SOlides Divisés, de l'Énergie et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03cxnrt47" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "ARMINES", + "type": "Parent", + "id": "https://ror.org/00dcrfk74" + }, + { + "label": "Institut Mines-Télécom", + "type": "Parent", + "id": "https://ror.org/025vp2923" + }, + { + "label": "Université de Toulouse", + "type": "Parent", + "id": "https://ror.org/004raaa70" + }, + { + "label": "Centre de Génie Industriel", + "type": "Child", + "id": "https://ror.org/012x47023" + } + ], + "addresses": [ + { + "lat": 43.9298, + "lng": 2.148, + "state": null, + "state_code": null, + "city": "Albi", + "geonames_city": { + "id": 3038261, + "city": "Albi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.imt-mines-albi.fr" + ], + "aliases": [ + "École Nationale Supérieure des Mines d'Albi-Carmaux" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_des_mines_d'Albi-Carmaux", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463793.c", + "preferred": "grid.463793.c" + }, + "Wikidata": { + "all": [ + "Q3577934" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00ck0kh03.json b/v1.45/v1/00ck0kh03.json new file mode 100644 index 000000000..4b7ed2ad4 --- /dev/null +++ b/v1.45/v1/00ck0kh03.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00ck0kh03", + "name": "NSW Environment and Heritage", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "NSW Department of Climate Change, Energy, the Environment and Water", + "type": "Parent", + "id": "https://ror.org/038pwz535" + }, + { + "label": "Marine Biodiversity Hub", + "type": "Related", + "id": "https://ror.org/00jwcjd97" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.environment.nsw.gov.au" + ], + "aliases": [ + "NSW Office of Environment and Heritage", + "New South Wales Environment and Heritage", + "New South Wales Office of Environment and Heritage" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q28152838" + ], + "preferred": "Q28152838" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00dds0202.json b/v1.45/v1/00dds0202.json new file mode 100644 index 000000000..f72e975c2 --- /dev/null +++ b/v1.45/v1/00dds0202.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00dds0202", + "name": "Instituto Tecnológico Superior de Cananea", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.98699, + "lng": -110.29062, + "state": null, + "state_code": null, + "city": "Cananea", + "geonames_city": { + "id": 4015700, + "city": "Cananea", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.teccan.edu.mx" + ], + "aliases": [ + "TecNM Campus Cananea", + "TecNM Instituto Tecnológico Superior de Cananea", + "Tecnológico Nacional de México Campus Cananea", + "Tecnológico Nacional de México Instituto Tecnológico Superior de Cananea" + ], + "acronyms": [ + "ITSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/00fxh9j50.json b/v1.45/v1/00fxh9j50.json new file mode 100644 index 000000000..409236774 --- /dev/null +++ b/v1.45/v1/00fxh9j50.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00fxh9j50", + "name": "Shanghai Yangpu Senior High School", + "email_address": null, + "ip_addresses": [], + "established": 1953, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.22222, + "lng": 121.45806, + "state": null, + "state_code": null, + "city": "Shanghai", + "geonames_city": { + "id": 1796236, + "city": "Shanghai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ypgz.edu.sh.cn" + ], + "aliases": [ + "Yangpu Senior High School", + "杨浦高级中学" + ], + "acronyms": [ + "YPGJZX", + "YPGZ", + "杨高" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "上海市杨浦高级中学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q61995979" + ], + "preferred": "Q61995979" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00gm7ct78.json b/v1.45/v1/00gm7ct78.json new file mode 100644 index 000000000..2048ba37b --- /dev/null +++ b/v1.45/v1/00gm7ct78.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00gm7ct78", + "name": "Centre d'études internationales et européennes", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ceie.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "CEIE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2243 4123" + ], + "preferred": "0000 0001 2243 4123" + }, + "Wikidata": { + "all": [ + "Q51781253" + ], + "preferred": "Q51781253" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00hj8s172.json b/v1.45/v1/00hj8s172.json new file mode 100644 index 000000000..18d9d31c4 --- /dev/null +++ b/v1.45/v1/00hj8s172.json @@ -0,0 +1,179 @@ +{ + "id": "https://ror.org/00hj8s172", + "name": "Columbia University", + "email_address": null, + "ip_addresses": [], + "established": 1754, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Lamont-Doherty Earth Observatory", + "type": "Child", + "id": "https://ror.org/02e2tgs60" + }, + { + "label": "ICAP Global Health", + "type": "Child", + "id": "https://ror.org/01f0vkh84" + }, + { + "label": "Bassett Healthcare Network", + "type": "Related", + "id": "https://ror.org/04qvzh720" + }, + { + "label": "Bassett Medical Center", + "type": "Related", + "id": "https://ror.org/05fk0de79" + }, + { + "label": "Columbia University Irving Medical Center", + "type": "Related", + "id": "https://ror.org/01esghr10" + }, + { + "label": "Greenwich Hospital", + "type": "Related", + "id": "https://ror.org/036qtaj98" + }, + { + "label": "Harlem Hospital Center", + "type": "Related", + "id": "https://ror.org/00tz4k675" + }, + { + "label": "Helen Hayes Hospital", + "type": "Related", + "id": "https://ror.org/02k4w3g59" + }, + { + "label": "Holy Name Medical Center", + "type": "Related", + "id": "https://ror.org/05fnpxf31" + }, + { + "label": "Manhattan Eye, Ear and Throat Hospital", + "type": "Related", + "id": "https://ror.org/008a4de11" + }, + { + "label": "NewYork–Presbyterian Hospital", + "type": "Related", + "id": "https://ror.org/03gzbrs57" + }, + { + "label": "Nyack Hospital", + "type": "Related", + "id": "https://ror.org/0378zg266" + }, + { + "label": "St. Francis Hospital", + "type": "Related", + "id": "https://ror.org/00mj4n083" + }, + { + "label": "Stamford Hospital", + "type": "Related", + "id": "https://ror.org/05jr4qt09" + }, + { + "label": "Union Theological Seminary", + "type": "Related", + "id": "https://ror.org/05jesdm52" + }, + { + "label": "United States Science Support Program", + "type": "Related", + "id": "https://ror.org/032x9hy18" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.columbia.edu" + ], + "aliases": [ + "Columbia College", + "Columbia University in the City of New York", + "King's College" + ], + "acronyms": [ + "CU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Columbia_University", + "labels": [ + { + "label": "Universidad de Columbia", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.21729.3f", + "preferred": "grid.21729.3f" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8729" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q49088", + "Q7004967" + ], + "preferred": "Q49088" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00j9qzp88.json b/v1.45/v1/00j9qzp88.json new file mode 100644 index 000000000..683fb3f7f --- /dev/null +++ b/v1.45/v1/00j9qzp88.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00j9qzp88", + "name": "Nordic International University", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.26465, + "lng": 69.21627, + "state": null, + "state_code": null, + "city": "Tashkent", + "geonames_city": { + "id": 1512569, + "city": "Tashkent", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nordicuniversity.org" + ], + "aliases": [ + "Nordic University" + ], + "acronyms": [ + "NIU", + "XNU", + "МУН" + ], + "status": "active", + "wikipedia_url": "https://uz.wikipedia.org/wiki/Xalqaro_Nordik_Universiteti_%28XNU%2C_NIU%29", + "labels": [ + { + "label": "Xalqaro Nordik universiteti", + "iso639": "uz" + }, + { + "label": "Международный Университет Нордик", + "iso639": "ru" + } + ], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1402 0157" + ], + "preferred": "0000 0005 1402 0157" + }, + "Wikidata": { + "all": [ + "Q114076881" + ], + "preferred": "Q114076881" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00jks2h96.json b/v1.45/v1/00jks2h96.json new file mode 100644 index 000000000..585f23f28 --- /dev/null +++ b/v1.45/v1/00jks2h96.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00jks2h96", + "name": "Department of Agriculture, Fisheries and Forestry", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Australian Government", + "type": "Parent", + "id": "https://ror.org/0314h5y94" + }, + { + "label": "Department of Agriculture, Water and the Environment", + "type": "Predecessor", + "id": "https://ror.org/030c92375" + }, + { + "label": "TAS Farm Innovation Hub", + "type": "Child", + "id": "https://ror.org/05gjpam11" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.agriculture.gov.au" + ], + "aliases": [], + "acronyms": [ + "DAFF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Agriculture%2C_Fisheries_and_Forestry_%28Australia%29", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q113826568" + ], + "preferred": "Q113826568" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00jwcjd97.json b/v1.45/v1/00jwcjd97.json new file mode 100644 index 000000000..5ef904be2 --- /dev/null +++ b/v1.45/v1/00jwcjd97.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/00jwcjd97", + "name": "Marine Biodiversity Hub", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + }, + { + "label": "Australian Institute of Marine Science", + "type": "Related", + "id": "https://ror.org/03x57gn41" + }, + { + "label": "Charles Darwin University", + "type": "Related", + "id": "https://ror.org/048zcaj52" + }, + { + "label": "Commonwealth Scientific and Industrial Research Organisation", + "type": "Related", + "id": "https://ror.org/03qn8fb07" + }, + { + "label": "Geoscience Australia", + "type": "Related", + "id": "https://ror.org/04ge02x20" + }, + { + "label": "Museums Victoria", + "type": "Related", + "id": "https://ror.org/04mf3mq37" + }, + { + "label": "New South Wales Department of Primary Industries", + "type": "Related", + "id": "https://ror.org/050khh066" + }, + { + "label": "NSW Environment and Heritage", + "type": "Related", + "id": "https://ror.org/00ck0kh03" + }, + { + "label": "University of Western Australia", + "type": "Related", + "id": "https://ror.org/047272k79" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nespmarine.edu.au" + ], + "aliases": [ + "NESP Marine Biodiversity Hub", + "National Environmental Science Program Marine Biodiversity Hub" + ], + "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.45/v1/00kb8e717.json b/v1.45/v1/00kb8e717.json new file mode 100644 index 000000000..e0737075b --- /dev/null +++ b/v1.45/v1/00kb8e717.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00kb8e717", + "name": "Samarkand branch of Tashkent State University of Economics", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.65417, + "lng": 66.95972, + "state": null, + "state_code": null, + "city": "Samarkand", + "geonames_city": { + "id": 1216265, + "city": "Samarkand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sbtsue.uz" + ], + "aliases": [], + "acronyms": [ + "SBTSUE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Toshkent davlat iqtisodiyot universiteti samarqand filiali", + "iso639": "uz" + }, + { + "label": "Филиал Ташкентского Государственного Экономического Университета", + "iso639": "ru" + } + ], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/00kgb4w19.json b/v1.45/v1/00kgb4w19.json new file mode 100644 index 000000000..a180cb2cc --- /dev/null +++ b/v1.45/v1/00kgb4w19.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/00kgb4w19", + "name": "Prefeitura da Cidade do Recife", + "email_address": null, + "ip_addresses": [], + "established": 1537, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -8.05389, + "lng": -34.88111, + "state": null, + "state_code": null, + "city": "Recife", + "geonames_city": { + "id": 3390760, + "city": "Recife", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www2.recife.pe.gov.br" + ], + "aliases": [ + "Prefeitura do Recife", + "Recife City Hall" + ], + "acronyms": [ + "PCR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4686 7902" + ], + "preferred": "0000 0004 4686 7902" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00mkad321.json b/v1.45/v1/00mkad321.json new file mode 100644 index 000000000..192b308db --- /dev/null +++ b/v1.45/v1/00mkad321.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/00mkad321", + "name": "Agroecology", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Agro Dijon", + "type": "Parent", + "id": "https://ror.org/03zek0r74" + }, + { + "label": "Centre Hospitalier Universitaire Dijon Bourgogne", + "type": "Parent", + "id": "https://ror.org/0377z4z10" + }, + { + "label": "Délégation Centre-Est", + "type": "Parent", + "id": "https://ror.org/01tz1zp46" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Burgundy", + "type": "Parent", + "id": "https://ror.org/03k1bsr36" + } + ], + "addresses": [ + { + "lat": 47.31667, + "lng": 5.01667, + "state": null, + "state_code": null, + "city": "Dijon", + "geonames_city": { + "id": 3021372, + "city": "Dijon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.dijon.inrae.fr/umragroecologie_eng/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Agroécologie", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462299.2", + "preferred": "grid.462299.2" + }, + "ISNI": { + "all": [ + "0000 0004 0445 7139" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261421" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00pg6eq24.json b/v1.45/v1/00pg6eq24.json new file mode 100644 index 000000000..dc8324f82 --- /dev/null +++ b/v1.45/v1/00pg6eq24.json @@ -0,0 +1,485 @@ +{ + "id": "https://ror.org/00pg6eq24", + "name": "University of Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 1538, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Biomatériaux et Bioingénierie", + "type": "Child", + "id": "https://ror.org/05vcax154" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bureau for Economic Theory and Applications", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Hubert Curien Pluridisciplinary Institute", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Charles Sadron", + "type": "Child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "Child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "Child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "Child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "Child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Laboratoire Image, Ville, Environnement", + "type": "Child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", + "type": "Child", + "id": "https://ror.org/008pt4x48" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "Child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratory of Design and Application of Bioactive Molecules", + "type": "Child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "Child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Mitochondrie, stress oxydant et protection musculaire", + "type": "Child", + "id": "https://ror.org/05sc3hd12" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Societies, Actors and Governement in Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Laboratoire Interuniversitaire des Sciences de l'Education et de la Communication", + "type": "Child", + "id": "https://ror.org/04n2vwk08" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "Child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Institute for Translational Medicine and Liver Disease", + "type": "Child", + "id": "https://ror.org/00jvqbw52" + }, + { + "label": "Chronobiotron", + "type": "Child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "Child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "Child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "Child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "Child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Archives Henri-Poincaré - Philosophie et Recherches sur les Sciences et les Technologies", + "type": "Child", + "id": "https://ror.org/02fdf4056" + }, + { + "label": "Médecine Cardiovasculaire Translationnelle", + "type": "Child", + "id": "https://ror.org/010e21634" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "Related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "Neuroscience et Psychiatrie Translationnelle de Strasbourg", + "type": "Child", + "id": "https://ror.org/05dd6kb95" + }, + { + "label": "Approches contemporaines de la création et de la réflexion artistiques", + "type": "Child", + "id": "https://ror.org/01x3qz996" + }, + { + "label": "Centre d'analyse des rhétoriques religieuses de l'Antiquité", + "type": "Child", + "id": "https://ror.org/05a26ag16" + }, + { + "label": "Centre d'études internationales et européennes", + "type": "Child", + "id": "https://ror.org/00gm7ct78" + }, + { + "label": "Centre de droit privé fondamental", + "type": "Child", + "id": "https://ror.org/03597ek14" + }, + { + "label": "Diabète et thérapies cellulaires", + "type": "Child", + "id": "https://ror.org/02wj62e51" + }, + { + "label": "Immuno-Rhumathologie moléculaire", + "type": "Child", + "id": "https://ror.org/03k7yrw82" + }, + { + "label": "Laboratoire de Génétique Médicale", + "type": "Child", + "id": "https://ror.org/016wpzq40" + }, + { + "label": "Laboratoire de pharmacologie et de toxicologie neurocardiovasculaire", + "type": "Child", + "id": "https://ror.org/028c6kd10" + }, + { + "label": "Centre de recherches en philosophie allemande et contemporaine", + "type": "Child", + "id": "https://ror.org/02p06sa95" + }, + { + "label": "Configurations littéraires", + "type": "Child", + "id": "https://ror.org/02rnpdm14" + }, + { + "label": "Culture et histoire dans l'espace roman", + "type": "Child", + "id": "https://ror.org/00a19vs18" + }, + { + "label": "Groupe d'études orientales, slaves et néo-helléniques", + "type": "Child", + "id": "https://ror.org/03te95s40" + }, + { + "label": "Humans and management in society", + "type": "Child", + "id": "https://ror.org/04x97hf88" + }, + { + "label": "Laboratoire interdisciplinaire en études culturelles", + "type": "Child", + "id": "https://ror.org/03820wq39" + }, + { + "label": "Laboratoire de psychologie des cognitions", + "type": "Child", + "id": "https://ror.org/02phbwg91" + }, + { + "label": "Laboratoire de recherche du CEIPI", + "type": "Child", + "id": "https://ror.org/009t5dc22" + }, + { + "label": "Laboratoire de recherche en gestion et économie", + "type": "Child", + "id": "https://ror.org/028nd8457" + }, + { + "label": "Linguistique, langues, parole", + "type": "Child", + "id": "https://ror.org/03xrrn515" + }, + { + "label": "Mondes germaniques et nord-européens", + "type": "Child", + "id": "https://ror.org/03c363p94" + }, + { + "label": "Savoirs dans l'espace anglophone : représentations, culture, histoire", + "type": "Child", + "id": "https://ror.org/03n4s8180" + }, + { + "label": "Sport et sciences sociales", + "type": "Child", + "id": "https://ror.org/056d3xj17" + }, + { + "label": "Subjectivité, lien social et modernité", + "type": "Child", + "id": "https://ror.org/04pwapm65" + }, + { + "label": "Théologie catholique et sciences religieuses", + "type": "Child", + "id": "https://ror.org/00w0bpf20" + }, + { + "label": "Théologie protestante", + "type": "Child", + "id": "https://ror.org/03phbpb09" + }, + { + "label": "Arts, civilisation et histoire de l'Europe", + "type": "Child", + "id": "https://ror.org/049513r96" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unistra.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", + "labels": [ + { + "label": "Universitat d'Estrasburg", + "iso639": "ca" + }, + { + "label": "Universität Straßburg", + "iso639": "de" + }, + { + "label": "Université de Strasbourg", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.11843.3f", + "preferred": "grid.11843.3f" + }, + "ISNI": { + "all": [ + "0000 0001 2157 9291" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q157575" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00s44s987.json b/v1.45/v1/00s44s987.json new file mode 100644 index 000000000..2bb77b493 --- /dev/null +++ b/v1.45/v1/00s44s987.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00s44s987", + "name": "FREYR Battery (Norway)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.91273, + "lng": 10.74609, + "state": null, + "state_code": null, + "city": "Oslo", + "geonames_city": { + "id": 3143244, + "city": "Oslo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.freyrbattery.com" + ], + "aliases": [ + "FREYR", + "Freyr Battery Norway AS" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://no.wikipedia.org/wiki/Freyr", + "labels": [ + { + "label": "FREYR Battery", + "iso639": "en" + } + ], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q120761341" + ], + "preferred": "Q120761341" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00scnsb87.json b/v1.45/v1/00scnsb87.json new file mode 100644 index 000000000..4f736a1ac --- /dev/null +++ b/v1.45/v1/00scnsb87.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00scnsb87", + "name": "Zhejiang Yuexiu University", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.00237, + "lng": 120.57864, + "state": null, + "state_code": null, + "city": "Shaoxing", + "geonames_city": { + "id": 1795855, + "city": "Shaoxing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.zyufl.edu.cn" + ], + "aliases": [ + "Zhejiang Yuexiu University of Foreign Languages" + ], + "acronyms": [ + "ZYU" + ], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/zh-cn/%E6%B5%99%E6%B1%9F%E8%B6%8A%E7%A7%80%E5%A4%96%E5%9B%BD%E8%AF%AD%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "浙江越秀外国语学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1762 1882" + ], + "preferred": "0000 0004 1762 1882" + }, + "Wikidata": { + "all": [ + "Q18118745" + ], + "preferred": "Q18118745" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00sefv038.json b/v1.45/v1/00sefv038.json new file mode 100644 index 000000000..d5a249764 --- /dev/null +++ b/v1.45/v1/00sefv038.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00sefv038", + "name": "Multimedia Nusantara University", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Multimedia Nusantara Polytechnic", + "type": "Related", + "id": "https://ror.org/02w69ra18" + } + ], + "addresses": [ + { + "lat": -6.17806, + "lng": 106.63, + "state": null, + "state_code": null, + "city": "Tangerang", + "geonames_city": { + "id": 1625084, + "city": "Tangerang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umn.ac.id/" + ], + "aliases": [], + "acronyms": [ + "UMN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Multimedia_Nusantara_University", + "labels": [ + { + "label": "Universitas Multimedia Nusantara", + "iso639": "id" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "GRID": { + "all": "grid.444545.0", + "preferred": "grid.444545.0" + }, + "ISNI": { + "all": [ + "0000 0004 0386 6774" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2610734" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00tfmma03.json b/v1.45/v1/00tfmma03.json new file mode 100644 index 000000000..654e23741 --- /dev/null +++ b/v1.45/v1/00tfmma03.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/00tfmma03", + "name": "Australian Centre for Research on Separation Science", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/across" + ], + "aliases": [], + "acronyms": [ + "ACROSS" + ], + "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.45/v1/00w0bpf20.json b/v1.45/v1/00w0bpf20.json new file mode 100644 index 000000000..90c40b7dc --- /dev/null +++ b/v1.45/v1/00w0bpf20.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00w0bpf20", + "name": "Théologie catholique et sciences religieuses", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://theocatho.unistra.fr/ur4377/presentation-de-lur-4377/" + ], + "aliases": [], + "acronyms": [ + "TCSR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782931" + ], + "preferred": "Q51782931" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/00xn0ew58.json b/v1.45/v1/00xn0ew58.json new file mode 100644 index 000000000..68b323d5f --- /dev/null +++ b/v1.45/v1/00xn0ew58.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00xn0ew58", + "name": "Suzhou Hongyuan Biotech Inc. (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.30408, + "lng": 120.59538, + "state": null, + "state_code": null, + "city": "Suzhou", + "geonames_city": { + "id": 1886760, + "city": "Suzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Suzhou Hongyuan Biotech Inc.", + "iso639": "en" + }, + { + "label": "苏州宏元生物科技有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/00zgas264.json b/v1.45/v1/00zgas264.json new file mode 100644 index 000000000..0611504f6 --- /dev/null +++ b/v1.45/v1/00zgas264.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/00zgas264", + "name": "Procédés Alimentaires et Microbiologiques", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Agro Dijon", + "type": "Parent", + "id": "https://ror.org/03zek0r74" + }, + { + "label": "University of Burgundy", + "type": "Parent", + "id": "https://ror.org/03k1bsr36" + } + ], + "addresses": [ + { + "lat": 47.31667, + "lng": 5.01667, + "state": null, + "state_code": null, + "city": "Dijon", + "geonames_city": { + "id": 3021372, + "city": "Dijon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umr-pam.fr/" + ], + "aliases": [], + "acronyms": [ + "PAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464129.c", + "preferred": "grid.464129.c" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/010hz2d37.json b/v1.45/v1/010hz2d37.json new file mode 100644 index 000000000..bbc1276ee --- /dev/null +++ b/v1.45/v1/010hz2d37.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/010hz2d37", + "name": "Laboratoire d'Annecy-le-Vieux de Physique Théorique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Savoie Mont Blanc", + "type": "Parent", + "id": "https://ror.org/04gqg1a07" + } + ], + "addresses": [ + { + "lat": 45.90878, + "lng": 6.12565, + "state": null, + "state_code": null, + "city": "Annecy", + "geonames_city": { + "id": 3037543, + "city": "Annecy", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lapp.in2p3.fr" + ], + "aliases": [], + "acronyms": [ + "LAPTh" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462959.5", + "preferred": "grid.462959.5" + }, + "ISNI": { + "all": [ + "0000 0001 2224 4709" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/010x3gp67.json b/v1.45/v1/010x3gp67.json new file mode 100644 index 000000000..704ce5bb2 --- /dev/null +++ b/v1.45/v1/010x3gp67.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/010x3gp67", + "name": "Integrated Marine Observing System", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + }, + { + "label": "Australian Institute of Marine Science", + "type": "Related", + "id": "https://ror.org/03x57gn41" + }, + { + "label": "Bureau of Meteorology", + "type": "Related", + "id": "https://ror.org/04dkp1p98" + }, + { + "label": "Commonwealth Scientific and Industrial Research Organisation", + "type": "Related", + "id": "https://ror.org/03qn8fb07" + }, + { + "label": "Sydney Institute of Marine Science", + "type": "Related", + "id": "https://ror.org/03ry2ah66" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://imos.org.au" + ], + "aliases": [], + "acronyms": [ + "IMOS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.507692.f", + "preferred": "grid.507692.f" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/011sn6j23.json b/v1.45/v1/011sn6j23.json new file mode 100644 index 000000000..26778d62f --- /dev/null +++ b/v1.45/v1/011sn6j23.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/011sn6j23", + "name": "Corvus Energy (Norway)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 60.31821, + "lng": 5.35317, + "state": null, + "state_code": null, + "city": "Nesttun", + "geonames_city": { + "id": 3144631, + "city": "Nesttun", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://corvusenergy.com" + ], + "aliases": [ + "Corvus" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Corvus_Energy", + "labels": [ + { + "label": "Corvus Energy", + "iso639": "en" + } + ], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5173482" + ], + "preferred": "Q5173482" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/012n0t549.json b/v1.45/v1/012n0t549.json new file mode 100644 index 000000000..f7e22e808 --- /dev/null +++ b/v1.45/v1/012n0t549.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/012n0t549", + "name": "Cullinan Oncology (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.3751, + "lng": -71.10561, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 4931972, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cullinanoncology.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cullinan Oncology", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/012x47023.json b/v1.45/v1/012x47023.json new file mode 100644 index 000000000..988ed351a --- /dev/null +++ b/v1.45/v1/012x47023.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/012x47023", + "name": "Centre de Génie Industriel", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "IMT Mines Albi", + "type": "Parent", + "id": "https://ror.org/00bq8vv83" + } + ], + "addresses": [ + { + "lat": 43.9298, + "lng": 2.148, + "state": null, + "state_code": null, + "city": "Albi", + "geonames_city": { + "id": 3038261, + "city": "Albi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cgi.imt-mines-albi.fr" + ], + "aliases": [ + "IMT Mines Albi Industrial Engineering Center", + "Industrial Engineering Center" + ], + "acronyms": [ + "CGI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783941" + ], + "preferred": "Q51783941" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/0159eq874.json b/v1.45/v1/0159eq874.json new file mode 100644 index 000000000..46f3de822 --- /dev/null +++ b/v1.45/v1/0159eq874.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/0159eq874", + "name": "Magnum Semiconductor (Canada)", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.4668, + "lng": -80.51639, + "state": null, + "state_code": null, + "city": "Waterloo", + "geonames_city": { + "id": 6176823, + "city": "Waterloo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.magnumsemi.com/home.html" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/Magnum_Semiconductor", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.421095.b", + "preferred": "grid.421095.b" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/016wpzq40.json b/v1.45/v1/016wpzq40.json new file mode 100644 index 000000000..9c251113c --- /dev/null +++ b/v1.45/v1/016wpzq40.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/016wpzq40", + "name": "Laboratoire de Génétique Médicale", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unistra.fr/recherche-1/vie-et-sante-1/immuno-rhumathologie-moleculaire-irm-umr-s-1109" + ], + "aliases": [], + "acronyms": [ + "LGM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Medical Genetics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785328" + ], + "preferred": "Q51785328" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/017xqsb41.json b/v1.45/v1/017xqsb41.json new file mode 100644 index 000000000..8caa42a30 --- /dev/null +++ b/v1.45/v1/017xqsb41.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/017xqsb41", + "name": "Africa Renewal University", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 0.19763, + "lng": 33.29361, + "state": null, + "state_code": null, + "city": "Buloba", + "geonames_city": { + "id": 11356121, + "city": "Buloba", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://afru.ac.ug" + ], + "aliases": [], + "acronyms": [ + "AfRU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Africa_Renewal_University", + "labels": [], + "country": { + "country_name": "Uganda", + "country_code": "UG" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q28446441" + ], + "preferred": "Q28446441" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/0188qm081.json b/v1.45/v1/0188qm081.json new file mode 100644 index 000000000..c3d693169 --- /dev/null +++ b/v1.45/v1/0188qm081.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/0188qm081", + "name": "Lilongwe University of Agriculture and Natural Resources", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -13.96692, + "lng": 33.78725, + "state": null, + "state_code": null, + "city": "Lilongwe", + "geonames_city": { + "id": 927967, + "city": "Lilongwe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://luanar.ac.mw/luanar/" + ], + "aliases": [ + "Bunda College of Agriculture" + ], + "acronyms": [ + "LUANAR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lilongwe_University_of_Agriculture_and_Natural_Resources", + "labels": [], + "country": { + "country_name": "Malawi", + "country_code": "MW" + }, + "external_ids": { + "GRID": { + "all": "grid.459750.a", + "preferred": "grid.459750.a" + }, + "ISNI": { + "all": [ + "0000 0001 2176 4980" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q55616872" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/0188x7939.json b/v1.45/v1/0188x7939.json new file mode 100644 index 000000000..47926e010 --- /dev/null +++ b/v1.45/v1/0188x7939.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/0188x7939", + "name": "Wuhan Myhalic Biotechnological Co., Ltd (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.58333, + "lng": 114.26667, + "state": null, + "state_code": null, + "city": "Wuhan", + "geonames_city": { + "id": 1791247, + "city": "Wuhan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hlkbio.cn" + ], + "aliases": [ + "Wuhan Myhalic Biotechnological Co.", + "Wuhan Myhalic Biotechnological Co., Ltd" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "武汉华联科生物技术有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/018906e22.json b/v1.45/v1/018906e22.json new file mode 100644 index 000000000..ae83eae05 --- /dev/null +++ b/v1.45/v1/018906e22.json @@ -0,0 +1,134 @@ +{ + "id": "https://ror.org/018906e22", + "name": "Erasmus MC", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Erasmus MC - Sophia Children’s Hospital", + "type": "Child", + "id": "https://ror.org/047afsm11" + }, + { + "label": "Erasmus MC Cancer Institute", + "type": "Child", + "id": "https://ror.org/03r4m3349" + }, + { + "label": "Erasmus MC Transplant Institute", + "type": "Child", + "id": "https://ror.org/0585v6057" + }, + { + "label": "Erasmus Optical Imaging Centre", + "type": "Child", + "id": "https://ror.org/00hjpwn75" + }, + { + "label": "Erasmus MC Hart en Vaat Instituut", + "type": "Child", + "id": "https://ror.org/004c11w41" + }, + { + "label": "Erasmus University Rotterdam", + "type": "Related", + "id": "https://ror.org/057w15z03" + }, + { + "label": "ERN CRANIO", + "type": "Related", + "id": "https://ror.org/032gggv33" + }, + { + "label": "ERNICA", + "type": "Related", + "id": "https://ror.org/02h9n4675" + }, + { + "label": "Rotterdam Study", + "type": "Child", + "id": "https://ror.org/02ac58f22" + } + ], + "addresses": [ + { + "lat": 51.9225, + "lng": 4.47917, + "state": null, + "state_code": null, + "city": "Rotterdam", + "geonames_city": { + "id": 2747891, + "city": "Rotterdam", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.erasmusmc.nl/" + ], + "aliases": [ + "Erasmus University Medical Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Erasmus_MC", + "labels": [], + "country": { + "country_name": "Netherlands", + "country_code": "NL" + }, + "external_ids": { + "GRID": { + "all": "grid.5645.2", + "preferred": "grid.5645.2" + }, + "ISNI": { + "all": [ + "0000 0004 0459 992X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3126873" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/018kp7s70.json b/v1.45/v1/018kp7s70.json new file mode 100644 index 000000000..07b0be3b6 --- /dev/null +++ b/v1.45/v1/018kp7s70.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/018kp7s70", + "name": "Tasmania Law Reform Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/law-reform" + ], + "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.45/v1/019kjfs29.json b/v1.45/v1/019kjfs29.json new file mode 100644 index 000000000..b5b9134fb --- /dev/null +++ b/v1.45/v1/019kjfs29.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/019kjfs29", + "name": "Instituto Tecnológico Superior de Calkiní", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.36905, + "lng": -90.05119, + "state": null, + "state_code": null, + "city": "Calkiní", + "geonames_city": { + "id": 3531793, + "city": "Calkiní", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.itescam.edu.mx" + ], + "aliases": [ + "TecNM Instituto Tecnológico Superior de Calkiní", + "Tecnológico Nacional de México Instituto Tecnológico Superior de Calkiní" + ], + "acronyms": [ + "ITESCAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/019wvm592.json b/v1.45/v1/019wvm592.json new file mode 100644 index 000000000..df03182f4 --- /dev/null +++ b/v1.45/v1/019wvm592.json @@ -0,0 +1,134 @@ +{ + "id": "https://ror.org/019wvm592", + "name": "Australian National University", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ARC Centre of Excellence for Transformative Meta-Optical Systems", + "type": "Child", + "id": "https://ror.org/05sh7tb37" + }, + { + "label": "ARC Centre of Excellence in Plant Energy Biology", + "type": "Child", + "id": "https://ror.org/01a1mq059" + }, + { + "label": "Mount Stromlo Observatory", + "type": "Child", + "id": "https://ror.org/006a4jj40" + }, + { + "label": "Australian Data Archive", + "type": "Child", + "id": "https://ror.org/00qtfgg81" + }, + { + "label": "Calvary Hospital", + "type": "Related", + "id": "https://ror.org/041c7s516" + }, + { + "label": "Canberra Hospital", + "type": "Related", + "id": "https://ror.org/04h7nbn38" + }, + { + "label": "Goulburn Base Hospital", + "type": "Related", + "id": "https://ror.org/030jpqj15" + }, + { + "label": "Consortium for Ocean-Sea Ice Modelling in Australia", + "type": "Related", + "id": "https://ror.org/00qq77n27" + }, + { + "label": "Australian Centre for Excellence in Antarctic Science", + "type": "Child", + "id": "https://ror.org/024jkkf40" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.anu.edu.au/" + ], + "aliases": [], + "acronyms": [ + "ANU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Australian_National_University", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1001.0", + "preferred": "grid.1001.0" + }, + "ISNI": { + "all": [ + "0000 0001 2180 7477" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q127990" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01aaptx40.json b/v1.45/v1/01aaptx40.json new file mode 100644 index 000000000..40e99562f --- /dev/null +++ b/v1.45/v1/01aaptx40.json @@ -0,0 +1,125 @@ +{ + "id": "https://ror.org/01aaptx40", + "name": "Indiana University Health", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Ball Memorial Hospital", + "type": "Child", + "id": "https://ror.org/04d54np47" + }, + { + "label": "Indiana University Hospital", + "type": "Child", + "id": "https://ror.org/05rbkcx47" + }, + { + "label": "La Porte Hospital", + "type": "Child", + "id": "https://ror.org/00a06kx42" + }, + { + "label": "Methodist Hospital", + "type": "Child", + "id": "https://ror.org/00g635h87" + }, + { + "label": "Riley Hospital for Children", + "type": "Child", + "id": "https://ror.org/03vzvbw58" + }, + { + "label": "Indiana University – Purdue University Indianapolis", + "type": "Related", + "id": "https://ror.org/05gxnyn08" + }, + { + "label": "Indiana University School of Medicine", + "type": "Related", + "id": "https://ror.org/02ets8c94" + } + ], + "addresses": [ + { + "lat": 39.76838, + "lng": -86.15804, + "state": null, + "state_code": null, + "city": "Indianapolis", + "geonames_city": { + "id": 4259418, + "city": "Indianapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://iuhealth.org/" + ], + "aliases": [ + "Clarian Health", + "IU Health" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Indiana_University_Health", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.411569.e", + "preferred": "grid.411569.e" + }, + "ISNI": { + "all": [ + "0000 0004 0440 2154" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6023587" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01cawbq05.json b/v1.45/v1/01cawbq05.json new file mode 100644 index 000000000..af5ae461e --- /dev/null +++ b/v1.45/v1/01cawbq05.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/01cawbq05", + "name": "Qatar Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Equine Veterinary Medical Center", + "type": "Child", + "id": "https://ror.org/02d983k79" + }, + { + "label": "Qatar Green Building Council", + "type": "Child", + "id": "https://ror.org/03axtnh73" + }, + { + "label": "Qatar National Library", + "type": "Child", + "id": "https://ror.org/02jv93662" + }, + { + "label": "Qatar National Research Fund", + "type": "Child", + "id": "https://ror.org/01svaqq28" + }, + { + "label": "HEC Paris in Qatar", + "type": "Child", + "id": "https://ror.org/03ctqg407" + } + ], + "addresses": [ + { + "lat": 25.28545, + "lng": 51.53096, + "state": null, + "state_code": null, + "city": "Doha", + "geonames_city": { + "id": 290030, + "city": "Doha", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.qf.org.qa/" + ], + "aliases": [ + "Qatar Foundation for Education, Science and Community Development" + ], + "acronyms": [ + "QF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Qatar_Foundation", + "labels": [ + { + "label": "مؤسسة قطر", + "iso639": "ar" + } + ], + "country": { + "country_name": "Qatar", + "country_code": "QA" + }, + "external_ids": { + "GRID": { + "all": "grid.418818.c", + "preferred": "grid.418818.c" + }, + "ISNI": { + "all": [ + "0000 0001 0516 2170" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1575900" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01dvabv26.json b/v1.45/v1/01dvabv26.json new file mode 100644 index 000000000..92e1bedff --- /dev/null +++ b/v1.45/v1/01dvabv26.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01dvabv26", + "name": "Bülent Ecevit University", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.45139, + "lng": 31.79305, + "state": null, + "state_code": null, + "city": "Zonguldak", + "geonames_city": { + "id": 737022, + "city": "Zonguldak", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.beun.edu.tr" + ], + "aliases": [ + "Zonguldak Karaelmas University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/B%C3%BClent_Ecevit_University", + "labels": [ + { + "label": "Bülent Ecevit Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Turkey", + "country_code": "TR" + }, + "external_ids": { + "GRID": { + "all": "grid.411822.c", + "preferred": "grid.411822.c" + }, + "ISNI": { + "all": [ + "0000 0001 2033 6079" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5005278" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01ej9dk98.json b/v1.45/v1/01ej9dk98.json new file mode 100644 index 000000000..ae945f8e4 --- /dev/null +++ b/v1.45/v1/01ej9dk98.json @@ -0,0 +1,219 @@ +{ + "id": "https://ror.org/01ej9dk98", + "name": "University of Melbourne", + "email_address": null, + "ip_addresses": [], + "established": 1853, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ARC Centre of Excellence for Coherent X-ray Science", + "type": "Child", + "id": "https://ror.org/02gs3vg83" + }, + { + "label": "ARC Centre of Excellence for Dark Matter Particle Physics", + "type": "Child", + "id": "https://ror.org/00cybsr61" + }, + { + "label": "ARC Centre of Excellence for Mathematical and Statistical Frontiers", + "type": "Child", + "id": "https://ror.org/02vcqg248" + }, + { + "label": "ARC Centre of Excellence for Particle Physics at the Terascale", + "type": "Child", + "id": "https://ror.org/01h06nz15" + }, + { + "label": "Florey Institute of Neuroscience and Mental Health", + "type": "Child", + "id": "https://ror.org/03a2tac74" + }, + { + "label": "Peter Doherty Institute", + "type": "Child", + "id": "https://ror.org/016899r71" + }, + { + "label": "Botany Foundation", + "type": "Child", + "id": "https://ror.org/04fxxe129" + }, + { + "label": "AuScope", + "type": "Related", + "id": "https://ror.org/04s1m4564" + }, + { + "label": "Austin Health", + "type": "Related", + "id": "https://ror.org/05dbj6g52" + }, + { + "label": "Austin Hospital", + "type": "Related", + "id": "https://ror.org/010mv7n52" + }, + { + "label": "Australian Urban Research Infrastructure Network", + "type": "Related", + "id": "https://ror.org/02c3nzd41" + }, + { + "label": "Bionics Institute", + "type": "Related", + "id": "https://ror.org/05e4f1b55" + }, + { + "label": "Burnet Institute", + "type": "Related", + "id": "https://ror.org/05ktbsm52" + }, + { + "label": "Centre for Eye Research Australia", + "type": "Related", + "id": "https://ror.org/01sqdef20" + }, + { + "label": "Epworth Hospital", + "type": "Related", + "id": "https://ror.org/02ett6548" + }, + { + "label": "Geelong Hospital", + "type": "Related", + "id": "https://ror.org/00jrpxe15" + }, + { + "label": "Melbourne Health", + "type": "Related", + "id": "https://ror.org/04z4kmw33" + }, + { + "label": "Murdoch Children's Research Institute", + "type": "Related", + "id": "https://ror.org/048fyec77" + }, + { + "label": "Northern Hospital", + "type": "Related", + "id": "https://ror.org/05mjmsc11" + }, + { + "label": "Royal Children's Hospital", + "type": "Related", + "id": "https://ror.org/02rktxt32" + }, + { + "label": "Royal Women's Hospital", + "type": "Related", + "id": "https://ror.org/03grnna41" + }, + { + "label": "St Vincent's Hospital", + "type": "Related", + "id": "https://ror.org/001kjn539" + }, + { + "label": "St Vincents Institute of Medical Research", + "type": "Related", + "id": "https://ror.org/02k3cxs74" + }, + { + "label": "The Royal Victorian Eye & Ear Hospital", + "type": "Related", + "id": "https://ror.org/008q4kt04" + }, + { + "label": "Victorian Comprehensive Cancer Centre", + "type": "Related", + "id": "https://ror.org/00st91468" + }, + { + "label": "Australian Centre for Excellence in Antarctic Science", + "type": "Related", + "id": "https://ror.org/024jkkf40" + } + ], + "addresses": [ + { + "lat": -37.814, + "lng": 144.96332, + "state": null, + "state_code": null, + "city": "Melbourne", + "geonames_city": { + "id": 2158177, + "city": "Melbourne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unimelb.edu.au/" + ], + "aliases": [ + "Melbourne University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Melbourne", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1008.9", + "preferred": "grid.1008.9" + }, + "ISNI": { + "all": [ + "0000 0001 2179 088X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q319078" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01ex21125.json b/v1.45/v1/01ex21125.json new file mode 100644 index 000000000..f435f4cb5 --- /dev/null +++ b/v1.45/v1/01ex21125.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01ex21125", + "name": "Tasmanian Institute of Agriculture", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/tia" + ], + "aliases": [ + "Tasmanian Institute of Agricultural Research" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Tasmanian_Institute_of_Agriculture", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0459 8976" + ], + "preferred": "0000 0001 0459 8976" + }, + "Wikidata": { + "all": [ + "Q7687461" + ], + "preferred": "Q7687461" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01ff1ff64.json b/v1.45/v1/01ff1ff64.json new file mode 100644 index 000000000..157353bcf --- /dev/null +++ b/v1.45/v1/01ff1ff64.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01ff1ff64", + "name": "Centre for Ore Deposit and Earth Sciences", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/codes" + ], + "aliases": [], + "acronyms": [ + "CODES" + ], + "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.45/v1/01fv25t22.json b/v1.45/v1/01fv25t22.json new file mode 100644 index 000000000..1c7aab15c --- /dev/null +++ b/v1.45/v1/01fv25t22.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/01fv25t22", + "name": "Saclay Nuclear Research Centre", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CEA Saclay", + "type": "Parent", + "id": "https://ror.org/03n15ch10" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "HEC Paris", + "type": "Parent", + "id": "https://ror.org/0423jsj19" + }, + { + "label": "Institut des Hautes Études Scientifiques", + "type": "Parent", + "id": "https://ror.org/05d5m2r55" + }, + { + "label": "University of Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + } + ], + "addresses": [ + { + "lat": 48.7326, + "lng": 2.16923, + "state": null, + "state_code": null, + "city": "Saclay", + "geonames_city": { + "id": 2982043, + "city": "Saclay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cea.fr/Pages/le-cea/les-centres-cea/paris-saclay.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saclay_Nuclear_Research_Centre", + "labels": [ + { + "label": "Centre CEA de Saclay", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462763.2", + "preferred": "grid.462763.2" + }, + "ISNI": { + "all": [ + "0000 0000 9853 2953" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4393524" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01kg8sb98.json b/v1.45/v1/01kg8sb98.json new file mode 100644 index 000000000..3e2c413ee --- /dev/null +++ b/v1.45/v1/01kg8sb98.json @@ -0,0 +1,154 @@ +{ + "id": "https://ror.org/01kg8sb98", + "name": "Indiana University", + "email_address": null, + "ip_addresses": [], + "established": 1820, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Indiana University Bloomington", + "type": "Child", + "id": "https://ror.org/02k40bc56" + }, + { + "label": "Indiana University East", + "type": "Child", + "id": "https://ror.org/046z54t28" + }, + { + "label": "Indiana University Fort Wayne", + "type": "Child", + "id": "https://ror.org/04wrhg795" + }, + { + "label": "Indiana University Kokomo", + "type": "Child", + "id": "https://ror.org/04161kh40" + }, + { + "label": "Indiana University Northwest", + "type": "Child", + "id": "https://ror.org/00n9fkm63" + }, + { + "label": "Indiana University South Bend", + "type": "Child", + "id": "https://ror.org/02s1hvj37" + }, + { + "label": "Indiana University Southeast", + "type": "Child", + "id": "https://ror.org/02eak8n78" + }, + { + "label": "Indiana University – Purdue University Columbus", + "type": "Child", + "id": "https://ror.org/00e0c0q64" + }, + { + "label": "Indiana University – Purdue University Indianapolis", + "type": "Child", + "id": "https://ror.org/05gxnyn08" + }, + { + "label": "Indiana University Indianapolis", + "type": "Child", + "id": "https://ror.org/03eftgw80" + }, + { + "label": "Indiana University Melvin and Bren Simon Comprehensive Cancer Center", + "type": "Child", + "id": "https://ror.org/00g1d7b60" + }, + { + "label": "Indiana University School of Medicine", + "type": "Child", + "id": "https://ror.org/02ets8c94" + } + ], + "addresses": [ + { + "lat": 39.16533, + "lng": -86.52639, + "state": null, + "state_code": null, + "city": "Bloomington", + "geonames_city": { + "id": 4254679, + "city": "Bloomington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iu.edu/" + ], + "aliases": [], + "acronyms": [ + "IU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Indiana_University", + "labels": [ + { + "label": "Université de l'Indiana", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.257410.5", + "preferred": "grid.257410.5" + }, + "ISNI": { + "all": [ + "0000 0004 0413 3089" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6608367" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01m10e879.json b/v1.45/v1/01m10e879.json new file mode 100644 index 000000000..a7a9679ce --- /dev/null +++ b/v1.45/v1/01m10e879.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/01m10e879", + "name": "OpenTopography", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "San Diego Supercomputer Center", + "type": "Parent", + "id": "https://ror.org/04mg3nk07" + } + ], + "addresses": [ + { + "lat": 32.84727, + "lng": -117.2742, + "state": null, + "state_code": null, + "city": "La Jolla", + "geonames_city": { + "id": 5363943, + "city": "La Jolla", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.opentopography.org" + ], + "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.45/v1/01ncz5595.json b/v1.45/v1/01ncz5595.json new file mode 100644 index 000000000..09c537193 --- /dev/null +++ b/v1.45/v1/01ncz5595.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01ncz5595", + "name": "Methodist College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.69365, + "lng": -89.58899, + "state": null, + "state_code": null, + "city": "Peoria", + "geonames_city": { + "id": 4905687, + "city": "Peoria", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.methodistcol.edu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Methodist_College_%28Illinois%29", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109502016" + ], + "preferred": "Q109502016" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01nfmeh72.json b/v1.45/v1/01nfmeh72.json new file mode 100644 index 000000000..7cc9230fc --- /dev/null +++ b/v1.45/v1/01nfmeh72.json @@ -0,0 +1,209 @@ +{ + "id": "https://ror.org/01nfmeh72", + "name": "University of Tasmania", + "email_address": null, + "ip_addresses": [], + "established": 1890, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre for Marine Socioecology", + "type": "Child", + "id": "https://ror.org/02xhx4j26" + }, + { + "label": "Launceston General Hospital", + "type": "Related", + "id": "https://ror.org/04ymr6s03" + }, + { + "label": "Royal Hobart Hospital", + "type": "Related", + "id": "https://ror.org/031382m70" + }, + { + "label": "Consortium for Ocean-Sea Ice Modelling in Australia", + "type": "Related", + "id": "https://ror.org/00qq77n27" + }, + { + "label": "Institute for Marine and Antarctic Studies", + "type": "Child", + "id": "https://ror.org/00arpt780" + }, + { + "label": "Tasmanian Institute of Agriculture", + "type": "Child", + "id": "https://ror.org/01ex21125" + }, + { + "label": "Menzies Institute for Medical Research", + "type": "Child", + "id": "https://ror.org/04yvxvx65" + }, + { + "label": "Wicking Dementia Centre", + "type": "Child", + "id": "https://ror.org/05n8cqa74" + }, + { + "label": "Institute for Social Change", + "type": "Child", + "id": "https://ror.org/05fqmdn41" + }, + { + "label": "Tasmania Law Reform Institute", + "type": "Child", + "id": "https://ror.org/018kp7s70" + }, + { + "label": "ARC Centre of Excellence for Plant Success in Nature and Agriculture", + "type": "Child", + "id": "https://ror.org/058xdtn86" + }, + { + "label": "ARC Centre for Forest Value", + "type": "Child", + "id": "https://ror.org/041njsz97" + }, + { + "label": "ARC Research Hub for Sustainable Onshore Lobster Aquaculture", + "type": "Child", + "id": "https://ror.org/04jqtny57" + }, + { + "label": "Australian Centre for Research on Separation Science", + "type": "Child", + "id": "https://ror.org/00tfmma03" + }, + { + "label": "Centre for Ore Deposit and Earth Sciences", + "type": "Child", + "id": "https://ror.org/01ff1ff64" + }, + { + "label": "Centre for Renewable Energy and Power Systems", + "type": "Child", + "id": "https://ror.org/03r3cns79" + }, + { + "label": "Centre for Sustainable Architecture with Wood", + "type": "Child", + "id": "https://ror.org/033y4aw87" + }, + { + "label": "Marine Biodiversity Hub", + "type": "Child", + "id": "https://ror.org/00jwcjd97" + }, + { + "label": "Southern Skies Network", + "type": "Child", + "id": "https://ror.org/04myefg51" + }, + { + "label": "Australian Centre for Excellence in Antarctic Science", + "type": "Child", + "id": "https://ror.org/024jkkf40" + }, + { + "label": "Australian Institute of Health Service Management", + "type": "Child", + "id": "https://ror.org/05xyr4058" + }, + { + "label": "Tasmanian Behavioural Lab", + "type": "Child", + "id": "https://ror.org/026xeq875" + }, + { + "label": "Australian Maritime College", + "type": "Child", + "id": "https://ror.org/05fv9c840" + }, + { + "label": "Integrated Marine Observing System", + "type": "Child", + "id": "https://ror.org/010x3gp67" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au" + ], + "aliases": [], + "acronyms": [ + "UTAS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Tasmania", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1009.8", + "preferred": "grid.1009.8" + }, + "ISNI": { + "all": [ + "0000 0004 1936 826X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q962011" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01qbsyz51.json b/v1.45/v1/01qbsyz51.json new file mode 100644 index 000000000..cd833cc36 --- /dev/null +++ b/v1.45/v1/01qbsyz51.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/01qbsyz51", + "name": "Ayub Agriculture Research Institute", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of Punjab", + "type": "Parent", + "id": "https://ror.org/0262vjy29" + }, + { + "label": "University of Agriculture Faisalabad", + "type": "Related", + "id": "https://ror.org/054d77k59" + } + ], + "addresses": [ + { + "lat": 31.41554, + "lng": 73.08969, + "state": null, + "state_code": null, + "city": "Faisalabad", + "geonames_city": { + "id": 1179400, + "city": "Faisalabad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://aari.punjab.gov.pk" + ], + "aliases": [], + "acronyms": [ + "AARI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Pakistan", + "country_code": "PK" + }, + "external_ids": { + "GRID": { + "all": "grid.464523.2", + "preferred": "grid.464523.2" + }, + "ISNI": { + "all": [ + "0000 0004 1761 2011" + ], + "preferred": "0000 0004 1761 2011" + }, + "Wikidata": { + "all": [ + "Q30262796" + ], + "preferred": "Q30262796" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01s5n0596.json b/v1.45/v1/01s5n0596.json new file mode 100644 index 000000000..fee1529aa --- /dev/null +++ b/v1.45/v1/01s5n0596.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01s5n0596", + "name": "Dnipro State Agrarian and Economic University", + "email_address": null, + "ip_addresses": [], + "established": 1922, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.46664, + "lng": 35.04066, + "state": null, + "state_code": null, + "city": "Dnipro", + "geonames_city": { + "id": 709930, + "city": "Dnipro", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dsau.dp.ua/" + ], + "aliases": [ + "Dnipropetrovsk State Agrarian and Economic University" + ], + "acronyms": [ + "DSAEU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Дніпровський державний аграрно-економічний університет", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "GRID": { + "all": "grid.445386.8", + "preferred": "grid.445386.8" + }, + "Wikidata": { + "all": [ + "Q4163222" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01s9db082.json b/v1.45/v1/01s9db082.json new file mode 100644 index 000000000..c884c3616 --- /dev/null +++ b/v1.45/v1/01s9db082.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01s9db082", + "name": "CA Technologies (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Broadcom (United States)", + "type": "Successor", + "id": "https://ror.org/035gt5s03" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ca.com" + ], + "aliases": [ + "CA, Inc.", + "Computer Associates International, Inc." + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/CA_Technologies", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.467252.0", + "preferred": "grid.467252.0" + }, + "ISNI": { + "all": [ + "0000 0001 2160 061X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q600624" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01sf06y89.json b/v1.45/v1/01sf06y89.json new file mode 100644 index 000000000..61a108c2a --- /dev/null +++ b/v1.45/v1/01sf06y89.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/01sf06y89", + "name": "Macquarie University", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ARC Centre of Excellence for Core to Crust Fluid Systems", + "type": "Child", + "id": "https://ror.org/03nk9pp38" + }, + { + "label": "ARC Centre of Excellence in Cognition and its Disorders", + "type": "Child", + "id": "https://ror.org/044b7p696" + }, + { + "label": "ARC Centre of Excellence in Synthetic Biology", + "type": "Child", + "id": "https://ror.org/01p2zg436" + }, + { + "label": "Sydney Hospital", + "type": "Related", + "id": "https://ror.org/0402tt118" + }, + { + "label": "Woolcock Institute of Medical Research", + "type": "Child", + "id": "https://ror.org/04hy0x592" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://mq.edu.au/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Macquarie_University", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1004.5", + "preferred": "grid.1004.5" + }, + "ISNI": { + "all": [ + "0000 0001 2158 5405" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q741082" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01t01fd32.json b/v1.45/v1/01t01fd32.json new file mode 100644 index 000000000..d8eb148fc --- /dev/null +++ b/v1.45/v1/01t01fd32.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/01t01fd32", + "name": "Synergy America (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.78327, + "lng": -92.10658, + "state": null, + "state_code": null, + "city": "Duluth", + "geonames_city": { + "id": 5024719, + "city": "Duluth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.synergyamerica.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Synergy America", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.508200.f", + "preferred": "grid.508200.f" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01vkz3960.json b/v1.45/v1/01vkz3960.json new file mode 100644 index 000000000..3c67ca005 --- /dev/null +++ b/v1.45/v1/01vkz3960.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/01vkz3960", + "name": "University of Lethbridge Faculty Association", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.69999, + "lng": -112.81856, + "state": null, + "state_code": null, + "city": "Lethbridge", + "geonames_city": { + "id": 6053154, + "city": "Lethbridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ulfa.ca" + ], + "aliases": [], + "acronyms": [ + "ULFA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q125140686" + ], + "preferred": "Q125140686" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01w1ehb86.json b/v1.45/v1/01w1ehb86.json new file mode 100644 index 000000000..19c14c68f --- /dev/null +++ b/v1.45/v1/01w1ehb86.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01w1ehb86", + "name": "University of Technology - Iraq", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.34058, + "lng": 44.40088, + "state": null, + "state_code": null, + "city": "Baghdad", + "geonames_city": { + "id": 98182, + "city": "Baghdad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uotechnology.edu.iq" + ], + "aliases": [], + "acronyms": [ + "UOT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Technology,_Iraq", + "labels": [ + { + "label": "الجامعة التكنولوجية", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "GRID": { + "all": "grid.444967.c", + "preferred": "grid.444967.c" + }, + "ISNI": { + "all": [ + "0000 0004 0618 8761" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4120423" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01w8zj169.json b/v1.45/v1/01w8zj169.json new file mode 100644 index 000000000..033d66ed2 --- /dev/null +++ b/v1.45/v1/01w8zj169.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01w8zj169", + "name": "Instituto Tecnológico de Tuxtepec", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 18.0883, + "lng": -96.12535, + "state": null, + "state_code": null, + "city": "San Juan Bautista", + "geonames_city": { + "id": 3518723, + "city": "San Juan Bautista", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ittux.edu.mx" + ], + "aliases": [ + "TecNM Campus Tuxtepec", + "Tecnológico Nacional de México Campus Tuxtepec" + ], + "acronyms": [ + "ITTUX" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.464683.b", + "preferred": "grid.464683.b" + }, + "ISNI": { + "all": [ + "0000 0004 1763 9265" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q29162586" + ], + "preferred": "Q29162586" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01wjx4d10.json b/v1.45/v1/01wjx4d10.json new file mode 100644 index 000000000..77a294e4a --- /dev/null +++ b/v1.45/v1/01wjx4d10.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01wjx4d10", + "name": "Liaocheng Fifth People's Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.45064, + "lng": 116.00247, + "state": null, + "state_code": null, + "city": "Liaocheng", + "geonames_city": { + "id": 1803834, + "city": "Liaocheng", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lceye.cn" + ], + "aliases": [ + "Liaocheng Eye Hospital", + "聊城市眼科医院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "聊城市第五人民医院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/01wtxm109.json b/v1.45/v1/01wtxm109.json new file mode 100644 index 000000000..b7e63ea04 --- /dev/null +++ b/v1.45/v1/01wtxm109.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01wtxm109", + "name": "Institute of Zoology", + "email_address": null, + "ip_addresses": [], + "established": 1943, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ministry of Education and Science of the Republic of Kazakhstan", + "type": "Parent", + "id": "https://ror.org/03pj6ge82" + } + ], + "addresses": [ + { + "lat": 43.25, + "lng": 76.91667, + "state": null, + "state_code": null, + "city": "Almaty", + "geonames_city": { + "id": 1526384, + "city": "Almaty", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://zool.kz" + ], + "aliases": [ + "Institute of Zoology RK", + "Institute of Zoology of the Republic of Kazakhstan", + "Institute of Zoology, Republic of Kazakhstan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Зоология институты", + "iso639": "kk" + } + ], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": { + "GRID": { + "all": "grid.483442.d", + "preferred": "grid.483442.d" + }, + "Wikidata": { + "all": [ + "Q12546577" + ], + "preferred": "Q12546577" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01x3qz996.json b/v1.45/v1/01x3qz996.json new file mode 100644 index 000000000..9c5145c1e --- /dev/null +++ b/v1.45/v1/01x3qz996.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01x3qz996", + "name": "Approches contemporaines de la création et de la réflexion artistiques", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://accra-recherche.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "ACCRA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783715" + ], + "preferred": "Q51783715" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01xnsst08.json b/v1.45/v1/01xnsst08.json new file mode 100644 index 000000000..33a1f3dd0 --- /dev/null +++ b/v1.45/v1/01xnsst08.json @@ -0,0 +1,147 @@ +{ + "id": "https://ror.org/01xnsst08", + "name": "Wildlife Conservation Society", + "email_address": null, + "ip_addresses": [], + "established": 1895, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Wildlife Conservation Society Argentina", + "type": "Child", + "id": "https://ror.org/00mcgvm89" + }, + { + "label": "Wildlife Conservation Society Canada", + "type": "Child", + "id": "https://ror.org/01esc3z41" + }, + { + "label": "Wildlife Conservation Society Congo", + "type": "Child", + "id": "https://ror.org/04avnsc24" + }, + { + "label": "Wildlife Conservation Society Democratic Republic of the Congo", + "type": "Child", + "id": "https://ror.org/00t6rqp97" + }, + { + "label": "Wildlife Conservation Society Fiji", + "type": "Child", + "id": "https://ror.org/05s9cjr09" + }, + { + "label": "Wildlife Conservation Society India", + "type": "Child", + "id": "https://ror.org/054qw7j13" + }, + { + "label": "Wildlife Conservation Society Indonesia", + "type": "Child", + "id": "https://ror.org/02fjqfr36" + }, + { + "label": "Wildlife Conservation Society Laos", + "type": "Child", + "id": "https://ror.org/047f7tv05" + }, + { + "label": "Wildlife Conservation Society Uganda", + "type": "Child", + "id": "https://ror.org/030nrza79" + }, + { + "label": "Wildlife Conservation Society United Kingdom", + "type": "Child", + "id": "https://ror.org/03hxhpz06" + }, + { + "label": "Wildlife Conservation Society Vietnam", + "type": "Child", + "id": "https://ror.org/0391pvr85" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.wcs.org/" + ], + "aliases": [ + "New York Zoological Society" + ], + "acronyms": [ + "NYZS", + "WCS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Wildlife_Conservation_Society", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.269823.4", + "preferred": "grid.269823.4" + }, + "ISNI": { + "all": [ + "0000 0001 2164 6888" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2118246" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/01y766z47.json b/v1.45/v1/01y766z47.json new file mode 100644 index 000000000..ccae6ab5d --- /dev/null +++ b/v1.45/v1/01y766z47.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/01y766z47", + "name": "Groupement de Recherche et d'Études en Gestion d’HEC", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "HEC Paris", + "type": "Parent", + "id": "https://ror.org/0423jsj19" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Paris Chamber of Commerce", + "type": "Parent", + "id": "https://ror.org/05dwk8b49" + } + ], + "addresses": [ + { + "lat": 48.75909, + "lng": 2.16966, + "state": null, + "state_code": null, + "city": "Jouy-en-Josas", + "geonames_city": { + "id": 3012165, + "city": "Jouy-en-Josas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.hec.fr/Faculte-Recherche/GREGHEC-CNRS" + ], + "aliases": [], + "acronyms": [ + "GREGHEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463930.b", + "preferred": "grid.463930.b" + }, + "ISNI": { + "all": [ + "0000 0000 9020 8825" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/021xhya68.json b/v1.45/v1/021xhya68.json new file mode 100644 index 000000000..f01c2e144 --- /dev/null +++ b/v1.45/v1/021xhya68.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/021xhya68", + "name": "Madan Bhandari University of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.64754, + "lng": 85.16928, + "state": null, + "state_code": null, + "city": "Chitlang", + "geonames_city": { + "id": 7802044, + "city": "Chitlang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mbust.edu.np" + ], + "aliases": [], + "acronyms": [ + "MBUST" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "मदन भण्डारी बिज्ञान तथा प्रबिधि विश्वबिद्यालय", + "iso639": "ne" + } + ], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/022gakr41.json b/v1.45/v1/022gakr41.json new file mode 100644 index 000000000..6b462486b --- /dev/null +++ b/v1.45/v1/022gakr41.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/022gakr41", + "name": "Inria Lyon Centre", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French Institute for Research in Computer Science and Automation", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + } + ], + "addresses": [ + { + "lat": 45.76601, + "lng": 4.8795, + "state": null, + "state_code": null, + "city": "Villeurbanne", + "geonames_city": { + "id": 2968254, + "city": "Villeurbanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://inria.fr/en/centre-inria-de-lyon" + ], + "aliases": [ + "Centre Inria de Lyon" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7421 0967" + ], + "preferred": "0000 0004 7421 0967" + }, + "Wikidata": { + "all": [ + "Q124542186" + ], + "preferred": "Q124542186" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/023btq632.json b/v1.45/v1/023btq632.json new file mode 100644 index 000000000..d58382fa8 --- /dev/null +++ b/v1.45/v1/023btq632.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/023btq632", + "name": "GigPeak (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Integrated Device Technology (United States)", + "type": "Parent", + "id": "https://ror.org/03yvs0f43" + } + ], + "addresses": [ + { + "lat": 37.33939, + "lng": -121.89496, + "state": null, + "state_code": null, + "city": "San Jose", + "geonames_city": { + "id": 5392171, + "city": "San Jose", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.gigpeak.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.456229.e", + "preferred": "grid.456229.e" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/024cz2s53.json b/v1.45/v1/024cz2s53.json new file mode 100644 index 000000000..2a008ce65 --- /dev/null +++ b/v1.45/v1/024cz2s53.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/024cz2s53", + "name": "Karaganda Medical University", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.80187, + "lng": 73.10211, + "state": null, + "state_code": null, + "city": "Karaganda", + "geonames_city": { + "id": 609655, + "city": "Karaganda", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://qmu.edu.kz" + ], + "aliases": [ + "Karaganda State Medical University", + "Qaraghandy Medical University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Karaganda_State_Medical_University", + "labels": [ + { + "label": "Медицинский Университет Караганды", + "iso639": "ru" + }, + { + "label": "Қарағанды медицина университеті", + "iso639": "kk" + } + ], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": { + "GRID": { + "all": "grid.443557.4", + "preferred": "grid.443557.4" + }, + "ISNI": { + "all": [ + "0000 0004 0400 6856" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4213688" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/024jkkf40.json b/v1.45/v1/024jkkf40.json new file mode 100644 index 000000000..657475383 --- /dev/null +++ b/v1.45/v1/024jkkf40.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/024jkkf40", + "name": "Australian Centre for Excellence in Antarctic Science", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + }, + { + "label": "UNSW Sydney", + "type": "Parent", + "id": "https://ror.org/03r8z3t63" + }, + { + "label": "Australian National University", + "type": "Parent", + "id": "https://ror.org/019wvm592" + }, + { + "label": "Australian Research Council", + "type": "Related", + "id": "https://ror.org/05mmh0f86" + }, + { + "label": "University of Western Australia", + "type": "Related", + "id": "https://ror.org/047272k79" + }, + { + "label": "Curtin University", + "type": "Related", + "id": "https://ror.org/02n415q13" + }, + { + "label": "University of Melbourne", + "type": "Related", + "id": "https://ror.org/01ej9dk98" + }, + { + "label": "University of Canberra", + "type": "Related", + "id": "https://ror.org/04s1nv328" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://antarctic.org.au" + ], + "aliases": [], + "acronyms": [ + "ACEAS" + ], + "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.45/v1/0262vjy29.json b/v1.45/v1/0262vjy29.json new file mode 100644 index 000000000..dc15cd648 --- /dev/null +++ b/v1.45/v1/0262vjy29.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/0262vjy29", + "name": "Government of Punjab", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ayub Agriculture Research Institute", + "type": "Child", + "id": "https://ror.org/01qbsyz51" + } + ], + "addresses": [ + { + "lat": 31.558, + "lng": 74.35071, + "state": null, + "state_code": null, + "city": "Lahore", + "geonames_city": { + "id": 1172451, + "city": "Lahore", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://punjab.gov.pk" + ], + "aliases": [ + "Government of Punjab, Pakistan", + "Government of the Punjab", + "حکومت پنجاب" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Government_of_Punjab%2C_Pakistan", + "labels": [], + "country": { + "country_name": "Pakistan", + "country_code": "PK" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0371 7672" + ], + "preferred": "0000 0004 0371 7672" + }, + "Wikidata": { + "all": [ + "Q3306996" + ], + "preferred": "Q3306996" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/026svqy15.json b/v1.45/v1/026svqy15.json new file mode 100644 index 000000000..5f23a8059 --- /dev/null +++ b/v1.45/v1/026svqy15.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/026svqy15", + "name": "VERSES (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.05223, + "lng": -118.24368, + "state": null, + "state_code": null, + "city": "Los Angeles", + "geonames_city": { + "id": 5368361, + "city": "Los Angeles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.verses.ai" + ], + "aliases": [ + "VERSES AI", + "VERSES AI Inc.", + "VERSES Lab", + "VERSES Research" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "VERSES", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/026xeq875.json b/v1.45/v1/026xeq875.json new file mode 100644 index 000000000..3e5be6d9a --- /dev/null +++ b/v1.45/v1/026xeq875.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/026xeq875", + "name": "Tasmanian Behavioural Lab", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/research/institutes-and-centres/tasmanian-behavioural-lab" + ], + "aliases": [ + "tas.be.lab" + ], + "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.45/v1/0274qxk35.json b/v1.45/v1/0274qxk35.json new file mode 100644 index 000000000..b00636ead --- /dev/null +++ b/v1.45/v1/0274qxk35.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/0274qxk35", + "name": "Bluecoat", + "email_address": null, + "ip_addresses": [], + "established": 1708, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.41058, + "lng": -2.97794, + "state": null, + "state_code": null, + "city": "Liverpool", + "geonames_city": { + "id": 2644210, + "city": "Liverpool", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.thebluecoat.org.uk" + ], + "aliases": [ + "Bluecoat Arts Centre", + "Bluecoat Chambers" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bluecoat_Chambers", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.498035.3", + "preferred": "grid.498035.3" + }, + "Wikidata": { + "all": [ + "Q2409878" + ], + "preferred": "Q2409878" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/028c6kd10.json b/v1.45/v1/028c6kd10.json new file mode 100644 index 000000000..23c1c1c6c --- /dev/null +++ b/v1.45/v1/028c6kd10.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/028c6kd10", + "name": "Laboratoire de pharmacologie et de toxicologie neurocardiovasculaire", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crbs.unistra.fr/recherche/laboratoire-de-pharmacologie-et-de-toxicologie-neurocardiovasculaire-ur-7296" + ], + "aliases": [], + "acronyms": [ + "LPTNC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/028nd8457.json b/v1.45/v1/028nd8457.json new file mode 100644 index 000000000..9e6b5c3f4 --- /dev/null +++ b/v1.45/v1/028nd8457.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/028nd8457", + "name": "Laboratoire de recherche en gestion et économie", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.em-strasbourg.com/fr/recherche/laboratoires-de-recherche/laboratoire-large" + ], + "aliases": [], + "acronyms": [ + "LaRGE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0386 834X" + ], + "preferred": "0000 0004 0386 834X" + }, + "Wikidata": { + "all": [ + "Q51784602" + ], + "preferred": "Q51784602" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/0296ebz56.json b/v1.45/v1/0296ebz56.json new file mode 100644 index 000000000..46e6258c2 --- /dev/null +++ b/v1.45/v1/0296ebz56.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/0296ebz56", + "name": "inspire research Beratungsgesellschaft m.b.H. (Austria)", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inspire-research.at" + ], + "aliases": [ + "inspire research" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/02ac58f22.json b/v1.45/v1/02ac58f22.json new file mode 100644 index 000000000..3cdc328b1 --- /dev/null +++ b/v1.45/v1/02ac58f22.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/02ac58f22", + "name": "Rotterdam Study", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Erasmus MC", + "type": "Parent", + "id": "https://ror.org/018906e22" + } + ], + "addresses": [ + { + "lat": 51.9225, + "lng": 4.47917, + "state": null, + "state_code": null, + "city": "Rotterdam", + "geonames_city": { + "id": 2747891, + "city": "Rotterdam", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ergo-onderzoek.nl" + ], + "aliases": [ + "Erasmus Rotterdam Gezondheid Onderzoek", + "Rotterdam Studie" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rotterdam_Study", + "labels": [], + "country": { + "country_name": "Netherlands", + "country_code": "NL" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q7370668" + ], + "preferred": "Q7370668" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02acvhq32.json b/v1.45/v1/02acvhq32.json new file mode 100644 index 000000000..2bde7dd58 --- /dev/null +++ b/v1.45/v1/02acvhq32.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/02acvhq32", + "name": "Universitas KH Abdul Chalim", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -7.4664, + "lng": 112.4338, + "state": null, + "state_code": null, + "city": "Mojokerto", + "geonames_city": { + "id": 1635111, + "city": "Mojokerto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uac.ac.id" + ], + "aliases": [ + "Institut KH Abdul Chalim", + "KH Abdul Chalim Institute", + "KH Abdul Chalim University", + "Universitas KH Abdul Chalim Mojokerto" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/02awzbn54.json b/v1.45/v1/02awzbn54.json new file mode 100644 index 000000000..8ef22737e --- /dev/null +++ b/v1.45/v1/02awzbn54.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/02awzbn54", + "name": "Brown Institute for Media Innovation", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Stanford University", + "type": "Parent", + "id": "https://ror.org/00f54p054" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://brown.stanford.edu/" + ], + "aliases": [ + "Brown Institute", + "David and Helen Gurley Brown Institute for Media Innovation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.468372.c", + "preferred": "grid.468372.c" + }, + "ISNI": { + "all": [ + "0000 0004 5906 2206" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4976176" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02bfwt286.json b/v1.45/v1/02bfwt286.json new file mode 100644 index 000000000..07540e6f8 --- /dev/null +++ b/v1.45/v1/02bfwt286.json @@ -0,0 +1,157 @@ +{ + "id": "https://ror.org/02bfwt286", + "name": "Monash University", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ARC Centre of Excellence for Integrative Brain Function", + "type": "Child", + "id": "https://ror.org/02yasb727" + }, + { + "label": "ARC Centre of Excellence in Advanced Molecular Imaging", + "type": "Child", + "id": "https://ror.org/051e7s436" + }, + { + "label": "Australian Regenerative Medicine Institute", + "type": "Child", + "id": "https://ror.org/02qa5kg76" + }, + { + "label": "IITB-Monash Research Academy", + "type": "Child", + "id": "https://ror.org/02r3nf527" + }, + { + "label": "National Trauma Research Institute", + "type": "Child", + "id": "https://ror.org/048t93218" + }, + { + "label": "ANZCA Clinical Trials Network", + "type": "Child", + "id": "https://ror.org/0555x2b41" + }, + { + "label": "Box Hill Hospital", + "type": "Related", + "id": "https://ror.org/0484pjq71" + }, + { + "label": "Burnet Institute", + "type": "Related", + "id": "https://ror.org/05ktbsm52" + }, + { + "label": "Frankston Hospital", + "type": "Related", + "id": "https://ror.org/051b68e86" + }, + { + "label": "Jessie McPherson Private Hospital", + "type": "Related", + "id": "https://ror.org/00aeqjw83" + }, + { + "label": "Monash Institute of Medical Research", + "type": "Related", + "id": "https://ror.org/05p96ba03" + }, + { + "label": "Monash Medical Centre", + "type": "Related", + "id": "https://ror.org/036s9kg65" + }, + { + "label": "The Alfred Hospital", + "type": "Related", + "id": "https://ror.org/01wddqe20" + }, + { + "label": "ARC Centre of Excellence for Plant Success in Nature and Agriculture", + "type": "Child", + "id": "https://ror.org/058xdtn86" + } + ], + "addresses": [ + { + "lat": -37.814, + "lng": 144.96332, + "state": null, + "state_code": null, + "city": "Melbourne", + "geonames_city": { + "id": 2158177, + "city": "Melbourne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.monash.edu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Monash_University", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1002.3", + "preferred": "grid.1002.3" + }, + "ISNI": { + "all": [ + "0000 0004 1936 7857" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q598841" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02btqjz37.json b/v1.45/v1/02btqjz37.json new file mode 100644 index 000000000..84aea65d8 --- /dev/null +++ b/v1.45/v1/02btqjz37.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02btqjz37", + "name": "École Nationale Supérieure d'Architecture de Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 1922, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Arts, civilisation et histoire de l'Europe", + "type": "Child", + "id": "https://ror.org/049513r96" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.strasbourg.archi.fr/" + ], + "aliases": [], + "acronyms": [ + "ENSAS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.466379.9", + "preferred": "grid.466379.9" + }, + "ISNI": { + "all": [ + "0000 0004 0411 0039" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02c21vy68.json b/v1.45/v1/02c21vy68.json new file mode 100644 index 000000000..dd31c3d4f --- /dev/null +++ b/v1.45/v1/02c21vy68.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02c21vy68", + "name": "Universidad Nacional de La Pampa", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -36.61667, + "lng": -64.28333, + "state": null, + "state_code": null, + "city": "Santa Rosa", + "geonames_city": { + "id": 3835994, + "city": "Santa Rosa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unlpam.edu.ar" + ], + "aliases": [ + "National University of La Pampa" + ], + "acronyms": [ + "UNLPAM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_University_of_La_Pampa", + "labels": [], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": { + "GRID": { + "all": "grid.440491.c", + "preferred": "grid.440491.c" + }, + "ISNI": { + "all": [ + "0000 0001 2161 9433" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6979257" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02ets8c94.json b/v1.45/v1/02ets8c94.json new file mode 100644 index 000000000..7044e4b81 --- /dev/null +++ b/v1.45/v1/02ets8c94.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02ets8c94", + "name": "Indiana University School of Medicine", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Indiana University", + "type": "Parent", + "id": "https://ror.org/01kg8sb98" + }, + { + "label": "Indiana University Health", + "type": "Related", + "id": "https://ror.org/01aaptx40" + } + ], + "addresses": [ + { + "lat": 39.76838, + "lng": -86.15804, + "state": null, + "state_code": null, + "city": "Indianapolis", + "geonames_city": { + "id": 4259418, + "city": "Indianapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://medicine.iu.edu" + ], + "aliases": [ + "IU School of Medicine" + ], + "acronyms": [ + "IUSM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Indiana_University_School_of_Medicine", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2296 1126" + ], + "preferred": "0000 0001 2296 1126" + }, + "Wikidata": { + "all": [ + "Q2123017" + ], + "preferred": "Q2123017" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02feahw73.json b/v1.45/v1/02feahw73.json new file mode 100644 index 000000000..75bbe9a31 --- /dev/null +++ b/v1.45/v1/02feahw73.json @@ -0,0 +1,1835 @@ +{ + "id": "https://ror.org/02feahw73", + "name": "French National Centre for Scientific Research", + "email_address": null, + "ip_addresses": [], + "established": 1939, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Cancer Research Center of Toulouse", + "type": "Child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Centre Max Weber", + "type": "Child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "Child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "Child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Child", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Direction Générale Déléguée à la Science", + "type": "Child", + "id": "https://ror.org/043nepn57" + }, + { + "label": "Délégation Bretagne et Pays de la Loire", + "type": "Child", + "id": "https://ror.org/02t220m45" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "Child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Image and Pervasive Access Laboratory", + "type": "Child", + "id": "https://ror.org/00m3mb357" + }, + { + "label": "Institut Clément Ader", + "type": "Child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Institut Français d'Études Anatoliennes", + "type": "Child", + "id": "https://ror.org/0331qyx19" + }, + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Child", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Child", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "Child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Chimie", + "type": "Child", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Institut de Physique", + "type": "Child", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "Child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Child", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Child", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Child", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "CNRS Ingénierie", + "type": "Child", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Child", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Aménagement Économie Transports", + "type": "Child", + "id": "https://ror.org/01yw97595" + }, + { + "label": "Laboratoire d'Annecy-le-Vieux de Physique Théorique", + "type": "Child", + "id": "https://ror.org/010hz2d37" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "Child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "Child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Low Noise Inter-Disciplinary Underground Science & Technology", + "type": "Child", + "id": "https://ror.org/05gscwg02" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Research Network on Electrochemical Energy Storage", + "type": "Child", + "id": "https://ror.org/00190j002" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Soleil Synchrotron", + "type": "Child", + "id": "https://ror.org/01ydb3330" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + }, + { + "label": "Nançay Radio Observatory", + "type": "Child", + "id": "https://ror.org/01vqrde47" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "Child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Histoire Judiciaire", + "type": "Child", + "id": "https://ror.org/00g32ep81" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "Child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "AERIS/ICARE Data and Services Center", + "type": "Child", + "id": "https://ror.org/013z99a51" + }, + { + "label": "Institut de Recherche sur les Composants logiciels et matériels pour l'Information et la Communication Avancée", + "type": "Child", + "id": "https://ror.org/010nk4c68" + }, + { + "label": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "type": "Child", + "id": "https://ror.org/04f5rw142" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Arènes: politique, santé publique, environnement, médias", + "type": "Child", + "id": "https://ror.org/00m4rxj18" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "Child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "Littoral, Environnement, Télédétection, Géomatique", + "type": "Child", + "id": "https://ror.org/05sat2s07" + }, + { + "label": "Institute of Genetics and Development of Rennes", + "type": "Child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Ecosystèmes, Biodiversité, Evolution", + "type": "Child", + "id": "https://ror.org/005fjj927" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "Child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "Child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "Child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Ethologie animale et humaine", + "type": "Child", + "id": "https://ror.org/02evk6c51" + }, + { + "label": "Laboratoire d'études de genre et de sexualité", + "type": "Child", + "id": "https://ror.org/005w2mm89" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "Child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Western Institute of Law and Europe", + "type": "Child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Maison des Sciences de l'Homme Mondes", + "type": "Child", + "id": "https://ror.org/00wx1mx58" + }, + { + "label": "Laboratoire de Physique et Chimie de l’Environnement et de l’Espace", + "type": "Child", + "id": "https://ror.org/049k66y27" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Centre Émile Durkheim", + "type": "Child", + "id": "https://ror.org/01k7w0p97" + }, + { + "label": "Laboratoire de Mathématiques de Besançon", + "type": "Child", + "id": "https://ror.org/04nrhwg12" + }, + { + "label": "Laboratoire architecture anthropologie", + "type": "Child", + "id": "https://ror.org/05wy2cj05" + }, + { + "label": "Biologie du Développement et Cellules Souches", + "type": "Child", + "id": "https://ror.org/02af93v77" + }, + { + "label": "Centre de recherche sur les Inégalités Sociales", + "type": "Child", + "id": "https://ror.org/02a4c5q78" + }, + { + "label": "Centre International de Rencontres Mathématiques", + "type": "Child", + "id": "https://ror.org/04e3d6y73" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Musée Curie", + "type": "Child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Architecture, Milieu, Paysage", + "type": "Child", + "id": "https://ror.org/048289s82" + }, + { + "label": "Géographie de l'environnement", + "type": "Child", + "id": "https://ror.org/01p4g5p84" + }, + { + "label": "Geo-Ocean", + "type": "Child", + "id": "https://ror.org/007dbrz84" + }, + { + "label": "Centre d'Études et de Recherches sur le Développement International", + "type": "Child", + "id": "https://ror.org/01hg13988" + }, + { + "label": "Laboratoire d'Acoustique de l'Université du Mans", + "type": "Child", + "id": "https://ror.org/001aevc89" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "Child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Laboratoire de Médiévistique Occidentale de Paris", + "type": "Child", + "id": "https://ror.org/00z0af360" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "Child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Laboratoire d'Ecologie des Hydrosystèmes Naturels et Anthropisés", + "type": "Child", + "id": "https://ror.org/05pny1q12" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Centre de droit comparé du travail et de la sécurité sociale", + "type": "Child", + "id": "https://ror.org/041ctrc20" + }, + { + "label": "Enzyme and Cell Engineering - Molecular Recognition and Biocatalysis", + "type": "Child", + "id": "https://ror.org/001tmq304" + }, + { + "label": "Sciences pour l'Environnement", + "type": "Child", + "id": "https://ror.org/016nwev19" + }, + { + "label": "Laboratoire Morphodynamique Continentale et Côtière", + "type": "Child", + "id": "https://ror.org/05k1a6w82" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "Child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Langues et Civilisations à Tradition Orale", + "type": "Child", + "id": "https://ror.org/025esck76" + }, + { + "label": "Laboratoire de Mathématiques Nicolas Oresme", + "type": "Child", + "id": "https://ror.org/03jm2hc44" + }, + { + "label": "Centre d'études sociologiques et politiques Raymond-Aron", + "type": "Child", + "id": "https://ror.org/04aq4ab28" + }, + { + "label": "Laboratoire Caribéen de Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00srrcb42" + }, + { + "label": "Laboratoire de Physique Théorique et Modélisation", + "type": "Child", + "id": "https://ror.org/05nhcdk38" + }, + { + "label": "Institut des sciences juridique et philosophique de la Sorbonne", + "type": "Child", + "id": "https://ror.org/0041am420" + }, + { + "label": "Réseau interdisciplinaire pour l’aménagement, l’observation et la cohésion des territoires européens", + "type": "Child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "France, Amériques, Espagne, Sociétés, Pouvoirs, Acteurs", + "type": "Child", + "id": "https://ror.org/04daj8721" + }, + { + "label": "Laboratoire des Fluides Complexes et leurs Réservoirs", + "type": "Child", + "id": "https://ror.org/03dg47v24" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "Child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Maison des Sciences de l'Homme et de la Société Sud-Est", + "type": "Child", + "id": "https://ror.org/02ygac863" + }, + { + "label": "Maison Asie Pacifique", + "type": "Child", + "id": "https://ror.org/03e2syc87" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "Child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "Center for Mathematical Modeling", + "type": "Child", + "id": "https://ror.org/00wz2vk41" + }, + { + "label": "Service des Avions Français Instrumentés pour la Recherche en Environnement", + "type": "Child", + "id": "https://ror.org/02qdgbw61" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "Child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "Child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Archéologie des Sociétés Méditerranéennes", + "type": "Child", + "id": "https://ror.org/04n9eyw42" + }, + { + "label": "Laboratoire de Microbiologie Fondamentale et Pathogénicité", + "type": "Child", + "id": "https://ror.org/03e4tg734" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Praxiling", + "type": "Child", + "id": "https://ror.org/03ym2w748" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "Child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Centre d'études franco-russe de Moscou", + "type": "Child", + "id": "https://ror.org/00zmdjj30" + }, + { + "label": "Centre d'Études et de Documentation Économiques, Juridiques et sociales", + "type": "Child", + "id": "https://ror.org/008bf9746" + }, + { + "label": "Maison Française d'Oxford", + "type": "Child", + "id": "https://ror.org/022psxk94" + }, + { + "label": "Centre de recherche français à Jérusalem", + "type": "Child", + "id": "https://ror.org/04ahb2147" + }, + { + "label": "Centre d'études Alexandrines", + "type": "Child", + "id": "https://ror.org/02km70587" + }, + { + "label": "Institut français du Proche-Orient", + "type": "Child", + "id": "https://ror.org/02t9nm044" + }, + { + "label": "Institut français d'études sur l'Asie centrale", + "type": "Child", + "id": "https://ror.org/026t9b832" + }, + { + "label": "Lieux, Identités, eSpaces, Activités", + "type": "Child", + "id": "https://ror.org/00nbhg292" + }, + { + "label": "Ecology and Conservation Science for Sustainable Seas", + "type": "Child", + "id": "https://ror.org/021zcv334" + }, + { + "label": "AMURE - Centre de droit et d'économie de la mer", + "type": "Child", + "id": "https://ror.org/00ss0a232" + }, + { + "label": "Maison méditerranéenne des sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/01ejp3f31" + }, + { + "label": "Centre Franco-Égyptien d’Étude des Temples de Karnak", + "type": "Child", + "id": "https://ror.org/0502mw613" + }, + { + "label": "Centre de Recherche sur la Conservation", + "type": "Child", + "id": "https://ror.org/05q3pap39" + }, + { + "label": "Institut d'Histoire du Droit Jean Gaudemet", + "type": "Child", + "id": "https://ror.org/04j9ztm78" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "Child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "Child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Savoirs et Mondes Indiens", + "type": "Child", + "id": "https://ror.org/04gxn9h90" + }, + { + "label": "Laboratoire de Mathématiques de Reims", + "type": "Child", + "id": "https://ror.org/01xkfnd03" + }, + { + "label": "Centre Michel de Boüard", + "type": "Child", + "id": "https://ror.org/03rnz7p05" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "Child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "Child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Sommeil, Addiction et Neuropsychiatrie", + "type": "Child", + "id": "https://ror.org/04k8wt746" + }, + { + "label": "Plateforme d'Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/05r25mc45" + }, + { + "label": "TBM-Core", + "type": "Child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Génomique évolutive, modélisation et santé", + "type": "Child", + "id": "https://ror.org/026ddbz68" + }, + { + "label": "Takuvik Joint International Laboratory", + "type": "Child", + "id": "https://ror.org/04bzgtz06" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Bordeaux Imaging Center", + "type": "Child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "Child", + "id": "https://ror.org/034bena10" + }, + { + "label": "CEPN - Centre d'Economie de l'Université Paris Nord", + "type": "Child", + "id": "https://ror.org/03k32n603" + }, + { + "label": "Chimie, Structures et Propriétés de Biomatériaux et d'Agents Thérapeutiques", + "type": "Child", + "id": "https://ror.org/0343fpq57" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "Child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Laboratoire écologie, évolution, interactions des systèmes amazoniens", + "type": "Child", + "id": "https://ror.org/00gj7r351" + }, + { + "label": "STELLA MARE", + "type": "Child", + "id": "https://ror.org/040r8ry56" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "Child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Bases de données sur la Biodiversité, Ecologie, Environnement et Sociétés", + "type": "Child", + "id": "https://ror.org/034gk7456" + }, + { + "label": "DMEX Centre for X-ray Imaging", + "type": "Child", + "id": "https://ror.org/0213f8g15" + }, + { + "label": "Unité en Sciences Biologiques et Biotechnologies de Nantes", + "type": "Child", + "id": "https://ror.org/05ef4v550" + }, + { + "label": "Matrice Extracellulaire et Dynamique Cellulaire MEDyC", + "type": "Child", + "id": "https://ror.org/017p6sq53" + }, + { + "label": "Institut des Sciences de la Terre d'Orléans", + "type": "Child", + "id": "https://ror.org/02t2hg116" + }, + { + "label": "Institut de Recherche sur la Biologie de l'Insecte UMR 7261", + "type": "Child", + "id": "https://ror.org/04rp2mn26" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "Child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "Laboratoire Ligérien de Linguistique", + "type": "Child", + "id": "https://ror.org/04s6f1186" + }, + { + "label": "Droit International Comparé et Européen", + "type": "Child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Lasers, Plasmas et Procédés Photoniques", + "type": "Child", + "id": "https://ror.org/01qfjp710" + }, + { + "label": "Centre universitaire de recherches sur l'Action Publique et le Politique Épistémologie & Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00rxdng69" + }, + { + "label": "Centre Gilles-Gaston Granger", + "type": "Child", + "id": "https://ror.org/00axatv03" + }, + { + "label": "Irasia Recherche", + "type": "Child", + "id": "https://ror.org/03bcyhr16" + }, + { + "label": "Institut de Recherches et d'Etudes sur les Mondes Arabes et Musulmans", + "type": "Child", + "id": "https://ror.org/037f3ga09" + }, + { + "label": "Laboratoire d'Archéologie Médiévale et Moderne en Méditerranée", + "type": "Child", + "id": "https://ror.org/05tb4mb78" + }, + { + "label": "Institut d'ethnologie méditerranéenne européenne et comparative", + "type": "Child", + "id": "https://ror.org/050gdsq06" + }, + { + "label": "Temps, espaces, langages, Europe méridionale, Méditerranée", + "type": "Child", + "id": "https://ror.org/010bhn875" + }, + { + "label": "Matériaux Divisés, Interfaces, Réactivité, Electrochimie", + "type": "Child", + "id": "https://ror.org/00m587853" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Macromoléculaires", + "type": "Child", + "id": "https://ror.org/02hwc1z56" + }, + { + "label": "Centre d'études supérieures de civilisation médiévale", + "type": "Child", + "id": "https://ror.org/005hw9085" + }, + { + "label": "Laboratoire de Mathématiques et Applications", + "type": "Child", + "id": "https://ror.org/02p2rk609" + }, + { + "label": "Laboratoire Interdisciplinaire de Recherches \"Sociétés, Sensibilités, Soin\"", + "type": "Child", + "id": "https://ror.org/01rb31945" + }, + { + "label": "Centre d’études en sciences sociales du religieux", + "type": "Child", + "id": "https://ror.org/01kysxr05" + }, + { + "label": "Trajectoires. De la sédentarisation à l’État", + "type": "Child", + "id": "https://ror.org/03wdx6c48" + }, + { + "label": "Structure et Dynamique des Langues", + "type": "Child", + "id": "https://ror.org/019df2r84" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "Child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Laboratoire Information Génomique et Structurale", + "type": "Child", + "id": "https://ror.org/05v0fms67" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Chimie Biologique pour le Vivant", + "type": "Child", + "id": "https://ror.org/03cjyj977" + }, + { + "label": "Biologie Moléculaire Structurale et Processus Infectieux", + "type": "Child", + "id": "https://ror.org/009b91528" + }, + { + "label": "Centre de Recherche d'Albi en génie des Procédés, des SOlides Divisés, de l'Énergie et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03cxnrt47" + }, + { + "label": "Acquisition et Analyse de Données pour l'Histoire naturelle", + "type": "Child", + "id": "https://ror.org/05qhnf349" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "Child", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "Child", + "id": "https://ror.org/00t7axd27" + }, + { + "label": "Chronobiotron", + "type": "Child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Observatoire pour la Conservation de la Mégafaune Marine", + "type": "Child", + "id": "https://ror.org/04wbg2z51" + }, + { + "label": "Architecture Histoire Technique Territoire Patrimoine", + "type": "Child", + "id": "https://ror.org/05j8sgr10" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "Child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Maison des Sciences de l'Homme Val de Loire", + "type": "Child", + "id": "https://ror.org/03v4gsj38" + }, + { + "label": "GeoRessources", + "type": "Child", + "id": "https://ror.org/04mq2px33" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Observatoire Terre et environnement de Lorraine", + "type": "Child", + "id": "https://ror.org/02cyw3861" + }, + { + "label": "Huma-Num", + "type": "Child", + "id": "https://ror.org/04ces3204" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "Child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Laboratoire de Mathématiques et Modélisation d'Évry", + "type": "Child", + "id": "https://ror.org/03jca6281" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie Biologie Innovation", + "type": "Child", + "id": "https://ror.org/04bgzse17" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "Child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "Child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "Child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "Child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "CALMIP", + "type": "Child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Plateforme de chimie biologique intégrative de Strasbourg", + "type": "Child", + "id": "https://ror.org/052pqt102" + }, + { + "label": "LINK - Laboratory for Innovative Key Materials and Structures", + "type": "Child", + "id": "https://ror.org/03qt6f440" + }, + { + "label": "OpenEdition Center", + "type": "Child", + "id": "https://ror.org/02aja8v82" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Laboratoire de Chimie-Physique Macromoléculaire", + "type": "Child", + "id": "https://ror.org/0371yc337" + }, + { + "label": "Centre pour les humanités numériques et l'histoire de la justice", + "type": "Child", + "id": "https://ror.org/02yvha224" + }, + { + "label": "AlgoSolis", + "type": "Child", + "id": "https://ror.org/05481me13" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "Child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Passages", + "type": "Child", + "id": "https://ror.org/00s40r567" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "Child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "Child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Climat, Environnement, Couplages et Incertitudes", + "type": "Child", + "id": "https://ror.org/05t8ct211" + }, + { + "label": "Laboratoire de Linguistique de Nantes", + "type": "Child", + "id": "https://ror.org/0009eec40" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "Child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "Child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "Child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "Child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "ScanMAT", + "type": "Child", + "id": "https://ror.org/04fsxy317" + }, + { + "label": "PatriNat", + "type": "Child", + "id": "https://ror.org/037eda396" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "Child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Institut Denis Poisson", + "type": "Child", + "id": "https://ror.org/05djhd259" + }, + { + "label": "Temps, Mondes, Sociétés", + "type": "Child", + "id": "https://ror.org/01nhp3z94" + }, + { + "label": "Laboratoire Lorrain de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/020azc393" + }, + { + "label": "Laboratoire de Physique et Chimie Théoriques", + "type": "Child", + "id": "https://ror.org/02atkd403" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Vision pour la Robotique", + "type": "Child", + "id": "https://ror.org/02v6phz91" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Epigenetics, Data, Politics", + "type": "Child", + "id": "https://ror.org/00rg8bd79" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Integrative Neuroscience and Cognition Center", + "type": "Child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "Child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "Child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire interdisciplinaire d’études sur les réflexivités - Fonds Yan Thomas", + "type": "Child", + "id": "https://ror.org/046dap961" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "Child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Light, nanomaterials, nanotechnologies", + "type": "Child", + "id": "https://ror.org/01waxag60" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "Child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Centre de recherche sur le monde iranien", + "type": "Child", + "id": "https://ror.org/0302qeq32" + }, + { + "label": "RESTORE", + "type": "Child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "Child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "Child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "Child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Transitions Energétiques et Environnementales", + "type": "Child", + "id": "https://ror.org/04cms1b08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "Child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "Child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Bordeaux Sciences Économiques", + "type": "Child", + "id": "https://ror.org/014vz2d20" + }, + { + "label": "Microscopies, imageries et ressources analytiques en région Centre-Val de Loire", + "type": "Child", + "id": "https://ror.org/050x42563" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "Child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Catalyse, Polymérisation, Procédés et Matériaux", + "type": "Child", + "id": "https://ror.org/02f6tst70" + }, + { + "label": "Fédération de recherche Matière et Interactions", + "type": "Child", + "id": "https://ror.org/02wq1s711" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "Child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "Child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "Child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "Child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "Child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "Child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "Child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "Child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "Child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "Child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "Child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "Child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Archéologie, Terre, Histoire, Sociétés", + "type": "Child", + "id": "https://ror.org/011hdpx94" + }, + { + "label": "Institut de Chimie Moléculaire de l'Université de Bourgogne", + "type": "Child", + "id": "https://ror.org/011ygpb73" + }, + { + "label": "Institut Chevreul", + "type": "Child", + "id": "https://ror.org/048k52v18" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "Child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "Laboratoire Ondes et Milieux Complexes", + "type": "Child", + "id": "https://ror.org/02sb3b652" + }, + { + "label": "Centre for Nanoscience and Nanotechnology", + "type": "Child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Département de mathématiques et applications", + "type": "Child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "Child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "Child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Genome Integrity, RNA and Cancer", + "type": "Child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "Child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "Child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "Child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "Child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "Child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "Child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "Child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "Child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "Child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratory of Theoretical Physics and Statistical Models", + "type": "Child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "Child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "Child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "Child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratoire Leprince-Ringuet", + "type": "Child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "Centre de recherche droit Dauphine", + "type": "Child", + "id": "https://ror.org/01ag91m47" + }, + { + "label": "Laboratoire de Recherche sur la Croissance Cellulaire, la Réparation et la Régénération Tissulaires", + "type": "Child", + "id": "https://ror.org/041dsyz88" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "UMR Géographie-cités", + "type": "Related", + "id": "https://ror.org/05yqfzf35" + }, + { + "label": "Campus Condorcet", + "type": "Related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "Laboratoire interdisciplinaire en études culturelles", + "type": "Child", + "id": "https://ror.org/03820wq39" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CNRS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Centre_national_de_la_recherche_scientifique", + "labels": [ + { + "label": "Centre National de la Recherche Scientifique", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.4444.0", + "preferred": "grid.4444.0" + }, + "ISNI": { + "all": [ + "0000 0001 2259 7504" + ], + "preferred": "0000 0001 2259 7504" + }, + "Wikidata": { + "all": [ + "Q280413", + "Q39411466" + ], + "preferred": "Q280413" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02g0fsq64.json b/v1.45/v1/02g0fsq64.json new file mode 100644 index 000000000..ed9baa05d --- /dev/null +++ b/v1.45/v1/02g0fsq64.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02g0fsq64", + "name": "Politeknik Negeri Samarinda", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -0.49167, + "lng": 117.14583, + "state": null, + "state_code": null, + "city": "Samarinda", + "geonames_city": { + "id": 1629001, + "city": "Samarinda", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.polnes.ac.id" + ], + "aliases": [ + "Poltek Samarinda", + "Samarinda State Polytechnic" + ], + "acronyms": [ + "POLNES" + ], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Politeknik_Negeri_Samarinda", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0375 2849" + ], + "preferred": "0000 0004 0375 2849" + }, + "Wikidata": { + "all": [ + "Q12506033" + ], + "preferred": "Q12506033" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02h9td068.json b/v1.45/v1/02h9td068.json new file mode 100644 index 000000000..973487658 --- /dev/null +++ b/v1.45/v1/02h9td068.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02h9td068", + "name": "BD Biosciences (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1897, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Becton Dickinson (United States)", + "type": "Parent", + "id": "https://ror.org/048vrgr14" + } + ], + "addresses": [ + { + "lat": 37.33939, + "lng": -121.89496, + "state": null, + "state_code": null, + "city": "San Jose", + "geonames_city": { + "id": 5392171, + "city": "San Jose", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bdbiosciences.com" + ], + "aliases": [ + "Becton Dickinson Biosciences" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "BD Biosciences", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.420052.1", + "preferred": "grid.420052.1" + }, + "ISNI": { + "all": [ + "0000 0004 0543 6807" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q813780" + ], + "preferred": "Q813780" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02jv3k292.json b/v1.45/v1/02jv3k292.json new file mode 100644 index 000000000..b39c6f797 --- /dev/null +++ b/v1.45/v1/02jv3k292.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/02jv3k292", + "name": "Sofia University \"St. Kliment Ohridski\"", + "email_address": null, + "ip_addresses": [], + "established": 1888, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.69751, + "lng": 23.32415, + "state": null, + "state_code": null, + "city": "Sofia", + "geonames_city": { + "id": 727011, + "city": "Sofia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni-sofia.bg/" + ], + "aliases": [ + "Sofia University", + "Sofiyski universitet", + "Sofya Üniversitesi", + "Софийски университет" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Sofia_University", + "labels": [ + { + "label": "Софийски университет \"Св. Климент Охридски\"", + "iso639": "bg" + } + ], + "country": { + "country_name": "Bulgaria", + "country_code": "BG" + }, + "external_ids": { + "GRID": { + "all": "grid.11355.33", + "preferred": "grid.11355.33" + }, + "ISNI": { + "all": [ + "0000 0001 2192 3275" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q841581" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02k40bc56.json b/v1.45/v1/02k40bc56.json new file mode 100644 index 000000000..a1993cc7c --- /dev/null +++ b/v1.45/v1/02k40bc56.json @@ -0,0 +1,133 @@ +{ + "id": "https://ror.org/02k40bc56", + "name": "Indiana University Bloomington", + "email_address": null, + "ip_addresses": [], + "established": 1820, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Indiana Geological and Water Survey", + "type": "Child", + "id": "https://ror.org/00pnhtk88" + }, + { + "label": "Indiana University", + "type": "Parent", + "id": "https://ror.org/01kg8sb98" + }, + { + "label": "Indiana University Hospital", + "type": "Related", + "id": "https://ror.org/05rbkcx47" + }, + { + "label": "Methodist Hospital", + "type": "Related", + "id": "https://ror.org/00g635h87" + }, + { + "label": "Rehabilitation Hospital of Indiana", + "type": "Related", + "id": "https://ror.org/043ckch24" + }, + { + "label": "Richard L. Roudebush VA Medical Center", + "type": "Related", + "id": "https://ror.org/01zpmbk67" + }, + { + "label": "Riley Hospital for Children", + "type": "Related", + "id": "https://ror.org/03vzvbw58" + } + ], + "addresses": [ + { + "lat": 39.16533, + "lng": -86.52639, + "state": null, + "state_code": null, + "city": "Bloomington", + "geonames_city": { + "id": 4254679, + "city": "Bloomington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bloomington.iu.edu" + ], + "aliases": [], + "acronyms": [ + "IU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Indiana_University_Bloomington", + "labels": [ + { + "label": "Universidad de Indiana Bloomington", + "iso639": "es" + }, + { + "label": "Université de l'Indiana à Bloomington", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.411377.7", + "preferred": "grid.411377.7" + }, + "ISNI": { + "all": [ + "0000 0001 0790 959X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1079140" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02kvxyf05.json b/v1.45/v1/02kvxyf05.json new file mode 100644 index 000000000..5bf91d808 --- /dev/null +++ b/v1.45/v1/02kvxyf05.json @@ -0,0 +1,317 @@ +{ + "id": "https://ror.org/02kvxyf05", + "name": "French Institute for Research in Computer Science and Automation", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Biometry and Evolutionary Biology Laboratory", + "type": "Child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Centre de Mathématiques Appliquées", + "type": "Child", + "id": "https://ror.org/012e1xn46" + }, + { + "label": "Cognition Behaviour Technology", + "type": "Child", + "id": "https://ror.org/04d9wv909" + }, + { + "label": "Computer Science Laboratory of the École Polytechnique", + "type": "Child", + "id": "https://ror.org/04afed728" + }, + { + "label": "Département d'Informatique", + "type": "Child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Grenoble Computer Science Laboratory", + "type": "Child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "Child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Inria Bordeaux - Sud-Ouest Research Centre", + "type": "Child", + "id": "https://ror.org/03tjcj052" + }, + { + "label": "Inria Grenoble - Rhône-Alpes research centre", + "type": "Child", + "id": "https://ror.org/00n8d6z93" + }, + { + "label": "Inria Nancy - Grand-Est research centre", + "type": "Child", + "id": "https://ror.org/03fcjvn64" + }, + { + "label": "Inria Rennes - Bretagne Atlantique Research Centre", + "type": "Child", + "id": "https://ror.org/04040yw90" + }, + { + "label": "Inria Saclay - Île-de-France Research Centre", + "type": "Child", + "id": "https://ror.org/0315e5x55" + }, + { + "label": "Inria research centre Lille - Nord Europe", + "type": "Child", + "id": "https://ror.org/04eej9726" + }, + { + "label": "Institut de Mathématiques de Bordeaux", + "type": "Child", + "id": "https://ror.org/05m3r1b84" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "Child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut Élie Cartan de Lorraine", + "type": "Child", + "id": "https://ror.org/04rvw8791" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "Child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Paul Painlevé", + "type": "Child", + "id": "https://ror.org/043n4fm24" + }, + { + "label": "Laboratoire d'Informatique, Signaux et Systèmes de Sophia Antipolis", + "type": "Child", + "id": "https://ror.org/01215r597" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "Child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "Child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory of Mathematics and their Applications", + "type": "Child", + "id": "https://ror.org/00g669j87" + }, + { + "label": "Lorraine Research Laboratory in Computer Science and its Applications", + "type": "Child", + "id": "https://ror.org/02vnf0c38" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "type": "Child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Research Centre Inria Sophia Antipolis - Méditerranée", + "type": "Child", + "id": "https://ror.org/01nzkaw91" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Unit of Mathematics, Pure and Applied", + "type": "Child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Wave Propagation Mathematical Study and Simulation", + "type": "Child", + "id": "https://ror.org/03gvm2667" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "InBio: Experimental and Computational Methods for Modeling Cellular Processes", + "type": "Child", + "id": "https://ror.org/01tnxwc41" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "Inria Lyon Centre", + "type": "Child", + "id": "https://ror.org/022gakr41" + } + ], + "addresses": [ + { + "lat": 48.8205, + "lng": 2.1311, + "state": null, + "state_code": null, + "city": "Le Chesnay-Rocquencourt", + "geonames_city": { + "id": 6455402, + "city": "Le Chesnay-Rocquencourt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.inria.fr/en/" + ], + "aliases": [ + "Institut de recherche en informatique et en automatique" + ], + "acronyms": [ + "INRIA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/French_Institute_for_Research_in_Computer_Science_and_Automation", + "labels": [ + { + "label": "Institut national de recherche en informatique et en automatique", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.5328.c", + "preferred": "grid.5328.c" + }, + "ISNI": { + "all": [ + "0000 0001 2186 3954", + "0000 0001 2164 1438" + ], + "preferred": "0000 0001 2164 1438" + }, + "Wikidata": { + "all": [ + "Q1146208" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02n415q13.json b/v1.45/v1/02n415q13.json new file mode 100644 index 000000000..ca5de2d93 --- /dev/null +++ b/v1.45/v1/02n415q13.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02n415q13", + "name": "Curtin University", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "International Centre for Radio Astronomy Research", + "type": "Child", + "id": "https://ror.org/05sd1pp77" + }, + { + "label": "Digitisation Centre of Western Australia", + "type": "Related", + "id": "https://ror.org/00jjz9s23" + }, + { + "label": "Australian Centre for Excellence in Antarctic Science", + "type": "Related", + "id": "https://ror.org/024jkkf40" + } + ], + "addresses": [ + { + "lat": -31.95224, + "lng": 115.8614, + "state": null, + "state_code": null, + "city": "Perth", + "geonames_city": { + "id": 2063523, + "city": "Perth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.curtin.edu.au/" + ], + "aliases": [ + "Curtin University of Technology" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Curtin_University", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1032.0", + "preferred": "grid.1032.0" + }, + "ISNI": { + "all": [ + "0000 0004 0375 4078" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1145497" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02ndgyq34.json b/v1.45/v1/02ndgyq34.json new file mode 100644 index 000000000..9b2fa504d --- /dev/null +++ b/v1.45/v1/02ndgyq34.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02ndgyq34", + "name": "Integrated Device Technology (South Korea)", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Integrated Device Technology (United States)", + "type": "Parent", + "id": "https://ror.org/03yvs0f43" + }, + { + "label": "Renesas Electronics (Japan)", + "type": "Successor", + "id": "https://ror.org/058wb7691" + } + ], + "addresses": [ + { + "lat": 37.566, + "lng": 126.9784, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835848, + "city": "Seoul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.idt.com/" + ], + "aliases": [ + "GigPeak" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Integrated_Device_Technology", + "labels": [], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "GRID": { + "all": "grid.473099.0", + "preferred": "grid.473099.0" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02p06sa95.json b/v1.45/v1/02p06sa95.json new file mode 100644 index 000000000..271a35c52 --- /dev/null +++ b/v1.45/v1/02p06sa95.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02p06sa95", + "name": "Centre de recherches en philosophie allemande et contemporaine", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://philo.unistra.fr/recherche/crephac-ur-2326/" + ], + "aliases": [], + "acronyms": [ + "CREPhAC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785238" + ], + "preferred": "Q51785238" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02phbwg91.json b/v1.45/v1/02phbwg91.json new file mode 100644 index 000000000..8de36ec9a --- /dev/null +++ b/v1.45/v1/02phbwg91.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02phbwg91", + "name": "Laboratoire de psychologie des cognitions", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lpc.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "LPC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780579" + ], + "preferred": "Q51780579" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02qprbz18.json b/v1.45/v1/02qprbz18.json new file mode 100644 index 000000000..bf8a67262 --- /dev/null +++ b/v1.45/v1/02qprbz18.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/02qprbz18", + "name": "Institut des Mondes Africains", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Aix-Marseille University", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université Paris 1 Panthéon-Sorbonne", + "type": "Parent", + "id": "https://ror.org/002t25c44" + }, + { + "label": "School for Advanced Studies in the Social Sciences", + "type": "Parent", + "id": "https://ror.org/02d9dg697" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.imaf.cnrs.fr" + ], + "aliases": [ + "Centre d’Etudes des Mondes Africains" + ], + "acronyms": [ + "CEMAF", + "IMAf" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.483397.2", + "preferred": "grid.483397.2" + }, + "ISNI": { + "all": [ + "0000 0001 2107 7910" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16643728" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02rnpdm14.json b/v1.45/v1/02rnpdm14.json new file mode 100644 index 000000000..9b1968e8b --- /dev/null +++ b/v1.45/v1/02rnpdm14.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02rnpdm14", + "name": "Configurations littéraires", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ea1337.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "CL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784189" + ], + "preferred": "Q51784189" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02vbab064.json b/v1.45/v1/02vbab064.json new file mode 100644 index 000000000..b9c032869 --- /dev/null +++ b/v1.45/v1/02vbab064.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02vbab064", + "name": "Institute for Stem Cell Biology and Regenerative Medicine", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Stanford Medicine", + "type": "Parent", + "id": "https://ror.org/03mtd9a03" + } + ], + "addresses": [ + { + "lat": 37.44188, + "lng": -122.14302, + "state": null, + "state_code": null, + "city": "Palo Alto", + "geonames_city": { + "id": 5380748, + "city": "Palo Alto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://med.stanford.edu/stemcell" + ], + "aliases": [ + "Stanford Institute for Stem Cell Biology and Regenerative Medicine" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0443 3997" + ], + "preferred": "0000 0004 0443 3997" + }, + "Wikidata": { + "all": [ + "Q85720131" + ], + "preferred": "Q85720131" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02vjkv261.json b/v1.45/v1/02vjkv261.json new file mode 100644 index 000000000..319b5b866 --- /dev/null +++ b/v1.45/v1/02vjkv261.json @@ -0,0 +1,1318 @@ +{ + "id": "https://ror.org/02vjkv261", + "name": "Inserm", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Adaptateurs de Signalisation en Hématologie", + "type": "Child", + "id": "https://ror.org/03837fc46" + }, + { + "label": "Adhesion and Inflammation Lab", + "type": "Child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Cancer Research Center of Lyon", + "type": "Child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Cancer Research Center of Toulouse", + "type": "Child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Cancer Thematics Institute", + "type": "Child", + "id": "https://ror.org/04zdwr798" + }, + { + "label": "Cell Biology, Development and Evolution", + "type": "Child", + "id": "https://ror.org/024k3xe80" + }, + { + "label": "Center for Interdisciplinary Research in Biology", + "type": "Child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "Child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Center for Research in Medicine, Science, Health, Mental Health and Society", + "type": "Child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Center for Research on Inflammation", + "type": "Child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre Méditerranéen de Médecine Moléculaire", + "type": "Child", + "id": "https://ror.org/029rfe283" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "Child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "Child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "Child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "Child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Référence Déficits Immunitaires Héréditaires", + "type": "Child", + "id": "https://ror.org/009p5nb11" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "Child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Cognition, Action, and Sensorimotor Plasticity", + "type": "Child", + "id": "https://ror.org/03xe54902" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "Child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Délégation Paris 11", + "type": "Child", + "id": "https://ror.org/0589k3111" + }, + { + "label": "Délégation Paris 12", + "type": "Child", + "id": "https://ror.org/00sbttv49" + }, + { + "label": "Délégation Paris 5", + "type": "Child", + "id": "https://ror.org/02e0y6e06" + }, + { + "label": "Délégation Paris 6", + "type": "Child", + "id": "https://ror.org/03rt48n94" + }, + { + "label": "Délégation Paris 7", + "type": "Child", + "id": "https://ror.org/00bw5n526" + }, + { + "label": "Délégation Régionale Auvergne-Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/0530j9m17" + }, + { + "label": "Délégation Régionale Est", + "type": "Child", + "id": "https://ror.org/04kv7c795" + }, + { + "label": "Délégation Régionale Grand Ouest", + "type": "Child", + "id": "https://ror.org/01qa4rf46" + }, + { + "label": "Délégation Régionale Nord Ouest", + "type": "Child", + "id": "https://ror.org/00jmxvy70" + }, + { + "label": "Délégation Régionale Nouvelle-Aquitaine", + "type": "Child", + "id": "https://ror.org/044rb3f07" + }, + { + "label": "Délégation Régionale Occitanie Méditerranée", + "type": "Child", + "id": "https://ror.org/01ddr6d46" + }, + { + "label": "Délégation Régionale Occitanie Pyrénées", + "type": "Child", + "id": "https://ror.org/03xssrp53" + }, + { + "label": "Délégation Régionale Provence-Alpes-Côte d’Azur et Corse", + "type": "Child", + "id": "https://ror.org/01s8rwd67" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Equipe Soutenue par la Région et par l'Inserm", + "type": "Child", + "id": "https://ror.org/03e801006" + }, + { + "label": "Genetics, Genomics and Bioinformatics", + "type": "Child", + "id": "https://ror.org/01rfstj90" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "Child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "Child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "Child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Imagine Institute for Genetic Diseases", + "type": "Child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Imaging and Brain", + "type": "Child", + "id": "https://ror.org/01eem7c55" + }, + { + "label": "Immunity and Cancer", + "type": "Child", + "id": "https://ror.org/01zefvs55" + }, + { + "label": "Immunology, Inflammation, Infectiology and Microbiology", + "type": "Child", + "id": "https://ror.org/00r454w59" + }, + { + "label": "Inserm Transfert", + "type": "Child", + "id": "https://ror.org/01wftfc57" + }, + { + "label": "Institute for Advanced Biosciences", + "type": "Child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Institut Cochin", + "type": "Child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "Child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut Jacques Monod", + "type": "Child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "Child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "Child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut d'Économie Publique", + "type": "Child", + "id": "https://ror.org/014ycqe77" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "Child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie de Lille", + "type": "Child", + "id": "https://ror.org/05gd4yq49" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Neurobiologie de la Méditerranée", + "type": "Child", + "id": "https://ror.org/02jthx987" + }, + { + "label": "Institut de Neurosciences des Systèmes", + "type": "Child", + "id": "https://ror.org/019kqby73" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "Child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Institut de Recherche en Santé, Environnement et Travail", + "type": "Child", + "id": "https://ror.org/01p178v10" + }, + { + "label": "Institut du Cerveau", + "type": "Child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "Child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut du Thorax", + "type": "Child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "Child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "Child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institute of Biology Valrose", + "type": "Child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institut de Myologie", + "type": "Child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institute of Research on Cancer and Aging in Nice", + "type": "Child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "International Center for Infectiology Research", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire CarMeN", + "type": "Child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "Child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "Child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratory for Optics & Biosciences", + "type": "Child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratory for Vascular Translational Science", + "type": "Child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "Child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Institut Langevin", + "type": "Child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Lipides, Nutrition, Cancer", + "type": "Child", + "id": "https://ror.org/04d70nb60" + }, + { + "label": "Lyon Neuroscience Research Center", + "type": "Child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Molecular and Structural Basis of Life Sciences", + "type": "Child", + "id": "https://ror.org/00j5dj575" + }, + { + "label": "Mondor Institute of Biomedical Research", + "type": "Child", + "id": "https://ror.org/04qe59j94" + }, + { + "label": "Neurosciences, Cognitive Sciences, Neurology and Psychiatry", + "type": "Child", + "id": "https://ror.org/05e7p5n27" + }, + { + "label": "Nutrition Obesity & Risk of Thrombosis", + "type": "Child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Oncogenesis Stress Signaling", + "type": "Child", + "id": "https://ror.org/00bf6bf92" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "Child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Génomes, biologie cellulaire et thérapeutiques", + "type": "Child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "Child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "Child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physiopathology, metabolism and nutrition", + "type": "Child", + "id": "https://ror.org/00cmmh940" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "Child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Public Health", + "type": "Child", + "id": "https://ror.org/04wbsq162" + }, + { + "label": "Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète", + "type": "Child", + "id": "https://ror.org/05xanhp90" + }, + { + "label": "Skin Research Center", + "type": "Child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "Stem-Cell and Brain Research Institute", + "type": "Child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "Child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "Child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Theories and Approaches of Genomic Complexity", + "type": "Child", + "id": "https://ror.org/025sfbe73" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "Child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "Child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Systèmes avancés de délivrance de principes actifs", + "type": "Child", + "id": "https://ror.org/053ppfe96" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Investigation Clinique - Innovation Technologique de Lille", + "type": "Child", + "id": "https://ror.org/04p4jgt68" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "IMPact de l'Environnement Chimique sur la Santé humaine", + "type": "Child", + "id": "https://ror.org/0455vgw31" + }, + { + "label": "Institute for Translational Research in Inflammation", + "type": "Child", + "id": "https://ror.org/03qy9z186" + }, + { + "label": "Lille Neurosciences & Cognition", + "type": "Child", + "id": "https://ror.org/04p94ax69" + }, + { + "label": "Médicaments et Molécules pour Agir sur les Systèmes Vivants", + "type": "Child", + "id": "https://ror.org/0086epd30" + }, + { + "label": "OncoThAI", + "type": "Child", + "id": "https://ror.org/04q29nn62" + }, + { + "label": "Laboratoire de Physiologie Cellulaire", + "type": "Child", + "id": "https://ror.org/05fjffm04" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Recherche translationnelle sur le diabète", + "type": "Child", + "id": "https://ror.org/03pbmtd68" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "Child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Bacterial Regulatory RNAs & Medicine", + "type": "Child", + "id": "https://ror.org/031y0x195" + }, + { + "label": "Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer", + "type": "Child", + "id": "https://ror.org/05p7fmf80" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "Child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "Child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre d’Investigation Clinique 1436", + "type": "Child", + "id": "https://ror.org/033z83z59" + }, + { + "label": "Hypoxie et Poumon", + "type": "Child", + "id": "https://ror.org/02mtpz628" + }, + { + "label": "Centre d'Investigation Clinique - Epidémiologie Clinique Saint-Etienne", + "type": "Child", + "id": "https://ror.org/044dp1584" + }, + { + "label": "NeuroDiderot", + "type": "Child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Besançon", + "type": "Child", + "id": "https://ror.org/04nk3ny21" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "Child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "Child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Institute for Translational Medicine and Liver Disease", + "type": "Child", + "id": "https://ror.org/00jvqbw52" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "Child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "Child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "Child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde", + "type": "Child", + "id": "https://ror.org/05vqkgf08" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "Biologie des maladies cardiovasculaires", + "type": "Child", + "id": "https://ror.org/0463z7496" + }, + { + "label": "Nutrition, Diabète et Cerveau", + "type": "Child", + "id": "https://ror.org/052yj6c27" + }, + { + "label": "Pharmacologie et Transplantation", + "type": "Child", + "id": "https://ror.org/013dngs07" + }, + { + "label": "Pathologies Pulmonaires et Plasticité Cellulaire", + "type": "Child", + "id": "https://ror.org/02w7ezv91" + }, + { + "label": "Physiopathologie, autoimmunité, maladies neuromusculaire et thérapie régénératrice", + "type": "Child", + "id": "https://ror.org/034feyf26" + }, + { + "label": "Marseille Medical Genetics", + "type": "Child", + "id": "https://ror.org/01e4wd589" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "Child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Centre d'Investigation Clinique Antilles Guyane", + "type": "Child", + "id": "https://ror.org/029hdt144" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "Child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "Child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "HIPI - Human Immunology, Pathophysiology and Immunotherapy", + "type": "Child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "Child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Institut Droit et Santé", + "type": "Child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "Child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Etude longitudinale française depuis l'enfance", + "type": "Child", + "id": "https://ror.org/03cxgcr75" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "Child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Laboratory for the Bioengineering of Tissues", + "type": "Child", + "id": "https://ror.org/012zmcc30" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "Child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "TBM-Core", + "type": "Child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Centre d’Investigation Clinique des Hôpitaux Universitaires de Strasbourg", + "type": "Child", + "id": "https://ror.org/03zsnyg10" + }, + { + "label": "Bordeaux Imaging Center", + "type": "Child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "Child", + "id": "https://ror.org/034bena10" + }, + { + "label": "RMeS - Regenerative Medicine and Skeleton", + "type": "Child", + "id": "https://ror.org/025agbr41" + }, + { + "label": "Pharmacologie des anti-infectieux et antibiorésistance", + "type": "Child", + "id": "https://ror.org/041v99f68" + }, + { + "label": "Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau", + "type": "Child", + "id": "https://ror.org/040d87505" + }, + { + "label": "Ischémie Reperfusion, Métabolisme et Inflammation Stérile en Transplantation", + "type": "Child", + "id": "https://ror.org/05kkw6065" + }, + { + "label": "Laboratoire de Neurosciences Expérimentales et Cliniques", + "type": "Child", + "id": "https://ror.org/04rfxk768" + }, + { + "label": "Anti-infectieux : supports moléculaires des résistances et innovations thérapeutiques", + "type": "Child", + "id": "https://ror.org/0458p8g61" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "Child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "Centre d'Étude des Pathologies Respiratoires", + "type": "Child", + "id": "https://ror.org/01vxptj17" + }, + { + "label": "Groupe de Recherches sur l’Analyse Multimodale de la Fonction Cérébrale", + "type": "Child", + "id": "https://ror.org/02a9mrq41" + }, + { + "label": "Plateforme d'information et de services pour les maladies rares et les médicaments orphelins", + "type": "Child", + "id": "https://ror.org/05thj7870" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "Child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "Child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "Child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Antimicrobials, Modelling, Evolution", + "type": "Child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "Child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Organisation Nucléaire et Oncogenèse", + "type": "Child", + "id": "https://ror.org/05q8d3662" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "Child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "Child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Pathogenèse des infections vasculaires", + "type": "Child", + "id": "https://ror.org/00gjnk018" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "Child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Maladies Rares: Génétique et Métabolisme", + "type": "Child", + "id": "https://ror.org/01wvg5605" + }, + { + "label": "Research on healthcare performance", + "type": "Child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "Child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "Child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Physiopathologie et imagerie des troubles neurologiques", + "type": "Child", + "id": "https://ror.org/00vsvph51" + }, + { + "label": "Neuropsychologie et Imagerie de la Mémoire Humaine", + "type": "Child", + "id": "https://ror.org/04f6tkx67" + }, + { + "label": "Mobilités: Vieillissement, Pathologie, Santé", + "type": "Child", + "id": "https://ror.org/028rasm92" + }, + { + "label": "Imagerie Moléculaire et Stratégies Théranostiques", + "type": "Child", + "id": "https://ror.org/03y61y350" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "Child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "Child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Laboratoire d'imagerie translationnelle en oncologie", + "type": "Child", + "id": "https://ror.org/05qy9ka59" + }, + { + "label": "RESTORE", + "type": "Child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "Child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Génomique fonctionnelle comparative", + "type": "Child", + "id": "https://ror.org/016nv8j08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "Child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "L’Inserm dans Paris et l’Île-de-France Centre Nord", + "type": "Child", + "id": "https://ror.org/00jyt4d57" + }, + { + "label": "Défaillance Cardiovasculaire Aiguë et Chronique", + "type": "Child", + "id": "https://ror.org/05ft9wv42" + }, + { + "label": "Nutrition-Génétique et Exposition aux Risques Environnementaux", + "type": "Child", + "id": "https://ror.org/053d03003" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "Child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "The Enteric Nervous System in Gut and Brain Disorders", + "type": "Child", + "id": "https://ror.org/01kbkse74" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "Child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "Child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "Child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "Child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénierie des Connaissances en e-Santé", + "type": "Child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "Child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "PremUP", + "type": "Child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "Child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "Child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "Child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "Child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Infection et inflammation", + "type": "Child", + "id": "https://ror.org/021sh3243" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Laboratoire physiopathologie et pharmacologie clinique de la douleur", + "type": "Child", + "id": "https://ror.org/02k243t26" + }, + { + "label": "Handicap neuromusculaire : Physiopathologie, Biothérapie et Pharmacologie appliquées", + "type": "Child", + "id": "https://ror.org/02nxezb95" + }, + { + "label": "COMETE - Mobilités : Vieillissement, pathologie, santé", + "type": "Child", + "id": "https://ror.org/018z38380" + }, + { + "label": "Endothélium, valvulopathies et insuffisance cardiaque", + "type": "Child", + "id": "https://ror.org/017ed2k28" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/035gq6r08" + }, + { + "label": "Center for Research in Transplantation and Translational Immunology", + "type": "Child", + "id": "https://ror.org/01165k395" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "methodS in Patient-centered outcomes and HEalth ResEarch", + "type": "Child", + "id": "https://ror.org/013m8h627" + }, + { + "label": "Translational Research in Gene Therapy", + "type": "Child", + "id": "https://ror.org/02tg88m31" + }, + { + "label": "Dynamique Microbienne associée aux Infections Urinaires et Respiratoires", + "type": "Child", + "id": "https://ror.org/01a6c6c20" + }, + { + "label": "Génomique du cancer et du cerveau", + "type": "Child", + "id": "https://ror.org/05k71g406" + }, + { + "label": "Unité de recherche interdisciplinaire pour la prévention et le traitement des cancers", + "type": "Child", + "id": "https://ror.org/04b8tg719" + }, + { + "label": "Neuroendocrine, Endocrine and Germinal Differentiation Communication", + "type": "Child", + "id": "https://ror.org/02yvdat18" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "Child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "Child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "Child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Neuroscience et Psychiatrie Translationnelle de Strasbourg", + "type": "Child", + "id": "https://ror.org/05dd6kb95" + }, + { + "label": "Immuno-Rhumathologie moléculaire", + "type": "Child", + "id": "https://ror.org/03k7yrw82" + }, + { + "label": "Laboratoire de Génétique Médicale", + "type": "Child", + "id": "https://ror.org/016wpzq40" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inserm.fr" + ], + "aliases": [], + "acronyms": [ + "INSERM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Inserm", + "labels": [ + { + "label": "French Institute of Health and Medical Research", + "iso639": "en" + }, + { + "label": "Institut National de la Santé et de la Recherche Médicale", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.7429.8", + "preferred": "grid.7429.8" + }, + "ISNI": { + "all": [ + "0000 0001 2186 6389" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1474517" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02vvmw586.json b/v1.45/v1/02vvmw586.json new file mode 100644 index 000000000..fe39d9b4d --- /dev/null +++ b/v1.45/v1/02vvmw586.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02vvmw586", + "name": "State University of Economics and Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.90572, + "lng": 33.39404, + "state": null, + "state_code": null, + "city": "Kryvyi Rih", + "geonames_city": { + "id": 703845, + "city": "Kryvyi Rih", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.duet.edu.ua" + ], + "aliases": [ + "Kryvyi Rih State University of Economics and Technology" + ], + "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_%D0%B5%D0%BA%D0%BE%D0%BD%D0%BE%D0%BC%D1%96%D0%BA%D0%B8_%D1%96_%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": { + "GRID": { + "all": "grid.509920.7", + "preferred": "grid.509920.7" + }, + "Wikidata": { + "all": [ + "Q104481518", + "Q119867270" + ], + "preferred": "Q119867270" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02w69ra18.json b/v1.45/v1/02w69ra18.json new file mode 100644 index 000000000..7db8812da --- /dev/null +++ b/v1.45/v1/02w69ra18.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/02w69ra18", + "name": "Multimedia Nusantara Polytechnic", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Multimedia Nusantara University", + "type": "Related", + "id": "https://ror.org/00sefv038" + } + ], + "addresses": [ + { + "lat": -6.21462, + "lng": 106.84513, + "state": null, + "state_code": null, + "city": "Jakarta", + "geonames_city": { + "id": 1642911, + "city": "Jakarta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mnp.ac.id" + ], + "aliases": [ + "Politeknik Multimedia Nusantara" + ], + "acronyms": [ + "MNP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/02wj62e51.json b/v1.45/v1/02wj62e51.json new file mode 100644 index 000000000..a60ae153a --- /dev/null +++ b/v1.45/v1/02wj62e51.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02wj62e51", + "name": "Diabète et thérapies cellulaires", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unistra.fr/recherche-1/vie-et-sante-1/diabete-et-therapeutique-diathec-ur-7294" + ], + "aliases": [], + "acronyms": [ + "DIATHEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/02x2eem98.json b/v1.45/v1/02x2eem98.json new file mode 100644 index 000000000..3ff0ecf0f --- /dev/null +++ b/v1.45/v1/02x2eem98.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02x2eem98", + "name": "IAIN Syekh Nurjati Cirebon", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -6.7063, + "lng": 108.557, + "state": null, + "state_code": null, + "city": "Cirebon", + "geonames_city": { + "id": 1646170, + "city": "Cirebon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://info.syekhnurjati.ac.id" + ], + "aliases": [ + "Institut Agama Islam Negeri Syekh Nurjati Cirebon" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0443 9536" + ], + "preferred": "0000 0005 0443 9536" + }, + "Wikidata": { + "all": [ + "Q52637498" + ], + "preferred": "Q52637498" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/02y1g7e04.json b/v1.45/v1/02y1g7e04.json new file mode 100644 index 000000000..039125081 --- /dev/null +++ b/v1.45/v1/02y1g7e04.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02y1g7e04", + "name": "Government Polytechnic, Chhatrapati Sambhaji Nagar", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.87757, + "lng": 75.34226, + "state": null, + "state_code": null, + "city": "Aurangabad", + "geonames_city": { + "id": 1278149, + "city": "Aurangabad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://gpabad.ac.in" + ], + "aliases": [ + "Government Polytechnic, Aurangabad", + "Principal Government Polytechnic, Aurangabad" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "शासकीय तंत्रनिकेतन,छत्रपती संभाजीनगर", + "iso639": "mr" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/02zwf7d57.json b/v1.45/v1/02zwf7d57.json new file mode 100644 index 000000000..fc399062e --- /dev/null +++ b/v1.45/v1/02zwf7d57.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02zwf7d57", + "name": "Neuropsychologie Cognitive et Physiopathologie de la Schizophrénie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Neuroscience et Psychiatrie Translationnelle de Strasbourg", + "type": "Successor", + "id": "https://ror.org/05dd6kb95" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.u1114.inserm.fr" + ], + "aliases": [ + "Cognitive Neuropsychology and Physiopathology of Schizophrenia" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.492953.0", + "preferred": "grid.492953.0" + }, + "ISNI": { + "all": [ + "0000 0004 0624 5455" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q52606614" + ], + "preferred": "Q52606614" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/030eybx10.json b/v1.45/v1/030eybx10.json new file mode 100644 index 000000000..87928990d --- /dev/null +++ b/v1.45/v1/030eybx10.json @@ -0,0 +1,126 @@ +{ + "id": "https://ror.org/030eybx10", + "name": "Universidade de Santiago de Compostela", + "email_address": null, + "ip_addresses": [], + "established": 1495, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ORFEO-CINQA Research Network", + "type": "Child", + "id": "https://ror.org/03xw5ev35" + }, + { + "label": "Centro Singular de Investigación en Química Biológica y Materiales Moleculares", + "type": "Child", + "id": "https://ror.org/04wx4nj18" + }, + { + "label": "Complejo Hospitalario Universitario de Santiago", + "type": "Related", + "id": "https://ror.org/00mpdg388" + }, + { + "label": "SANT Herbarium", + "type": "Child", + "id": "https://ror.org/03jdc5495" + } + ], + "addresses": [ + { + "lat": 42.88052, + "lng": -8.54569, + "state": null, + "state_code": null, + "city": "Santiago de Compostela", + "geonames_city": { + "id": 3109642, + "city": "Santiago de Compostela", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usc.gal" + ], + "aliases": [], + "acronyms": [ + "USC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Santiago_de_Compostela", + "labels": [ + { + "label": "Santiago de Compostelako Unibertsitatea", + "iso639": "eu" + }, + { + "label": "Universidad de Santiago de Compostela", + "iso639": "es" + }, + { + "label": "Universitat de Santiago de Compostela", + "iso639": "ca" + }, + { + "label": "University of Santiago de Compostela", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.11794.3a", + "preferred": "grid.11794.3a" + }, + "ISNI": { + "all": [ + "0000 0001 0941 0645" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1473677" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/0313ftn24.json b/v1.45/v1/0313ftn24.json new file mode 100644 index 000000000..94dc10a65 --- /dev/null +++ b/v1.45/v1/0313ftn24.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/0313ftn24", + "name": "Nickan Research Institute", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.65246, + "lng": 51.67462, + "state": null, + "state_code": null, + "city": "Isfahan", + "geonames_city": { + "id": 418863, + "city": "Isfahan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nickanrescorp.com" + ], + "aliases": [], + "acronyms": [ + "NRC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52637641" + ], + "preferred": "Q52637641" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/031jrmw28.json b/v1.45/v1/031jrmw28.json new file mode 100644 index 000000000..8099b5302 --- /dev/null +++ b/v1.45/v1/031jrmw28.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/031jrmw28", + "name": "State Enterprise “Dnipropetrovsk Regional State Research and Technical Center for Standardization, Metrology and Certification”", + "email_address": null, + "ip_addresses": [], + "established": 1902, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.46664, + "lng": 35.04066, + "state": null, + "state_code": null, + "city": "Dnipro", + "geonames_city": { + "id": 709930, + "city": "Dnipro", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.dgcsms.dp.ua" + ], + "aliases": [ + "Dnipropetrovsk Regional State Research and Technical Center for Standardization, Metrology and Certification", + "Dnipropetrovsk Regional State Research-Technical Centre for Standardization, Metrology and Certification", + "SE \"Dniprostandartmetrology\"", + "ДП \"Дніпростандартметрологія\"", + "Дніпропетровський регіональний державний науково-технічний центр стандартизації, метрології та сертифікації" + ], + "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.45/v1/032mx9b27.json b/v1.45/v1/032mx9b27.json new file mode 100644 index 000000000..b42ae015f --- /dev/null +++ b/v1.45/v1/032mx9b27.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/032mx9b27", + "name": "The Greater Harlem Chamber of Commerce", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.greaterharlemchamber.com" + ], + "aliases": [ + "Greater Harlem Chamber of Commerce" + ], + "acronyms": [ + "GHCC" + ], + "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.45/v1/0336f3190.json b/v1.45/v1/0336f3190.json new file mode 100644 index 000000000..51eaece13 --- /dev/null +++ b/v1.45/v1/0336f3190.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/0336f3190", + "name": "Tecnológico Nacional de México Campus Cancún", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.17429, + "lng": -86.84656, + "state": null, + "state_code": null, + "city": "Cancún", + "geonames_city": { + "id": 3531673, + "city": "Cancún", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cancun.tecnm.mx" + ], + "aliases": [ + "TecNM Campus Cancún" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/0336zpb09.json b/v1.45/v1/0336zpb09.json new file mode 100644 index 000000000..86e857e08 --- /dev/null +++ b/v1.45/v1/0336zpb09.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/0336zpb09", + "name": "The Liverpool Blue Coat School", + "email_address": null, + "ip_addresses": [], + "established": 1708, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.41667, + "lng": -2.91667, + "state": null, + "state_code": null, + "city": "Liverpool", + "geonames_city": { + "id": 3333167, + "city": "Liverpool", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bluecoatschoolliverpool.org.uk" + ], + "aliases": [ + "Blue Coat School", + "Blue Coat School, Liverpool", + "Liverpool Blue Coat School", + "The Blue Coat School" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Liverpool_Blue_Coat_School", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2151 9766" + ], + "preferred": "0000 0001 2151 9766" + }, + "Wikidata": { + "all": [ + "Q6658319" + ], + "preferred": "Q6658319" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/033qpss18.json b/v1.45/v1/033qpss18.json new file mode 100644 index 000000000..9aa428804 --- /dev/null +++ b/v1.45/v1/033qpss18.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/033qpss18", + "name": "IRCCS Istituto Auxologico Italiano", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Istituti di Ricovero e Cura a Carattere Scientifico", + "type": "Parent", + "id": "https://ror.org/04tfzc498" + } + ], + "addresses": [ + { + "lat": 45.46427, + "lng": 9.18951, + "state": null, + "state_code": null, + "city": "Milan", + "geonames_city": { + "id": 3173435, + "city": "Milan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.auxologico.it/" + ], + "aliases": [ + "Auxologico IRCCS", + "Istituto Auxologico Italiano" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Italian Institute for Auxology", + "iso639": "en" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.418224.9", + "preferred": "grid.418224.9" + }, + "ISNI": { + "all": [ + "0000 0004 1757 9530" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30281627" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/033vc6k10.json b/v1.45/v1/033vc6k10.json new file mode 100644 index 000000000..249d8afdc --- /dev/null +++ b/v1.45/v1/033vc6k10.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/033vc6k10", + "name": "Neurological Institute of Thailand", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 13.75398, + "lng": 100.50144, + "state": null, + "state_code": null, + "city": "Bangkok", + "geonames_city": { + "id": 1609350, + "city": "Bangkok", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nit.go.th" + ], + "aliases": [ + "Prasat Neurological Institute", + "Prasat Neurological Institute of Thailand" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "สถาบันประสาทวิทยา", + "iso639": "th" + } + ], + "country": { + "country_name": "Thailand", + "country_code": "TH" + }, + "external_ids": { + "GRID": { + "all": "grid.418806.3", + "preferred": "grid.418806.3" + }, + "ISNI": { + "all": [ + "0000 0004 0617 5776" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30281867" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/033y4aw87.json b/v1.45/v1/033y4aw87.json new file mode 100644 index 000000000..cfceae65c --- /dev/null +++ b/v1.45/v1/033y4aw87.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/033y4aw87", + "name": "Centre for Sustainable Architecture with Wood", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/research/institutes-and-centres/csaw" + ], + "aliases": [], + "acronyms": [ + "CSAW" + ], + "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.45/v1/03493zm15.json b/v1.45/v1/03493zm15.json new file mode 100644 index 000000000..5121e302b --- /dev/null +++ b/v1.45/v1/03493zm15.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03493zm15", + "name": "Universitas DIPA Makassar", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -5.14861, + "lng": 119.43194, + "state": null, + "state_code": null, + "city": "Makassar", + "geonames_city": { + "id": 1622786, + "city": "Makassar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://site.undipa.ac.id" + ], + "aliases": [ + "Dipa Makassar University" + ], + "acronyms": [ + "UNDIPA" + ], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Universitas_Dipa_Makassar", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109913185" + ], + "preferred": "Q109913185" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03597ek14.json b/v1.45/v1/03597ek14.json new file mode 100644 index 000000000..22f1a250b --- /dev/null +++ b/v1.45/v1/03597ek14.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/03597ek14", + "name": "Centre de droit privé fondamental", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cdpf.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "CDPF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2170 0514" + ], + "preferred": "0000 0001 2170 0514" + }, + "Wikidata": { + "all": [ + "Q51784215" + ], + "preferred": "Q51784215" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/035gt5s03.json b/v1.45/v1/035gt5s03.json new file mode 100644 index 000000000..002608851 --- /dev/null +++ b/v1.45/v1/035gt5s03.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/035gt5s03", + "name": "Broadcom (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Broadcom (Canada)", + "type": "Child", + "id": "https://ror.org/0137z5x77" + }, + { + "label": "Broadcom (Ireland)", + "type": "Child", + "id": "https://ror.org/01addcj30" + }, + { + "label": "Broadcom (Israel)", + "type": "Child", + "id": "https://ror.org/01jsrac29" + }, + { + "label": "Broadcom (Singapore)", + "type": "Child", + "id": "https://ror.org/03zvyfv67" + }, + { + "label": "Broadcom (Spain)", + "type": "Child", + "id": "https://ror.org/03wvnx995" + }, + { + "label": "Broadcom (United Kingdom)", + "type": "Child", + "id": "https://ror.org/05fner397" + } + ], + "addresses": [ + { + "lat": 37.33939, + "lng": -121.89496, + "state": null, + "state_code": null, + "city": "San Jose", + "geonames_city": { + "id": 5392171, + "city": "San Jose", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.broadcom.com/" + ], + "aliases": [ + "Avago Technologies" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Broadcom_Limited", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.471058.f", + "preferred": "grid.471058.f" + }, + "ISNI": { + "all": [ + "0000 0004 0453 5248" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4827416" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/0378v2g76.json b/v1.45/v1/0378v2g76.json new file mode 100644 index 000000000..39e6a1cc7 --- /dev/null +++ b/v1.45/v1/0378v2g76.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/0378v2g76", + "name": "National Research Center for Applied Cybersecurity ATHENE", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "European Center for Security and Privacy by Design", + "type": "Predecessor", + "id": "https://ror.org/043djah44" + }, + { + "label": "Center for Advanced Security Research Darmstadt", + "type": "Predecessor", + "id": "https://ror.org/006q8y354" + } + ], + "addresses": [ + { + "lat": 49.87167, + "lng": 8.65027, + "state": null, + "state_code": null, + "city": "Darmstadt", + "geonames_city": { + "id": 2938913, + "city": "Darmstadt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.athene-center.de" + ], + "aliases": [ + "ATHENE", + "ATHENE Center", + "Center for Research in Security and Privacy" + ], + "acronyms": [ + "CRISP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Nationales Forschungszentrum für angewandte Cybersicherheit ATHENE", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.500069.a", + "preferred": "grid.500069.a" + }, + "Wikidata": { + "all": [ + "Q59536537" + ], + "preferred": "Q59536537" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03820wq39.json b/v1.45/v1/03820wq39.json new file mode 100644 index 000000000..394fa6fb9 --- /dev/null +++ b/v1.45/v1/03820wq39.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03820wq39", + "name": "Laboratoire interdisciplinaire en études culturelles", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lincs.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "LinCS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/0384j8v12.json b/v1.45/v1/0384j8v12.json new file mode 100644 index 000000000..9a03f0c0a --- /dev/null +++ b/v1.45/v1/0384j8v12.json @@ -0,0 +1,202 @@ +{ + "id": "https://ror.org/0384j8v12", + "name": "University of Sydney", + "email_address": null, + "ip_addresses": [], + "established": 1850, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ARC Centre of Excellence for All-sky Astrophysics", + "type": "Child", + "id": "https://ror.org/04v9m3h35" + }, + { + "label": "Sydney Microscopy & Microanalysis", + "type": "Child", + "id": "https://ror.org/02441px27" + }, + { + "label": "Bankstown Lidcombe Hospital", + "type": "Related", + "id": "https://ror.org/00qrpt643" + }, + { + "label": "Blacktown & Mount Druitt Hospital", + "type": "Related", + "id": "https://ror.org/017bddy38" + }, + { + "label": "Canterbury Hospital", + "type": "Related", + "id": "https://ror.org/04c6fcr68" + }, + { + "label": "Centenary Institute", + "type": "Related", + "id": "https://ror.org/05gvja138" + }, + { + "label": "Children's Hospital at Westmead", + "type": "Related", + "id": "https://ror.org/05k0s5494" + }, + { + "label": "Children's Medical Research Institute", + "type": "Related", + "id": "https://ror.org/01bsaey45" + }, + { + "label": "Concord Repatriation General Hospital", + "type": "Related", + "id": "https://ror.org/04b0n4406" + }, + { + "label": "Hornsby Ku-ring-gai Hospital", + "type": "Related", + "id": "https://ror.org/016c71q24" + }, + { + "label": "King George V Memorial Hospital", + "type": "Related", + "id": "https://ror.org/0434c4478" + }, + { + "label": "Mona Vale Hospital", + "type": "Related", + "id": "https://ror.org/011tt4192" + }, + { + "label": "Nepean Hospital", + "type": "Related", + "id": "https://ror.org/03vb6df93" + }, + { + "label": "Royal Hospital for Women", + "type": "Related", + "id": "https://ror.org/021cxfs56" + }, + { + "label": "Royal North Shore Hospital", + "type": "Related", + "id": "https://ror.org/02gs2e959" + }, + { + "label": "Royal Prince Alfred Hospital", + "type": "Related", + "id": "https://ror.org/05gpvde20" + }, + { + "label": "Sydney Adventist Hospital", + "type": "Related", + "id": "https://ror.org/00q10wd18" + }, + { + "label": "Sydney College of Divinity", + "type": "Related", + "id": "https://ror.org/00p6her27" + }, + { + "label": "Sydney Dental Hospital", + "type": "Related", + "id": "https://ror.org/018wagb29" + }, + { + "label": "Sydney Hospital", + "type": "Related", + "id": "https://ror.org/0402tt118" + }, + { + "label": "Westmead Hospital", + "type": "Related", + "id": "https://ror.org/04gp5yv64" + }, + { + "label": "Westmead Institute for Medical Research", + "type": "Related", + "id": "https://ror.org/04zj3ra44" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://sydney.edu.au/" + ], + "aliases": [ + "Sydney University" + ], + "acronyms": [ + "USYD" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Sydney", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1013.3", + "preferred": "grid.1013.3" + }, + "ISNI": { + "all": [ + "0000 0004 1936 834X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q487556", + "Q55080124" + ], + "preferred": "Q487556" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/038pwz535.json b/v1.45/v1/038pwz535.json new file mode 100644 index 000000000..606b5c325 --- /dev/null +++ b/v1.45/v1/038pwz535.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/038pwz535", + "name": "NSW Department of Climate Change, Energy, the Environment and Water", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of New South Wales", + "type": "Parent", + "id": "https://ror.org/0067dvq63" + }, + { + "label": "NSW Department of Planning and Environment", + "type": "Predecessor", + "id": "https://ror.org/00067tc54" + }, + { + "label": "NSW Environment and Heritage", + "type": "Child", + "id": "https://ror.org/00ck0kh03" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nsw.gov.au/departments-and-agencies/dcceew" + ], + "aliases": [ + "New South Wales Department of Climate Change, Energy, the Environment and Water" + ], + "acronyms": [ + "DCCEEW", + "NSW DCCEEW" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Climate_Change%2C_Energy%2C_the_Environment_and_Water_%28New_South_Wales%29", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q124465960" + ], + "preferred": "Q124465960" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/0391pvr85.json b/v1.45/v1/0391pvr85.json new file mode 100644 index 000000000..04586e718 --- /dev/null +++ b/v1.45/v1/0391pvr85.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/0391pvr85", + "name": "Wildlife Conservation Society Vietnam", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Wildlife Conservation Society", + "type": "Parent", + "id": "https://ror.org/01xnsst08" + } + ], + "addresses": [ + { + "lat": 21.0245, + "lng": 105.84117, + "state": null, + "state_code": null, + "city": "Hanoi", + "geonames_city": { + "id": 1581130, + "city": "Hanoi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://programs.wcs.org/vietnam/" + ], + "aliases": [ + "WCS Vietnam" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/03b6cpn03.json b/v1.45/v1/03b6cpn03.json new file mode 100644 index 000000000..79ab15c54 --- /dev/null +++ b/v1.45/v1/03b6cpn03.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03b6cpn03", + "name": "Odesa I. I. Mechnikov National University", + "email_address": null, + "ip_addresses": [], + "established": 1865, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.48572, + "lng": 30.74383, + "state": null, + "state_code": null, + "city": "Odesa", + "geonames_city": { + "id": 698740, + "city": "Odesa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://onu.edu.ua" + ], + "aliases": [ + "Narodowy Uniwersytet Odeski im. Ilii Miecznikowa", + "Odessa I. I. Mechnikov National University", + "Odessa National University", + "Odessa University", + "Одесский национальный университет имени И. И. Мечникова", + "Одеського національного університету імені І. І. Мечникова" + ], + "acronyms": [ + "ONU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Odessa_University", + "labels": [ + { + "label": "Одеський національний університет імені І. І. Мечникова", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "GRID": { + "all": "grid.440557.7", + "preferred": "grid.440557.7" + }, + "ISNI": { + "all": [ + "0000 0001 2171 0296" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q85300" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03c363p94.json b/v1.45/v1/03c363p94.json new file mode 100644 index 000000000..8942eadf3 --- /dev/null +++ b/v1.45/v1/03c363p94.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03c363p94", + "name": "Mondes germaniques et nord-européens", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mgne.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "MGNE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780903" + ], + "preferred": "Q51780903" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03ctqg407.json b/v1.45/v1/03ctqg407.json new file mode 100644 index 000000000..082634ba1 --- /dev/null +++ b/v1.45/v1/03ctqg407.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03ctqg407", + "name": "HEC Paris in Qatar", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HEC Paris", + "type": "Parent", + "id": "https://ror.org/0423jsj19" + }, + { + "label": "Qatar Foundation", + "type": "Parent", + "id": "https://ror.org/01cawbq05" + } + ], + "addresses": [ + { + "lat": 25.28545, + "lng": 51.53096, + "state": null, + "state_code": null, + "city": "Doha", + "geonames_city": { + "id": 290030, + "city": "Doha", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.qatar.exed.hec.edu" + ], + "aliases": [ + "Ecole des Hautes Etudes Commerciales de Paris in Qatar" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Qatar", + "country_code": "QA" + }, + "external_ids": { + "GRID": { + "all": "grid.498603.0", + "preferred": "grid.498603.0" + }, + "Wikidata": { + "all": [ + "Q59535271" + ], + "preferred": "Q59535271" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03f2b4m56.json b/v1.45/v1/03f2b4m56.json new file mode 100644 index 000000000..32f3ee778 --- /dev/null +++ b/v1.45/v1/03f2b4m56.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03f2b4m56", + "name": "STRIX (Portugal)", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.strixinternational.com" + ], + "aliases": [ + "STRIX" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/03jdc5495.json b/v1.45/v1/03jdc5495.json new file mode 100644 index 000000000..3eb8032be --- /dev/null +++ b/v1.45/v1/03jdc5495.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03jdc5495", + "name": "SANT Herbarium", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Universidade de Santiago de Compostela", + "type": "Parent", + "id": "https://ror.org/030eybx10" + } + ], + "addresses": [ + { + "lat": 42.88052, + "lng": -8.54569, + "state": null, + "state_code": null, + "city": "Santiago de Compostela", + "geonames_city": { + "id": 3109642, + "city": "Santiago de Compostela", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usc.es/herbario" + ], + "aliases": [ + "Herbario SANT", + "Herbario da Universidade de Santiago de Compostela" + ], + "acronyms": [ + "SANT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q55829266" + ], + "preferred": "Q55829266" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03k7yrw82.json b/v1.45/v1/03k7yrw82.json new file mode 100644 index 000000000..16ae4009b --- /dev/null +++ b/v1.45/v1/03k7yrw82.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03k7yrw82", + "name": "Immuno-Rhumathologie moléculaire", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unistra.fr/recherche-1/vie-et-sante-1/immuno-rhumathologie-moleculaire-irm-umr-s-1109" + ], + "aliases": [], + "acronyms": [ + "IRM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Molecular Immuno-Rhumatology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784225" + ], + "preferred": "Q51784225" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03khyar38.json b/v1.45/v1/03khyar38.json new file mode 100644 index 000000000..ecd6cc887 --- /dev/null +++ b/v1.45/v1/03khyar38.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03khyar38", + "name": "École Supérieure des Arts du Cirque", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.esac.be" + ], + "aliases": [], + "acronyms": [ + "ESAC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ecole_Sup%C3%A9rieure_des_Arts_du_Cirque", + "labels": [ + { + "label": "Escuela Superior de Artes de Circo", + "iso639": "es" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "GRID": { + "all": "grid.466290.f", + "preferred": "grid.466290.f" + }, + "Wikidata": { + "all": [ + "Q5333200" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03mtd9a03.json b/v1.45/v1/03mtd9a03.json new file mode 100644 index 000000000..4ee7b740f --- /dev/null +++ b/v1.45/v1/03mtd9a03.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/03mtd9a03", + "name": "Stanford Medicine", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Lucile Packard Children's Hospital", + "type": "Child", + "id": "https://ror.org/05a25vm86" + }, + { + "label": "Stanford Cancer Institute", + "type": "Child", + "id": "https://ror.org/014qe3j22" + }, + { + "label": "Stanford Maternal and Child Health Research Institute", + "type": "Child", + "id": "https://ror.org/00yt0ea73" + }, + { + "label": "Stanford University", + "type": "Parent", + "id": "https://ror.org/00f54p054" + }, + { + "label": "Institute for Stem Cell Biology and Regenerative Medicine", + "type": "Child", + "id": "https://ror.org/02vbab064" + } + ], + "addresses": [ + { + "lat": 37.42411, + "lng": -122.16608, + "state": null, + "state_code": null, + "city": "Stanford", + "geonames_city": { + "id": 5398563, + "city": "Stanford", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://med.stanford.edu" + ], + "aliases": [ + "Stanford University Medical Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Stanford_University_Medical_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.240952.8", + "preferred": "grid.240952.8" + }, + "ISNI": { + "all": [ + "0000 0000 8734 2732" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7598810" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03n4s8180.json b/v1.45/v1/03n4s8180.json new file mode 100644 index 000000000..57bac39ba --- /dev/null +++ b/v1.45/v1/03n4s8180.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03n4s8180", + "name": "Savoirs dans l'espace anglophone : représentations, culture, histoire", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://search.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "SEARCH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784588" + ], + "preferred": "Q51784588" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03n4wh382.json b/v1.45/v1/03n4wh382.json new file mode 100644 index 000000000..7f9581098 --- /dev/null +++ b/v1.45/v1/03n4wh382.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/03n4wh382", + "name": "Al-Imam Al-Adham University College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.34058, + "lng": 44.40088, + "state": null, + "state_code": null, + "city": "Baghdad", + "geonames_city": { + "id": 98182, + "city": "Baghdad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.imamaladham.edu.iq" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "لكلية الامام الاعظم الجامع", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/03nkpbf76.json b/v1.45/v1/03nkpbf76.json new file mode 100644 index 000000000..2950c21b7 --- /dev/null +++ b/v1.45/v1/03nkpbf76.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/03nkpbf76", + "name": "Nepal Telecom", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.70169, + "lng": 85.3206, + "state": null, + "state_code": null, + "city": "Kathmandu", + "geonames_city": { + "id": 1283240, + "city": "Kathmandu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ntc.net.np" + ], + "aliases": [], + "acronyms": [ + "NTC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nepal_Telecom", + "labels": [ + { + "label": "नेपाल टेलिकम", + "iso639": "ne" + } + ], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q3338265" + ], + "preferred": "Q3338265" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03phbpb09.json b/v1.45/v1/03phbpb09.json new file mode 100644 index 000000000..edf6c2742 --- /dev/null +++ b/v1.45/v1/03phbpb09.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03phbpb09", + "name": "Théologie protestante", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://theopro.unistra.fr/recherche/laboratoire-ur-4378" + ], + "aliases": [], + "acronyms": [ + "TP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783013" + ], + "preferred": "Q51783013" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03pnv4752.json b/v1.45/v1/03pnv4752.json new file mode 100644 index 000000000..33f40d7d8 --- /dev/null +++ b/v1.45/v1/03pnv4752.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03pnv4752", + "name": "Queensland University of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ARC Centre of Excellence for the Digital Child", + "type": "Child", + "id": "https://ror.org/01h55za35" + }, + { + "label": "ARC Centre of Excellence for Plant Success in Nature and Agriculture", + "type": "Child", + "id": "https://ror.org/058xdtn86" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.qut.edu.au/" + ], + "aliases": [], + "acronyms": [ + "QUT" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Queensland_University_of_Technology", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1024.7", + "preferred": "grid.1024.7" + }, + "ISNI": { + "all": [ + "0000 0000 8915 0953" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1144750" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03qn8fb07.json b/v1.45/v1/03qn8fb07.json new file mode 100644 index 000000000..f69735663 --- /dev/null +++ b/v1.45/v1/03qn8fb07.json @@ -0,0 +1,294 @@ +{ + "id": "https://ror.org/03qn8fb07", + "name": "Commonwealth Scientific and Industrial Research Organisation", + "email_address": null, + "ip_addresses": [], + "established": 1926, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Agriculture and Food", + "type": "Child", + "id": "https://ror.org/03n17ds51" + }, + { + "label": "Animal, Food and Health Sciences", + "type": "Child", + "id": "https://ror.org/05rke7t32" + }, + { + "label": "Astronomy and Space", + "type": "Child", + "id": "https://ror.org/04ynn1b95" + }, + { + "label": "Australia Telescope National Facility", + "type": "Child", + "id": "https://ror.org/05qajvd42" + }, + { + "label": "Australian Centre for Disease Preparedness", + "type": "Child", + "id": "https://ror.org/02aseym49" + }, + { + "label": "Australian National Algae Culture Collection", + "type": "Child", + "id": "https://ror.org/01qv3ez98" + }, + { + "label": "Australian National Fish Collection", + "type": "Child", + "id": "https://ror.org/05hdbs804" + }, + { + "label": "Australian National Herbarium", + "type": "Child", + "id": "https://ror.org/02gkh1e90" + }, + { + "label": "Australian National Insect Collection", + "type": "Child", + "id": "https://ror.org/00c8nx045" + }, + { + "label": "Australian National Wildlife Collection", + "type": "Child", + "id": "https://ror.org/059mabc80" + }, + { + "label": "Australian Resources Research Centre", + "type": "Child", + "id": "https://ror.org/03rzhkf33" + }, + { + "label": "Australian Tree Seed Centre", + "type": "Child", + "id": "https://ror.org/05p3fde54" + }, + { + "label": "Australian e-Health Research Centre", + "type": "Child", + "id": "https://ror.org/04ywhbc61" + }, + { + "label": "CSIRO Health and Biosecurity", + "type": "Child", + "id": "https://ror.org/03jh4jw93" + }, + { + "label": "CSIRO Land and Water", + "type": "Child", + "id": "https://ror.org/057xz1h85" + }, + { + "label": "CSIRO Manufacturing", + "type": "Child", + "id": "https://ror.org/04sx9wp33" + }, + { + "label": "CSIRO Oceans and Atmosphere", + "type": "Child", + "id": "https://ror.org/026nh4520" + }, + { + "label": "CSIRO Publishing", + "type": "Child", + "id": "https://ror.org/051hpv692" + }, + { + "label": "CSIRO Scientific Computing", + "type": "Child", + "id": "https://ror.org/02cgy3m12" + }, + { + "label": "Centre for Marine Socioecology", + "type": "Child", + "id": "https://ror.org/02xhx4j26" + }, + { + "label": "Centre for Southern Hemisphere Oceans Research", + "type": "Child", + "id": "https://ror.org/029pamw34" + }, + { + "label": "Collaboration for Australian Weather and Climate Research", + "type": "Child", + "id": "https://ror.org/01ew37b76" + }, + { + "label": "Data61", + "type": "Child", + "id": "https://ror.org/03q397159" + }, + { + "label": "Division of Energy", + "type": "Child", + "id": "https://ror.org/02bbj5z24" + }, + { + "label": "Division of Fossil Fuels Energy", + "type": "Child", + "id": "https://ror.org/05xx7en86" + }, + { + "label": "Ecosystem Sciences", + "type": "Child", + "id": "https://ror.org/05mbqa235" + }, + { + "label": "Health Sciences and Nutrition", + "type": "Child", + "id": "https://ror.org/0152bt112" + }, + { + "label": "Information and Communication Technologies Centre", + "type": "Child", + "id": "https://ror.org/034x2fx50" + }, + { + "label": "Marine National Facility", + "type": "Child", + "id": "https://ror.org/01mae9353" + }, + { + "label": "Materials Science & Engineering", + "type": "Child", + "id": "https://ror.org/03rs0fg31" + }, + { + "label": "Mineral Resources", + "type": "Child", + "id": "https://ror.org/039b65w79" + }, + { + "label": "NCMI Information and Data Centre", + "type": "Child", + "id": "https://ror.org/041v1ea26" + }, + { + "label": "National Measurement Laboratory", + "type": "Child", + "id": "https://ror.org/031ebne21" + }, + { + "label": "Plant Industry", + "type": "Child", + "id": "https://ror.org/05jg9pj51" + }, + { + "label": "CSIRO BioFoundry", + "type": "Child", + "id": "https://ror.org/02jfhsn35" + }, + { + "label": "Centre for Australian National Biodiversity Research", + "type": "Child", + "id": "https://ror.org/00n82gt57" + }, + { + "label": "Department of Industry, Science and Resources", + "type": "Parent", + "id": "https://ror.org/021z9m619" + }, + { + "label": "Atlas of Living Australia", + "type": "Related", + "id": "https://ror.org/018n2ja79" + }, + { + "label": "Consortium for Ocean-Sea Ice Modelling in Australia", + "type": "Related", + "id": "https://ror.org/00qq77n27" + }, + { + "label": "Marine Biodiversity Hub", + "type": "Related", + "id": "https://ror.org/00jwcjd97" + }, + { + "label": "Integrated Marine Observing System", + "type": "Related", + "id": "https://ror.org/010x3gp67" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.csiro.au/" + ], + "aliases": [], + "acronyms": [ + "CSIRO" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Commonwealth_Scientific_and_Industrial_Research_Organisation", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1016.6", + "preferred": "grid.1016.6" + }, + "ISNI": { + "all": [ + "0000 0001 2173 2719" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1117048" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03r3cns79.json b/v1.45/v1/03r3cns79.json new file mode 100644 index 000000000..6d9b41353 --- /dev/null +++ b/v1.45/v1/03r3cns79.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03r3cns79", + "name": "Centre for Renewable Energy and Power Systems", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/research/institutes-and-centres/centre-for-renewable-energy-and-power-systems" + ], + "aliases": [], + "acronyms": [ + "CREPS" + ], + "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.45/v1/03r8z3t63.json b/v1.45/v1/03r8z3t63.json new file mode 100644 index 000000000..108db0d81 --- /dev/null +++ b/v1.45/v1/03r8z3t63.json @@ -0,0 +1,206 @@ +{ + "id": "https://ror.org/03r8z3t63", + "name": "UNSW Sydney", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Australian Centre for Advanced Photovoltaics", + "type": "Child", + "id": "https://ror.org/04ayaw261" + }, + { + "label": "UNSW Canberra", + "type": "Child", + "id": "https://ror.org/0125wpx05" + }, + { + "label": "Bankstown Lidcombe Hospital", + "type": "Related", + "id": "https://ror.org/00qrpt643" + }, + { + "label": "Black Dog Institute", + "type": "Related", + "id": "https://ror.org/04rfr1008" + }, + { + "label": "Children's Cancer Institute Australia", + "type": "Related", + "id": "https://ror.org/01x784220" + }, + { + "label": "Fairfield Hospital", + "type": "Related", + "id": "https://ror.org/04xx5ce35" + }, + { + "label": "The George Institute for Global Health", + "type": "Related", + "id": "https://ror.org/023331s46" + }, + { + "label": "Ingham Institute", + "type": "Related", + "id": "https://ror.org/03y4rnb63" + }, + { + "label": "Kenvale College", + "type": "Related", + "id": "https://ror.org/01gn4gb91" + }, + { + "label": "Neuroscience Research Australia", + "type": "Related", + "id": "https://ror.org/01g7s6g79" + }, + { + "label": "Prince of Wales Hospital", + "type": "Related", + "id": "https://ror.org/022arq532" + }, + { + "label": "Royal Hospital for Women", + "type": "Related", + "id": "https://ror.org/021cxfs56" + }, + { + "label": "Shellharbour Hospital", + "type": "Related", + "id": "https://ror.org/01dvjey82" + }, + { + "label": "Shoalhaven District Memorial Hospital", + "type": "Related", + "id": "https://ror.org/04p6jw654" + }, + { + "label": "St George Hospital", + "type": "Related", + "id": "https://ror.org/02pk13h45" + }, + { + "label": "Sutherland Hospital", + "type": "Related", + "id": "https://ror.org/01xcx0382" + }, + { + "label": "Sydney Children's Hospital", + "type": "Related", + "id": "https://ror.org/02tj04e91" + }, + { + "label": "Sydney Hospital", + "type": "Related", + "id": "https://ror.org/0402tt118" + }, + { + "label": "Victor Chang Cardiac Research Institute", + "type": "Related", + "id": "https://ror.org/03trvqr13" + }, + { + "label": "Wagga Wagga Base Hospital", + "type": "Related", + "id": "https://ror.org/05newpx76" + }, + { + "label": "Mindgardens Neuroscience Network", + "type": "Related", + "id": "https://ror.org/04f0vbp79" + }, + { + "label": "Consortium for Ocean-Sea Ice Modelling in Australia", + "type": "Related", + "id": "https://ror.org/00qq77n27" + }, + { + "label": "Australian Centre for Excellence in Antarctic Science", + "type": "Child", + "id": "https://ror.org/024jkkf40" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unsw.edu.au/" + ], + "aliases": [ + "University of New South Wales" + ], + "acronyms": [ + "UNSW" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_New_South_Wales", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1005.4", + "preferred": "grid.1005.4" + }, + "ISNI": { + "all": [ + "0000 0004 4902 0432" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q734764" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03rsp2g43.json b/v1.45/v1/03rsp2g43.json new file mode 100644 index 000000000..668f39b2f --- /dev/null +++ b/v1.45/v1/03rsp2g43.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/03rsp2g43", + "name": "Mehboob Charity Vision International Eye and General Hospital", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.64827, + "lng": 73.4647, + "state": null, + "state_code": null, + "city": "Mansehra", + "geonames_city": { + "id": 1170950, + "city": "Mansehra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mehboobcv.org" + ], + "aliases": [ + "Mehboob Charity Vision", + "Mehboob Charity Vision International Hospital", + "Mehboob International Eye and General Hospital" + ], + "acronyms": [ + "MCV" + ], + "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.45/v1/03ry2ah66.json b/v1.45/v1/03ry2ah66.json new file mode 100644 index 000000000..e9a388298 --- /dev/null +++ b/v1.45/v1/03ry2ah66.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03ry2ah66", + "name": "Sydney Institute of Marine Science", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Integrated Marine Observing System", + "type": "Related", + "id": "https://ror.org/010x3gp67" + } + ], + "addresses": [ + { + "lat": -33.83902, + "lng": 151.23956, + "state": null, + "state_code": null, + "city": "Mosman", + "geonames_city": { + "id": 2156813, + "city": "Mosman", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://sims.org.au/" + ], + "aliases": [], + "acronyms": [ + "SIMS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.493042.8", + "preferred": "grid.493042.8" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03t52dk35.json b/v1.45/v1/03t52dk35.json new file mode 100644 index 000000000..aa47cf1b3 --- /dev/null +++ b/v1.45/v1/03t52dk35.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/03t52dk35", + "name": "Western Sydney University", + "email_address": null, + "ip_addresses": [], + "established": 1891, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Bankstown Lidcombe Hospital", + "type": "Related", + "id": "https://ror.org/00qrpt643" + }, + { + "label": "Blacktown & Mount Druitt Hospital", + "type": "Related", + "id": "https://ror.org/017bddy38" + }, + { + "label": "Camden and Campbelltown Hospitals", + "type": "Related", + "id": "https://ror.org/04c318s33" + }, + { + "label": "Liverpool Hospital", + "type": "Related", + "id": "https://ror.org/03zzzks34" + }, + { + "label": "Sydney College of Divinity", + "type": "Related", + "id": "https://ror.org/00p6her27" + }, + { + "label": "ARC Centre of Excellence for Plant Success in Nature and Agriculture", + "type": "Child", + "id": "https://ror.org/058xdtn86" + } + ], + "addresses": [ + { + "lat": -33.59956, + "lng": 150.75142, + "state": null, + "state_code": null, + "city": "Richmond", + "geonames_city": { + "id": 2151650, + "city": "Richmond", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.westernsydney.edu.au/" + ], + "aliases": [ + "University of Western Sydney" + ], + "acronyms": [ + "UWS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Western_Sydney_University", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1029.a", + "preferred": "grid.1029.a" + }, + "ISNI": { + "all": [ + "0000 0000 9939 5719" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1141452" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03tasdg80.json b/v1.45/v1/03tasdg80.json new file mode 100644 index 000000000..c4aabd507 --- /dev/null +++ b/v1.45/v1/03tasdg80.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/03tasdg80", + "name": "Istec Business School Paris", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://istec.fr" + ], + "aliases": [ + "Institut supérieur des sciences, techniques et économie commerciales", + "Istec Business School" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/ISTEC_Business_School", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4912 6966" + ], + "preferred": "0000 0004 4912 6966" + }, + "Wikidata": { + "all": [ + "Q3152597" + ], + "preferred": "Q3152597" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03te95s40.json b/v1.45/v1/03te95s40.json new file mode 100644 index 000000000..3afc9adeb --- /dev/null +++ b/v1.45/v1/03te95s40.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03te95s40", + "name": "Groupe d'études orientales, slaves et néo-helléniques", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://geo.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "GEO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784201" + ], + "preferred": "Q51784201" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03vff5r77.json b/v1.45/v1/03vff5r77.json new file mode 100644 index 000000000..d1662238c --- /dev/null +++ b/v1.45/v1/03vff5r77.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03vff5r77", + "name": "Eastern Research Group (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.20814, + "lng": -71.53757, + "state": null, + "state_code": null, + "city": "Concord", + "geonames_city": { + "id": 5084868, + "city": "Concord", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.erg.com" + ], + "aliases": [], + "acronyms": [ + "ERG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.511210.6", + "preferred": "grid.511210.6" + }, + "ISNI": { + "all": [ + "0000 0000 9885 6042" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q107518329" + ], + "preferred": "Q107518329" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03vkake80.json b/v1.45/v1/03vkake80.json new file mode 100644 index 000000000..162f241aa --- /dev/null +++ b/v1.45/v1/03vkake80.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03vkake80", + "name": "The American College of Greece", + "email_address": null, + "ip_addresses": [], + "established": 1875, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.98376, + "lng": 23.72784, + "state": null, + "state_code": null, + "city": "Athens", + "geonames_city": { + "id": 264371, + "city": "Athens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.acg.edu" + ], + "aliases": [ + "American College of Greece" + ], + "acronyms": [ + "ACG" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/American_College_of_Greece", + "labels": [ + { + "label": "Collège américain de grèce", + "iso639": "fr" + } + ], + "country": { + "country_name": "Greece", + "country_code": "GR" + }, + "external_ids": { + "GRID": { + "all": "grid.461970.d", + "preferred": "grid.461970.d" + }, + "ISNI": { + "all": [ + "0000 0001 2216 0572" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2983711" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03vpbkt44.json b/v1.45/v1/03vpbkt44.json new file mode 100644 index 000000000..2b0ad0e43 --- /dev/null +++ b/v1.45/v1/03vpbkt44.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03vpbkt44", + "name": "Germencik Devlet Hastanesi", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.84501, + "lng": 27.83963, + "state": null, + "state_code": null, + "city": "Aydin", + "geonames_city": { + "id": 322830, + "city": "Aydin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://germencikdh.saglik.gov.tr" + ], + "aliases": [ + "Germencik State Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Turkey", + "country_code": "TR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/03wmx8367.json b/v1.45/v1/03wmx8367.json new file mode 100644 index 000000000..5712c50e9 --- /dev/null +++ b/v1.45/v1/03wmx8367.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/03wmx8367", + "name": "National Coordination Office", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Science Foundation", + "type": "Successor", + "id": "https://ror.org/021nxhr62" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "NSF National Coordination Office", + "National Science Foundation National Coordination Office" + ], + "acronyms": [ + "NCO", + "NSF NCO" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/03x57gn41.json b/v1.45/v1/03x57gn41.json new file mode 100644 index 000000000..b7e184469 --- /dev/null +++ b/v1.45/v1/03x57gn41.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/03x57gn41", + "name": "Australian Institute of Marine Science", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Department of Industry, Science and Resources", + "type": "Parent", + "id": "https://ror.org/021z9m619" + }, + { + "label": "Marine Biodiversity Hub", + "type": "Related", + "id": "https://ror.org/00jwcjd97" + }, + { + "label": "Integrated Marine Observing System", + "type": "Related", + "id": "https://ror.org/010x3gp67" + } + ], + "addresses": [ + { + "lat": -19.26639, + "lng": 146.80569, + "state": null, + "state_code": null, + "city": "Townsville", + "geonames_city": { + "id": 2146142, + "city": "Townsville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.aims.gov.au/" + ], + "aliases": [], + "acronyms": [ + "AIMS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Australian_Institute_of_Marine_Science", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1046.3", + "preferred": "grid.1046.3" + }, + "ISNI": { + "all": [ + "0000 0001 0328 1619" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4824311" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03xjwb503.json b/v1.45/v1/03xjwb503.json new file mode 100644 index 000000000..eebe28e6d --- /dev/null +++ b/v1.45/v1/03xjwb503.json @@ -0,0 +1,550 @@ +{ + "id": "https://ror.org/03xjwb503", + "name": "University of Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Child", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "type": "Child", + "id": "https://ror.org/05mfwtg94" + }, + { + "label": "CentraleSupélec", + "type": "Child", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Centre for Nanoscience and Nanotechnology", + "type": "Child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Computer Science, Integrative Biology and Complex Systems", + "type": "Child", + "id": "https://ror.org/01aqxgr98" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "Child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Institut des Cellules Souches pour le Traitement et l'Étude des Maladies Monogéniques", + "type": "Child", + "id": "https://ror.org/04g9rt435" + }, + { + "label": "Institut d’Optique Graduate School", + "type": "Child", + "id": "https://ror.org/00d0rke27" + }, + { + "label": "Laboratoire Génie Industriel", + "type": "Child", + "id": "https://ror.org/0455wwj08" + }, + { + "label": "Laboratoire de Physique des 2 Infinis Irène Joliot-Curie", + "type": "Child", + "id": "https://ror.org/03gc1p724" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "Child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "Child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Interactions, Dynamiques et Lasers", + "type": "Child", + "id": "https://ror.org/04dy97z61" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "University of Évry Val d'Essonne", + "type": "Child", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Child", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "École Nationale de la Statistique et de l'Administration Économique", + "type": "Child", + "id": "https://ror.org/01fz7mn40" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Child", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "Child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "Child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "SADAPT Science Action Développement - Activités Produits Territoires", + "type": "Child", + "id": "https://ror.org/01cmdgj85" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "Child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "Child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "Child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "Child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "Child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "Child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "Child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "Child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "Centre de Recherche en Design", + "type": "Child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "Child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "Child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "Child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "Child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "Child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "Child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "type": "Child", + "id": "https://ror.org/05r0mw364" + }, + { + "label": "Centre d’histoire culturelle des sociétés contemporaines", + "type": "Child", + "id": "https://ror.org/0087n5v55" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "type": "Child", + "id": "https://ror.org/023bv6t84" + }, + { + "label": "Institut de recherches arctiques Jean Malaurie", + "type": "Child", + "id": "https://ror.org/008hxwy89" + }, + { + "label": "Laboratoire Anthropologie, Archéologie, Biologie", + "type": "Child", + "id": "https://ror.org/023b2c435" + }, + { + "label": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "type": "Child", + "id": "https://ror.org/01jdptv64" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "Child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "Child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "Child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "Child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Genome Integrity, RNA and Cancer", + "type": "Child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "Child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "Child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "Child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "Child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "Child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "Child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "Child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "Child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Complexité, Innovation et Activités Motrices et Sportives", + "type": "Child", + "id": "https://ror.org/00k3ph542" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "Child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "Child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratory of Theoretical Physics and Statistical Models", + "type": "Child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "Child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "Child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "Child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "Child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/035gq6r08" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.universite-paris-saclay.fr/fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Paris-Saclay", + "labels": [ + { + "label": "Paris-Saclayko Unibertsitatea", + "iso639": "eu" + }, + { + "label": "Universitat París-Saclay", + "iso639": "ca" + }, + { + "label": "Université Paris-Saclay", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.460789.4", + "preferred": "grid.460789.4" + }, + "ISNI": { + "all": [ + "0000 0004 4910 6535" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q109409389" + ], + "preferred": "Q109409389" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03xrrn515.json b/v1.45/v1/03xrrn515.json new file mode 100644 index 000000000..616571db6 --- /dev/null +++ b/v1.45/v1/03xrrn515.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03xrrn515", + "name": "Linguistique, langues, parole", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lilpa.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "LiLPa" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51778786" + ], + "preferred": "Q51778786" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03yvs0f43.json b/v1.45/v1/03yvs0f43.json new file mode 100644 index 000000000..61b85443b --- /dev/null +++ b/v1.45/v1/03yvs0f43.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03yvs0f43", + "name": "Integrated Device Technology (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "GigPeak (United States)", + "type": "Child", + "id": "https://ror.org/023btq632" + }, + { + "label": "Integrated Device Technology (South Korea)", + "type": "Child", + "id": "https://ror.org/02ndgyq34" + }, + { + "label": "Renesas Electronics (Japan)", + "type": "Parent", + "id": "https://ror.org/058wb7691" + }, + { + "label": "Renesas Electronics (Japan)", + "type": "Successor", + "id": "https://ror.org/058wb7691" + } + ], + "addresses": [ + { + "lat": 37.33939, + "lng": -121.89496, + "state": null, + "state_code": null, + "city": "San Jose", + "geonames_city": { + "id": 5392171, + "city": "San Jose", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.idt.com/" + ], + "aliases": [], + "acronyms": [ + "IDT" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Integrated_Device_Technology", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.471100.3", + "preferred": "grid.471100.3" + }, + "ISNI": { + "all": [ + "0000 0004 6358 7515" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1665429" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/03zek0r74.json b/v1.45/v1/03zek0r74.json new file mode 100644 index 000000000..70c225fb9 --- /dev/null +++ b/v1.45/v1/03zek0r74.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/03zek0r74", + "name": "Institut Agro Dijon", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Agroecology", + "type": "Child", + "id": "https://ror.org/00mkad321" + }, + { + "label": "Biogéosciences", + "type": "Child", + "id": "https://ror.org/04mzqjs78" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "Child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Maison des Sciences de l’Homme de Dijon", + "type": "Child", + "id": "https://ror.org/04ejcwb57" + }, + { + "label": "Procédés Alimentaires et Microbiologiques", + "type": "Child", + "id": "https://ror.org/00zgas264" + } + ], + "addresses": [ + { + "lat": 47.31667, + "lng": 5.01667, + "state": null, + "state_code": null, + "city": "Dijon", + "geonames_city": { + "id": 3021372, + "city": "Dijon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://institut-agro-dijon.fr" + ], + "aliases": [ + "AgroSup Dijon", + "Institut national Supérieur des Sciences Agronomiques, de l'Alimentation et de l'Environnement" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.420114.2", + "preferred": "grid.420114.2" + }, + "ISNI": { + "all": [ + "0000 0001 2299 7292" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q8077943" + ], + "preferred": "Q8077943" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/041ddxq18.json b/v1.45/v1/041ddxq18.json new file mode 100644 index 000000000..3f654901d --- /dev/null +++ b/v1.45/v1/041ddxq18.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/041ddxq18", + "name": "University of Doha for Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 25.28545, + "lng": 51.53096, + "state": null, + "state_code": null, + "city": "Doha", + "geonames_city": { + "id": 290030, + "city": "Doha", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.udst.edu.qa" + ], + "aliases": [ + "College of the North Atlantic Qatar" + ], + "acronyms": [ + "CNA-Q", + "UDST" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Qatar", + "country_code": "QA" + }, + "external_ids": { + "GRID": { + "all": "grid.452189.3", + "preferred": "grid.452189.3" + }, + "ISNI": { + "all": [ + "0000 0000 9023 6033" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30296037" + ], + "preferred": "Q30296037" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/041njsz97.json b/v1.45/v1/041njsz97.json new file mode 100644 index 000000000..4af4f23a5 --- /dev/null +++ b/v1.45/v1/041njsz97.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/041njsz97", + "name": "ARC Centre for Forest Value", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Australian Research Council", + "type": "Parent", + "id": "https://ror.org/05mmh0f86" + }, + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/arc-forest-value" + ], + "aliases": [ + "Australian Research Council Centre for Forest Value" + ], + "acronyms": [ + "ARC CFV", + "CFV" + ], + "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.45/v1/041skvj95.json b/v1.45/v1/041skvj95.json new file mode 100644 index 000000000..4e0e38a99 --- /dev/null +++ b/v1.45/v1/041skvj95.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/041skvj95", + "name": "Instituto Superior de Ciências Policiais", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -10, + "lng": -55, + "state": null, + "state_code": null, + "city": "Brazil", + "geonames_city": { + "id": 3469034, + "city": "Brazil", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dec.pm.df.gov.br" + ], + "aliases": [ + "Departamento de Educação e Cultura Instituto Superior de Ciências Policiais", + "Departamento de Educação e Cultura/Instituto Superior de Ciências Policiais (ISCP)", + "Higher Institute of Police Sciences", + "Instituto Superior de Ciências Policiais - ISCP" + ], + "acronyms": [ + "DEC-ISCP", + "ISCP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/0423jsj19.json b/v1.45/v1/0423jsj19.json new file mode 100644 index 000000000..b81839360 --- /dev/null +++ b/v1.45/v1/0423jsj19.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/0423jsj19", + "name": "HEC Paris", + "email_address": null, + "ip_addresses": [], + "established": 1881, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Groupement de Recherche et d'Études en Gestion d’HEC", + "type": "Child", + "id": "https://ror.org/01y766z47" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "HEC Paris in Qatar", + "type": "Child", + "id": "https://ror.org/03ctqg407" + }, + { + "label": "Fondation HEC", + "type": "Child", + "id": "https://ror.org/055jvqb21" + } + ], + "addresses": [ + { + "lat": 48.75909, + "lng": 2.16966, + "state": null, + "state_code": null, + "city": "Jouy-en-Josas", + "geonames_city": { + "id": 3012165, + "city": "Jouy-en-Josas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hec.edu" + ], + "aliases": [ + "Hautes Études Commerciales de Paris", + "École des Hautes Études Commerciales de Paris" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/HEC_Paris", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.434184.e", + "preferred": "grid.434184.e" + }, + "ISNI": { + "all": [ + "0000 0004 0641 8416" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273535" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/043djah44.json b/v1.45/v1/043djah44.json new file mode 100644 index 000000000..0de65e60c --- /dev/null +++ b/v1.45/v1/043djah44.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/043djah44", + "name": "European Center for Security and Privacy by Design", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Research Center for Applied Cybersecurity ATHENE", + "type": "Successor", + "id": "https://ror.org/0378v2g76" + } + ], + "addresses": [ + { + "lat": 49.87167, + "lng": 8.65027, + "state": null, + "state_code": null, + "city": "Darmstadt", + "geonames_city": { + "id": 2938913, + "city": "Darmstadt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "EC SPRIDE" + ], + "status": "inactive", + "wikipedia_url": "https://de.wikipedia.org/wiki/European_Center_for_Security_and_Privacy_by_Design", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q1376403" + ], + "preferred": "Q1376403" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/045zbxg02.json b/v1.45/v1/045zbxg02.json new file mode 100644 index 000000000..0957dea36 --- /dev/null +++ b/v1.45/v1/045zbxg02.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/045zbxg02", + "name": "ECSI Fibrotools (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.99403, + "lng": -78.89862, + "state": null, + "state_code": null, + "city": "Durham", + "geonames_city": { + "id": 4464368, + "city": "Durham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fibrotools.com/" + ], + "aliases": [ + "ElectroChemical Systems" + ], + "acronyms": [ + "ECSI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "ECSI Fibrotools", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.504444.5", + "preferred": "grid.504444.5" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/047272k79.json b/v1.45/v1/047272k79.json new file mode 100644 index 000000000..c6c37a2a1 --- /dev/null +++ b/v1.45/v1/047272k79.json @@ -0,0 +1,139 @@ +{ + "id": "https://ror.org/047272k79", + "name": "University of Western Australia", + "email_address": null, + "ip_addresses": [], + "established": 1911, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "International Centre for Radio Astronomy Research", + "type": "Child", + "id": "https://ror.org/05sd1pp77" + }, + { + "label": "Fremantle Hospital", + "type": "Related", + "id": "https://ror.org/03yxgmm62" + }, + { + "label": "Lions Eye Institute", + "type": "Related", + "id": "https://ror.org/006vyay97" + }, + { + "label": "Royal Perth Hospital", + "type": "Related", + "id": "https://ror.org/00zc2xc51" + }, + { + "label": "Sir Charles Gairdner Hospital", + "type": "Related", + "id": "https://ror.org/01hhqsm59" + }, + { + "label": "Women and Infants Research Foundation", + "type": "Related", + "id": "https://ror.org/03j1avm36" + }, + { + "label": "Digitisation Centre of Western Australia", + "type": "Related", + "id": "https://ror.org/00jjz9s23" + }, + { + "label": "Victor Chang Cardiac Research Institute", + "type": "Related", + "id": "https://ror.org/03trvqr13" + }, + { + "label": "Marine Biodiversity Hub", + "type": "Related", + "id": "https://ror.org/00jwcjd97" + }, + { + "label": "Australian Centre for Excellence in Antarctic Science", + "type": "Related", + "id": "https://ror.org/024jkkf40" + } + ], + "addresses": [ + { + "lat": -31.95224, + "lng": 115.8614, + "state": null, + "state_code": null, + "city": "Perth", + "geonames_city": { + "id": 2063523, + "city": "Perth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uwa.edu.au/" + ], + "aliases": [], + "acronyms": [ + "UWA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Western_Australia", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1012.2", + "preferred": "grid.1012.2" + }, + "ISNI": { + "all": [ + "0000 0004 1936 7910" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1517021" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/048pkqn85.json b/v1.45/v1/048pkqn85.json new file mode 100644 index 000000000..89ec6662e --- /dev/null +++ b/v1.45/v1/048pkqn85.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/048pkqn85", + "name": "Microwave Medical Systems (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.48509, + "lng": -71.43284, + "state": null, + "state_code": null, + "city": "Acton", + "geonames_city": { + "id": 4928703, + "city": "Acton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "MMS" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.470887.4", + "preferred": "grid.470887.4" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/048vrgr14.json b/v1.45/v1/048vrgr14.json new file mode 100644 index 000000000..bb7227a18 --- /dev/null +++ b/v1.45/v1/048vrgr14.json @@ -0,0 +1,131 @@ +{ + "id": "https://ror.org/048vrgr14", + "name": "Becton Dickinson (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1897, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Becton Dickinson (Canada)", + "type": "Child", + "id": "https://ror.org/031dsww89" + }, + { + "label": "Becton Dickinson (France)", + "type": "Child", + "id": "https://ror.org/016nn9d26" + }, + { + "label": "Becton Dickinson (Germany)", + "type": "Child", + "id": "https://ror.org/02kzqwr97" + }, + { + "label": "Becton Dickinson (India)", + "type": "Child", + "id": "https://ror.org/0339vxy90" + }, + { + "label": "Becton Dickinson (Ireland)", + "type": "Child", + "id": "https://ror.org/02pdacs91" + }, + { + "label": "Becton Dickinson (Netherlands)", + "type": "Child", + "id": "https://ror.org/03qdj6986" + }, + { + "label": "Becton Dickinson (United Kingdom)", + "type": "Child", + "id": "https://ror.org/05dwa3c44" + }, + { + "label": "BD Biosciences (United States)", + "type": "Child", + "id": "https://ror.org/02h9td068" + } + ], + "addresses": [ + { + "lat": 41.01676, + "lng": -74.2057, + "state": null, + "state_code": null, + "city": "Franklin Lakes", + "geonames_city": { + "id": 5098242, + "city": "Franklin Lakes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://bd.com/" + ], + "aliases": [ + "Becton, Dickinson and Company" + ], + "acronyms": [ + "BD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Becton_Dickinson", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.418255.f", + "preferred": "grid.418255.f" + }, + "ISNI": { + "all": [ + "0000 0004 0402 3971" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q813780" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/048zcaj52.json b/v1.45/v1/048zcaj52.json new file mode 100644 index 000000000..406914c83 --- /dev/null +++ b/v1.45/v1/048zcaj52.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/048zcaj52", + "name": "Charles Darwin University", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre for Remote Health", + "type": "Related", + "id": "https://ror.org/04tn8zp39" + }, + { + "label": "Royal Darwin Hospital", + "type": "Related", + "id": "https://ror.org/04jq72f57" + }, + { + "label": "Marine Biodiversity Hub", + "type": "Related", + "id": "https://ror.org/00jwcjd97" + } + ], + "addresses": [ + { + "lat": -12.46113, + "lng": 130.84185, + "state": null, + "state_code": null, + "city": "Darwin", + "geonames_city": { + "id": 2073124, + "city": "Darwin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cdu.edu.au/" + ], + "aliases": [], + "acronyms": [ + "CDU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Charles_Darwin_University", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1043.6", + "preferred": "grid.1043.6" + }, + "ISNI": { + "all": [ + "0000 0001 2157 559X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1064071" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/049513r96.json b/v1.45/v1/049513r96.json new file mode 100644 index 000000000..1c44674c8 --- /dev/null +++ b/v1.45/v1/049513r96.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/049513r96", + "name": "Arts, civilisation et histoire de l'Europe", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "École Nationale Supérieure d'Architecture de Strasbourg", + "type": "Parent", + "id": "https://ror.org/02btqjz37" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://arche.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "ARCHE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783746" + ], + "preferred": "Q51783746" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04dkp1p98.json b/v1.45/v1/04dkp1p98.json new file mode 100644 index 000000000..c6210e439 --- /dev/null +++ b/v1.45/v1/04dkp1p98.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04dkp1p98", + "name": "Bureau of Meteorology", + "email_address": null, + "ip_addresses": [], + "established": 1906, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Collaboration for Australian Weather and Climate Research", + "type": "Child", + "id": "https://ror.org/01ew37b76" + }, + { + "label": "Consortium for Ocean-Sea Ice Modelling in Australia", + "type": "Related", + "id": "https://ror.org/00qq77n27" + }, + { + "label": "Integrated Marine Observing System", + "type": "Related", + "id": "https://ror.org/010x3gp67" + } + ], + "addresses": [ + { + "lat": -37.814, + "lng": 144.96332, + "state": null, + "state_code": null, + "city": "Melbourne", + "geonames_city": { + "id": 2158177, + "city": "Melbourne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.bom.gov.au/" + ], + "aliases": [ + "Australia Bureau of Meteorology", + "Australian Bureau of Meteorology" + ], + "acronyms": [ + "BOM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bureau_of_Meteorology", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1527.1", + "preferred": "grid.1527.1" + }, + "ISNI": { + "all": [ + "0000 0001 1086 859X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q923429" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04ej9se46.json b/v1.45/v1/04ej9se46.json new file mode 100644 index 000000000..0a715e5c1 --- /dev/null +++ b/v1.45/v1/04ej9se46.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/04ej9se46", + "name": "Magnum Semiconductor (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.42827, + "lng": -121.90662, + "state": null, + "state_code": null, + "city": "Milpitas", + "geonames_city": { + "id": 5373327, + "city": "Milpitas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [ + { + "label": "Magnum Semiconductor", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/04ejcwb57.json b/v1.45/v1/04ejcwb57.json new file mode 100644 index 000000000..b4daab547 --- /dev/null +++ b/v1.45/v1/04ejcwb57.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/04ejcwb57", + "name": "Maison des Sciences de l’Homme de Dijon", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Agro Dijon", + "type": "Parent", + "id": "https://ror.org/03zek0r74" + }, + { + "label": "Centre Bourgogne-Franche-Comté", + "type": "Parent", + "id": "https://ror.org/002jby155" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "University of Burgundy", + "type": "Parent", + "id": "https://ror.org/03k1bsr36" + } + ], + "addresses": [ + { + "lat": 47.31667, + "lng": 5.01667, + "state": null, + "state_code": null, + "city": "Dijon", + "geonames_city": { + "id": 3021372, + "city": "Dijon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://msh-dijon.u-bourgogne.fr/" + ], + "aliases": [ + "MSH de Dijon" + ], + "acronyms": [ + "MSH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463995.4", + "preferred": "grid.463995.4" + }, + "ISNI": { + "all": [ + "0000 0001 2168 4745" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04ekebw10.json b/v1.45/v1/04ekebw10.json new file mode 100644 index 000000000..07d2c67e3 --- /dev/null +++ b/v1.45/v1/04ekebw10.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/04ekebw10", + "name": "Akre University for Applied Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.76038, + "lng": 43.89428, + "state": null, + "state_code": null, + "city": "Akre", + "geonames_city": { + "id": 98822, + "city": "Akre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.auas.edu.krd" + ], + "aliases": [ + "جامعة ئاكرى للعلوم التطبيقية" + ], + "acronyms": [ + "AUAS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/04ge02x20.json b/v1.45/v1/04ge02x20.json new file mode 100644 index 000000000..805b3e4db --- /dev/null +++ b/v1.45/v1/04ge02x20.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04ge02x20", + "name": "Geoscience Australia", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Department of Industry, Science and Resources", + "type": "Parent", + "id": "https://ror.org/021z9m619" + }, + { + "label": "Marine Biodiversity Hub", + "type": "Related", + "id": "https://ror.org/00jwcjd97" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ga.gov.au/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Geoscience_Australia", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.452453.1", + "preferred": "grid.452453.1" + }, + "ISNI": { + "all": [ + "0000 0004 0606 1752" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1325925" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04gjc3902.json b/v1.45/v1/04gjc3902.json new file mode 100644 index 000000000..2d1abe34e --- /dev/null +++ b/v1.45/v1/04gjc3902.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04gjc3902", + "name": "Associação Catarinense de Bibliotecários", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": -28.21171, + "lng": -49.1632, + "state": null, + "state_code": null, + "city": "São José", + "geonames_city": { + "id": 3448742, + "city": "São José", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.acbsc.org.br" + ], + "aliases": [], + "acronyms": [ + "ACB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 1957 3819" + ], + "preferred": "0000 0001 1957 3819" + }, + "Wikidata": { + "all": [ + "Q124035331" + ], + "preferred": "Q124035331" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04hy0x592.json b/v1.45/v1/04hy0x592.json new file mode 100644 index 000000000..ff96e42c2 --- /dev/null +++ b/v1.45/v1/04hy0x592.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/04hy0x592", + "name": "Woolcock Institute of Medical Research", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Royal Prince Alfred Hospital", + "type": "Parent", + "id": "https://ror.org/05gpvde20" + }, + { + "label": "Macquarie University", + "type": "Parent", + "id": "https://ror.org/01sf06y89" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.woolcock.org.au" + ], + "aliases": [ + "Institute of Respiratory Medicine", + "Woolcock Institute" + ], + "acronyms": [ + "WIMR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Woolcock_Institute_of_Medical_Research", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.417229.b", + "preferred": "grid.417229.b" + }, + "ISNI": { + "all": [ + "0000 0000 8945 8472" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q28183709" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04jqtny57.json b/v1.45/v1/04jqtny57.json new file mode 100644 index 000000000..d50ce2bf4 --- /dev/null +++ b/v1.45/v1/04jqtny57.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04jqtny57", + "name": "ARC Research Hub for Sustainable Onshore Lobster Aquaculture", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + }, + { + "label": "Australian Research Council", + "type": "Parent", + "id": "https://ror.org/05mmh0f86" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://onshorelobsteraquaculture.com.au" + ], + "aliases": [ + "Australian Research Council Research Hub for Sustainable Onshore Lobster Aquaculture" + ], + "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.45/v1/04m098c22.json b/v1.45/v1/04m098c22.json new file mode 100644 index 000000000..c0ce8f1fb --- /dev/null +++ b/v1.45/v1/04m098c22.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04m098c22", + "name": "Species 2000", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.45625, + "lng": -0.97113, + "state": null, + "state_code": null, + "city": "Reading", + "geonames_city": { + "id": 2639577, + "city": "Reading", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://species2000.org" + ], + "aliases": [ + "Catalogue of Life" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Species_2000", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.438063.a", + "preferred": "grid.438063.a" + }, + "ISNI": { + "all": [ + "0000 0001 0496 8228" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04mf3mq37.json b/v1.45/v1/04mf3mq37.json new file mode 100644 index 000000000..839d11d68 --- /dev/null +++ b/v1.45/v1/04mf3mq37.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04mf3mq37", + "name": "Museums Victoria", + "email_address": null, + "ip_addresses": [], + "established": 1854, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Marine Biodiversity Hub", + "type": "Related", + "id": "https://ror.org/00jwcjd97" + } + ], + "addresses": [ + { + "lat": -37.814, + "lng": 144.96332, + "state": null, + "state_code": null, + "city": "Melbourne", + "geonames_city": { + "id": 2158177, + "city": "Melbourne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://museumsvictoria.com.au/" + ], + "aliases": [ + "Museum Victoria" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Museums_Victoria", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.436717.0", + "preferred": "grid.436717.0" + }, + "ISNI": { + "all": [ + "0000 0004 0500 6540" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q500890" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04mg3nk07.json b/v1.45/v1/04mg3nk07.json new file mode 100644 index 000000000..94d8c4b17 --- /dev/null +++ b/v1.45/v1/04mg3nk07.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/04mg3nk07", + "name": "San Diego Supercomputer Center", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of California, San Diego", + "type": "Parent", + "id": "https://ror.org/0168r3w48" + }, + { + "label": "OpenTopography", + "type": "Child", + "id": "https://ror.org/01m10e879" + } + ], + "addresses": [ + { + "lat": 32.71571, + "lng": -117.16472, + "state": null, + "state_code": null, + "city": "San Diego", + "geonames_city": { + "id": 5391811, + "city": "San Diego", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sdsc.edu/" + ], + "aliases": [], + "acronyms": [ + "SDSC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/San_Diego_Supercomputer_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.419957.7", + "preferred": "grid.419957.7" + }, + "Wikidata": { + "all": [ + "Q3947008" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04myefg51.json b/v1.45/v1/04myefg51.json new file mode 100644 index 000000000..5247900aa --- /dev/null +++ b/v1.45/v1/04myefg51.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/04myefg51", + "name": "Southern Skies Network", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/southern-skies-network" + ], + "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.45/v1/04mzqjs78.json b/v1.45/v1/04mzqjs78.json new file mode 100644 index 000000000..069e41fec --- /dev/null +++ b/v1.45/v1/04mzqjs78.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/04mzqjs78", + "name": "Biogéosciences", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Agro Dijon", + "type": "Parent", + "id": "https://ror.org/03zek0r74" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "University of Burgundy", + "type": "Parent", + "id": "https://ror.org/03k1bsr36" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + } + ], + "addresses": [ + { + "lat": 47.31667, + "lng": 5.01667, + "state": null, + "state_code": null, + "city": "Dijon", + "geonames_city": { + "id": 3021372, + "city": "Dijon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://biogeosciences.u-bourgogne.fr/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462242.4", + "preferred": "grid.462242.4" + }, + "ISNI": { + "all": [ + "0000 0004 0417 3208" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04pwapm65.json b/v1.45/v1/04pwapm65.json new file mode 100644 index 000000000..dbecef6a0 --- /dev/null +++ b/v1.45/v1/04pwapm65.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04pwapm65", + "name": "Subjectivité, lien social et modernité", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sulisom.unistra.fr" + ], + "aliases": [ + "Sulisom" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783397" + ], + "preferred": "Q51783397" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04q6hh787.json b/v1.45/v1/04q6hh787.json new file mode 100644 index 000000000..68466f43a --- /dev/null +++ b/v1.45/v1/04q6hh787.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/04q6hh787", + "name": "Escuela Nacional de Archivística", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ena.edu.pe" + ], + "aliases": [], + "acronyms": [ + "ENA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/04s1nv328.json b/v1.45/v1/04s1nv328.json new file mode 100644 index 000000000..aa96e35df --- /dev/null +++ b/v1.45/v1/04s1nv328.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/04s1nv328", + "name": "University of Canberra", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Calvary Hospital", + "type": "Related", + "id": "https://ror.org/041c7s516" + }, + { + "label": "Canberra Hospital", + "type": "Related", + "id": "https://ror.org/04h7nbn38" + }, + { + "label": "Australian Centre for Excellence in Antarctic Science", + "type": "Related", + "id": "https://ror.org/024jkkf40" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.canberra.edu.au/" + ], + "aliases": [], + "acronyms": [ + "UC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Canberra", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1039.b", + "preferred": "grid.1039.b" + }, + "ISNI": { + "all": [ + "0000 0004 0385 7472" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1640648" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04tfzc498.json b/v1.45/v1/04tfzc498.json new file mode 100644 index 000000000..6987ec9d9 --- /dev/null +++ b/v1.45/v1/04tfzc498.json @@ -0,0 +1,312 @@ +{ + "id": "https://ror.org/04tfzc498", + "name": "Istituti di Ricovero e Cura a Carattere Scientifico", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Bambino Gesù Children's Hospital", + "type": "Child", + "id": "https://ror.org/02sy42d13" + }, + { + "label": "Candiolo Cancer Institute", + "type": "Child", + "id": "https://ror.org/04wadq306" + }, + { + "label": "Casa Sollievo della Sofferenza", + "type": "Child", + "id": "https://ror.org/00md77g41" + }, + { + "label": "Centro Cardiologico Monzino", + "type": "Child", + "id": "https://ror.org/006pq9r08" + }, + { + "label": "Centro Neurolesi Bonino Pulejo", + "type": "Child", + "id": "https://ror.org/05tzq2c96" + }, + { + "label": "Centro San Giovanni di Dio Fatebenefratelli", + "type": "Child", + "id": "https://ror.org/02davtb12" + }, + { + "label": "Centro di Riferimento Oncologico", + "type": "Child", + "id": "https://ror.org/03ks1vk59" + }, + { + "label": "Centro di Riferimento Oncologico della Basilicata", + "type": "Child", + "id": "https://ror.org/00n6jcj93" + }, + { + "label": "European Institute of Oncology", + "type": "Child", + "id": "https://ror.org/02vr0ne26" + }, + { + "label": "Fatebenefratelli Hospital", + "type": "Child", + "id": "https://ror.org/01x9zv505" + }, + { + "label": "Fondazione G.B. Bietti", + "type": "Child", + "id": "https://ror.org/012khpt30" + }, + { + "label": "Fondazione IRCCS Ca' Granda Ospedale Maggiore Policlinico", + "type": "Child", + "id": "https://ror.org/016zn0y21" + }, + { + "label": "Fondazione IRCCS Istituto Nazionale dei Tumori", + "type": "Child", + "id": "https://ror.org/05dwj7825" + }, + { + "label": "Fondazione Istituto Neurologico Nazionale Casimiro Mondino", + "type": "Child", + "id": "https://ror.org/009h0v784" + }, + { + "label": "Fondazione Salvatore Maugeri", + "type": "Child", + "id": "https://ror.org/01e8tvg28" + }, + { + "label": "Fondazione Santa Lucia", + "type": "Child", + "id": "https://ror.org/05rcxtd95" + }, + { + "label": "Fondazione Stella Maris", + "type": "Child", + "id": "https://ror.org/02w8ez808" + }, + { + "label": "Gastroenterology Hospital \"Saverio de Bellis\"", + "type": "Child", + "id": "https://ror.org/05pfy5w65" + }, + { + "label": "IRCCS Eugenio Medea", + "type": "Child", + "id": "https://ror.org/05ynr3m75" + }, + { + "label": "IRCCS Humanitas Research Hospital", + "type": "Child", + "id": "https://ror.org/05d538656" + }, + { + "label": "IRCCS Materno Infantile Burlo Garofolo", + "type": "Child", + "id": "https://ror.org/03t1jzs40" + }, + { + "label": "IRCCS Ospedale San Raffaele", + "type": "Child", + "id": "https://ror.org/039zxt351" + }, + { + "label": "IRCCS Policlinico San Donato", + "type": "Child", + "id": "https://ror.org/01220jp31" + }, + { + "label": "Istituti Fisioterapici Ospitalieri", + "type": "Child", + "id": "https://ror.org/04j6jb515" + }, + { + "label": "IRCCS Istituto Auxologico Italiano", + "type": "Child", + "id": "https://ror.org/033qpss18" + }, + { + "label": "Istituto Dermopatico dell'Immacolata", + "type": "Child", + "id": "https://ror.org/02b5mfy68" + }, + { + "label": "Istituto Giannina Gaslini", + "type": "Child", + "id": "https://ror.org/0424g0k78" + }, + { + "label": "Istituto Nazionale Tumori IRCCS \"Fondazione G. Pascale\"", + "type": "Child", + "id": "https://ror.org/0506y2b23" + }, + { + "label": "Istituto Nazionale per le Malattie Infettive Lazzaro Spallanzani", + "type": "Child", + "id": "https://ror.org/00kv87w35" + }, + { + "label": "Fondazione IRCCS Istituto Neurologico Carlo Besta", + "type": "Child", + "id": "https://ror.org/05rbx8m02" + }, + { + "label": "Istituto Neurologico Mediterraneo", + "type": "Child", + "id": "https://ror.org/00cpb6264" + }, + { + "label": "Istituto Oncologico Veneto", + "type": "Child", + "id": "https://ror.org/01xcjmy57" + }, + { + "label": "Istituto Ortopedico Galeazzi", + "type": "Child", + "id": "https://ror.org/01vyrje42" + }, + { + "label": "Istituto Ortopedico Rizzoli", + "type": "Child", + "id": "https://ror.org/02ycyys66" + }, + { + "label": "Istituto Scientifico Romagnolo per lo Studio e la Cura dei Tumori", + "type": "Child", + "id": "https://ror.org/013wkc921" + }, + { + "label": "Istituto Tumori Bari", + "type": "Child", + "id": "https://ror.org/03jxkz251" + }, + { + "label": "Istituto delle Scienze Neurologiche di Bologna", + "type": "Child", + "id": "https://ror.org/02mgzgr95" + }, + { + "label": "Mario Negri Institute for Pharmacological Research", + "type": "Child", + "id": "https://ror.org/05aspc753" + }, + { + "label": "MultiMedica", + "type": "Child", + "id": "https://ror.org/01h8ey223" + }, + { + "label": "Oasi Maria SS", + "type": "Child", + "id": "https://ror.org/00dqmaq38" + }, + { + "label": "Ospedale Maggiore Carlo Alberto Pizzardi", + "type": "Child", + "id": "https://ror.org/010tmdc88" + }, + { + "label": "Ospedale Policlinico San Martino", + "type": "Child", + "id": "https://ror.org/04d7es448" + }, + { + "label": "San Camillo IRCCS di Venezia", + "type": "Child", + "id": "https://ror.org/03njebb69" + }, + { + "label": "Policlinico San Matteo Fondazione", + "type": "Child", + "id": "https://ror.org/05w1q1c88" + }, + { + "label": "Istituto Nazionale di Riposo e Cura per Anziani", + "type": "Child", + "id": "https://ror.org/057aq1y25" + }, + { + "label": "Instituto Nazionale Tumori Regina Elena", + "type": "Child", + "id": "https://ror.org/04mgfev69" + }, + { + "label": "Istituto di Ricovero e Cura a Carattere Scientifico San Raffaele", + "type": "Child", + "id": "https://ror.org/006x48140" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.salute.gov.it/portale/temi/p2_6.jsp?lingua=italiano&id=794&area=Ricerca%20sanitaria&menu=ssn" + ], + "aliases": [], + "acronyms": [ + "IRCCS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.414603.4", + "preferred": "grid.414603.4" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04tmf7v73.json b/v1.45/v1/04tmf7v73.json new file mode 100644 index 000000000..2683c7444 --- /dev/null +++ b/v1.45/v1/04tmf7v73.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/04tmf7v73", + "name": "G.T.N. Arts College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.36896, + "lng": 77.98036, + "state": null, + "state_code": null, + "city": "Dindigul", + "geonames_city": { + "id": 1272543, + "city": "Dindigul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gtnartscollege.ac.in" + ], + "aliases": [ + "G.T.N. Arts College (Autonomous)" + ], + "acronyms": [ + "GTN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/04x97hf88.json b/v1.45/v1/04x97hf88.json new file mode 100644 index 000000000..c2a801091 --- /dev/null +++ b/v1.45/v1/04x97hf88.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/04x97hf88", + "name": "Humans and management in society", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.em-strasbourg.com/fr/recherche/laboratoires-de-recherche/laboratoire-humanis" + ], + "aliases": [ + "HuManiS" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Hommes et management en société", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2302 1128" + ], + "preferred": "0000 0001 2302 1128" + }, + "Wikidata": { + "all": [ + "Q51785470" + ], + "preferred": "Q51785470" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04xeap310.json b/v1.45/v1/04xeap310.json new file mode 100644 index 000000000..88d24369d --- /dev/null +++ b/v1.45/v1/04xeap310.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04xeap310", + "name": "UIN SATU Tulungagung", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -8.0657, + "lng": 111.9025, + "state": null, + "state_code": null, + "city": "Tulungagung", + "geonames_city": { + "id": 1623080, + "city": "Tulungagung", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uinsatu.ac.id" + ], + "aliases": [ + "IAIN Tulungagung", + "Institut Agama Islam Negeri Tulungagung", + "Sayyid Ali Rahmatullah State Islamic University Tulungagung", + "UIN Sayyid Ali Rahmatullah Tulungagung", + "Universitas Islam Negeri Sayyid Ali Rahmatullah Tulungagung" + ], + "acronyms": [ + "UIN SATU" + ], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Universitas_Islam_Negeri_Sayyid_Ali_Rahmatullah_Tulungagung", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q19726445" + ], + "preferred": "Q19726445" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/04yvxvx65.json b/v1.45/v1/04yvxvx65.json new file mode 100644 index 000000000..211fb845d --- /dev/null +++ b/v1.45/v1/04yvxvx65.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04yvxvx65", + "name": "Menzies Institute for Medical Research", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42, + "lng": 147, + "state": null, + "state_code": null, + "city": "Tasmania", + "geonames_city": { + "id": 2147291, + "city": "Tasmania", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.menzies.utas.edu.au" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Menzies_Institute_for_Medical_Research", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9510 3483" + ], + "preferred": "0000 0000 9510 3483" + }, + "Wikidata": { + "all": [ + "Q6817726" + ], + "preferred": "Q6817726" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/0504x3693.json b/v1.45/v1/0504x3693.json new file mode 100644 index 000000000..e653dc4df --- /dev/null +++ b/v1.45/v1/0504x3693.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/0504x3693", + "name": "Editora da Universidade do Estado de Minas Gerais", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Universidade do Estado de Minas Gerais", + "type": "Parent", + "id": "https://ror.org/05c84j393" + } + ], + "addresses": [ + { + "lat": -19.92083, + "lng": -43.93778, + "state": null, + "state_code": null, + "city": "Belo Horizonte", + "geonames_city": { + "id": 3470127, + "city": "Belo Horizonte", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://editora.uemg.br" + ], + "aliases": [ + "EdUEMG" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/050d9qs96.json b/v1.45/v1/050d9qs96.json new file mode 100644 index 000000000..ab1595dea --- /dev/null +++ b/v1.45/v1/050d9qs96.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/050d9qs96", + "name": "Business and Technology University", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.69411, + "lng": 44.83368, + "state": null, + "state_code": null, + "city": "Tbilisi", + "geonames_city": { + "id": 611717, + "city": "Tbilisi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://btu.edu.ge" + ], + "aliases": [], + "acronyms": [ + "BTU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "ბიზნესისა და ტექნოლოგიების უნივერსიტეტი", + "iso639": "ka" + } + ], + "country": { + "country_name": "Georgia", + "country_code": "GE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/050khh066.json b/v1.45/v1/050khh066.json new file mode 100644 index 000000000..5b6554b08 --- /dev/null +++ b/v1.45/v1/050khh066.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/050khh066", + "name": "New South Wales Department of Primary Industries", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "WaterNSW", + "type": "Child", + "id": "https://ror.org/02fqdw168" + }, + { + "label": "Government of New South Wales", + "type": "Parent", + "id": "https://ror.org/0067dvq63" + }, + { + "label": "Marine Biodiversity Hub", + "type": "Related", + "id": "https://ror.org/00jwcjd97" + } + ], + "addresses": [ + { + "lat": -33.28397, + "lng": 149.10018, + "state": null, + "state_code": null, + "city": "Orange", + "geonames_city": { + "id": 2154219, + "city": "Orange", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.dpi.nsw.gov.au/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Primary_Industries_(New_South_Wales)", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1680.f", + "preferred": "grid.1680.f" + }, + "ISNI": { + "all": [ + "0000 0004 0559 5189" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5260456" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/051tsqh55.json b/v1.45/v1/051tsqh55.json new file mode 100644 index 000000000..e77edc64e --- /dev/null +++ b/v1.45/v1/051tsqh55.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/051tsqh55", + "name": "Batman University", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.88738, + "lng": 41.13221, + "state": null, + "state_code": null, + "city": "Batman", + "geonames_city": { + "id": 321836, + "city": "Batman", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://batman.edu.tr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Batman_University", + "labels": [ + { + "label": "Batman Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Turkey", + "country_code": "TR" + }, + "external_ids": { + "GRID": { + "all": "grid.449363.f", + "preferred": "grid.449363.f" + }, + "ISNI": { + "all": [ + "0000 0004 0399 2850" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6859802" + ], + "preferred": "Q6859802" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/053f2w588.json b/v1.45/v1/053f2w588.json new file mode 100644 index 000000000..2265e0118 --- /dev/null +++ b/v1.45/v1/053f2w588.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/053f2w588", + "name": "Manisa Celal Bayar University", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.61202, + "lng": 27.42647, + "state": null, + "state_code": null, + "city": "Manisa", + "geonames_city": { + "id": 304827, + "city": "Manisa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mcbu.edu.tr" + ], + "aliases": [ + "Celal Bayar University", + "Celal Bayar Üniversitesi" + ], + "acronyms": [ + "CBÜ", + "MCBU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Celal_Bayar_University", + "labels": [ + { + "label": "Manisa Celal Bayar Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Turkey", + "country_code": "TR" + }, + "external_ids": { + "GRID": { + "all": "grid.411688.2", + "preferred": "grid.411688.2" + }, + "ISNI": { + "all": [ + "0000 0004 0595 6052" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5057509" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/054d77k59.json b/v1.45/v1/054d77k59.json new file mode 100644 index 000000000..28ed8e2ed --- /dev/null +++ b/v1.45/v1/054d77k59.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/054d77k59", + "name": "University of Agriculture Faisalabad", + "email_address": null, + "ip_addresses": [], + "established": 1906, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ayub Agriculture Research Institute", + "type": "Related", + "id": "https://ror.org/01qbsyz51" + } + ], + "addresses": [ + { + "lat": 31.41554, + "lng": 73.08969, + "state": null, + "state_code": null, + "city": "Faisalabad", + "geonames_city": { + "id": 1179400, + "city": "Faisalabad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uaf.edu.pk/" + ], + "aliases": [ + "Punjab Agricultural College and Research Institute" + ], + "acronyms": [ + "UAF" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Agriculture_(Faisalabad)", + "labels": [ + { + "label": "جامعہ زرعیہ فیصل آباد", + "iso639": "ur" + } + ], + "country": { + "country_name": "Pakistan", + "country_code": "PK" + }, + "external_ids": { + "GRID": { + "all": "grid.413016.1", + "preferred": "grid.413016.1" + }, + "ISNI": { + "all": [ + "0000 0004 0607 1563" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7895024" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/055jvqb21.json b/v1.45/v1/055jvqb21.json new file mode 100644 index 000000000..7c8458484 --- /dev/null +++ b/v1.45/v1/055jvqb21.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/055jvqb21", + "name": "Fondation HEC", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "HEC Paris", + "type": "Parent", + "id": "https://ror.org/0423jsj19" + } + ], + "addresses": [ + { + "lat": 48.75909, + "lng": 2.16966, + "state": null, + "state_code": null, + "city": "Jouy-en-Josas", + "geonames_city": { + "id": 3012165, + "city": "Jouy-en-Josas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hec.edu/fr/votre-soutien-un-impact" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "HEC Foundation", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.478946.0", + "preferred": "grid.478946.0" + }, + "ISNI": { + "all": [ + "0000 0001 0730 2763" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q60171120" + ], + "preferred": "Q60171120" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/0569b7y96.json b/v1.45/v1/0569b7y96.json new file mode 100644 index 000000000..9ecb62bc4 --- /dev/null +++ b/v1.45/v1/0569b7y96.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/0569b7y96", + "name": "Alstom (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1912, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Alstom (France)", + "type": "Parent", + "id": "https://ror.org/00t4db855" + } + ], + "addresses": [ + { + "lat": 41.8526, + "lng": -72.6437, + "state": null, + "state_code": null, + "city": "Windsor", + "geonames_city": { + "id": 4845920, + "city": "Windsor", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.alstom.com/alstom-united-states" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Alstom", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.454245.6", + "preferred": "grid.454245.6" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/056d3xj17.json b/v1.45/v1/056d3xj17.json new file mode 100644 index 000000000..0d8888029 --- /dev/null +++ b/v1.45/v1/056d3xj17.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/056d3xj17", + "name": "Sport et sciences sociales", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://e3s.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "E3S" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780911" + ], + "preferred": "Q51780911" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/057916623.json b/v1.45/v1/057916623.json new file mode 100644 index 000000000..ee0c65289 --- /dev/null +++ b/v1.45/v1/057916623.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/057916623", + "name": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Délégation Régionale Est", + "type": "Parent", + "id": "https://ror.org/04kv7c795" + }, + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Neuroscience et Psychiatrie Translationnelle de Strasbourg", + "type": "Successor", + "id": "https://ror.org/05dd6kb95" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u1118.inserm.fr/en/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.497627.9", + "preferred": "grid.497627.9" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/057gqmg22.json b/v1.45/v1/057gqmg22.json new file mode 100644 index 000000000..7320abe6a --- /dev/null +++ b/v1.45/v1/057gqmg22.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/057gqmg22", + "name": "Consejo Argentino de Oftalmología", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -34.61315, + "lng": -58.37723, + "state": null, + "state_code": null, + "city": "Buenos Aires", + "geonames_city": { + "id": 3435910, + "city": "Buenos Aires", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://oftalmologos.org.ar" + ], + "aliases": [ + "Argentine Council of Ophthalmology" + ], + "acronyms": [ + "CAO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/057zh3y96.json b/v1.45/v1/057zh3y96.json new file mode 100644 index 000000000..90dd7a063 --- /dev/null +++ b/v1.45/v1/057zh3y96.json @@ -0,0 +1,135 @@ +{ + "id": "https://ror.org/057zh3y96", + "name": "The University of Tokyo", + "email_address": null, + "ip_addresses": [], + "established": 1877, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratory for Integrated Micro-Mechatronic Systems", + "type": "Child", + "id": "https://ror.org/0059vr703" + }, + { + "label": "Spintronics Research Network of Japan", + "type": "Child", + "id": "https://ror.org/03bbyax37" + }, + { + "label": "Institute for Cosmic Ray Research", + "type": "Child", + "id": "https://ror.org/008td3p62" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "University of Tokyo Hospital", + "type": "Related", + "id": "https://ror.org/022cvpj02" + }, + { + "label": "Veterinary Medical Center", + "type": "Related", + "id": "https://ror.org/03vaz2582" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-tokyo.ac.jp" + ], + "aliases": [ + "Todai", + "Tōkyō Daigaku", + "UTokyo", + "とうきょうだいがく", + "トウキョウダイガク" + ], + "acronyms": [ + "UT" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Tokyo", + "labels": [ + { + "label": "東京大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.26999.3d", + "preferred": "grid.26999.3d" + }, + "ISNI": { + "all": [ + "0000 0001 2151 536X", + "0000 0001 2169 1048" + ], + "preferred": "0000 0001 2169 1048" + }, + "Wikidata": { + "all": [ + "Q7842", + "Q363047", + "Q56612514", + "Q11524675", + "Q11524693" + ], + "preferred": "Q7842" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/058wb7691.json b/v1.45/v1/058wb7691.json new file mode 100644 index 000000000..fffe508e7 --- /dev/null +++ b/v1.45/v1/058wb7691.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/058wb7691", + "name": "Renesas Electronics (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Intersil (United States)", + "type": "Child", + "id": "https://ror.org/05ttt5a28" + }, + { + "label": "Renesas Electronics (United Kingdom)", + "type": "Child", + "id": "https://ror.org/00eys7z46" + }, + { + "label": "Renesas Electronics (United States)", + "type": "Child", + "id": "https://ror.org/014775w70" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.renesas.com/en-in/" + ], + "aliases": [ + "Runesasu Erekutoronikusu Kabushiki Gaisha" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Renesas_Electronics", + "labels": [ + { + "label": "ルネサス エレクトロニクス株式会社", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.471241.5", + "preferred": "grid.471241.5" + }, + "ISNI": { + "all": [ + "0000 0004 0396 7866" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1196269" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/058xdtn86.json b/v1.45/v1/058xdtn86.json new file mode 100644 index 000000000..434d58ec0 --- /dev/null +++ b/v1.45/v1/058xdtn86.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/058xdtn86", + "name": "ARC Centre of Excellence for Plant Success in Nature and Agriculture", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Australian Research Council", + "type": "Parent", + "id": "https://ror.org/05mmh0f86" + }, + { + "label": "University of Queensland", + "type": "Parent", + "id": "https://ror.org/00rqy9422" + }, + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + }, + { + "label": "Queensland University of Technology", + "type": "Parent", + "id": "https://ror.org/03pnv4752" + }, + { + "label": "Monash University", + "type": "Parent", + "id": "https://ror.org/02bfwt286" + }, + { + "label": "Western Sydney University", + "type": "Parent", + "id": "https://ror.org/03t52dk35" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.plantsuccess.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.511665.0", + "preferred": "grid.511665.0" + }, + "Wikidata": { + "all": [ + "Q107519176" + ], + "preferred": "Q107519176" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/05a26ag16.json b/v1.45/v1/05a26ag16.json new file mode 100644 index 000000000..b37d18ac4 --- /dev/null +++ b/v1.45/v1/05a26ag16.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05a26ag16", + "name": "Centre d'analyse des rhétoriques religieuses de l'Antiquité", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://carra.unistra.fr" + ], + "aliases": [], + "acronyms": [ + "CARRA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0944 9929" + ], + "preferred": "0000 0001 0944 9929" + }, + "Wikidata": { + "all": [ + "Q51784618" + ], + "preferred": "Q51784618" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/05c84j393.json b/v1.45/v1/05c84j393.json new file mode 100644 index 000000000..f52bea545 --- /dev/null +++ b/v1.45/v1/05c84j393.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05c84j393", + "name": "Universidade do Estado de Minas Gerais", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Editora da Universidade do Estado de Minas Gerais", + "type": "Child", + "id": "https://ror.org/0504x3693" + } + ], + "addresses": [ + { + "lat": -19.92083, + "lng": -43.93778, + "state": null, + "state_code": null, + "city": "Belo Horizonte", + "geonames_city": { + "id": 3470127, + "city": "Belo Horizonte", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uemg.br" + ], + "aliases": [], + "acronyms": [ + "UEMG" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Minas_Gerais_State_University", + "labels": [ + { + "label": "Minas Gerais State University", + "iso639": "en" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "GRID": { + "all": "grid.442085.f", + "preferred": "grid.442085.f" + }, + "ISNI": { + "all": [ + "0000 0001 1897 2017" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2495760" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/05dd6kb95.json b/v1.45/v1/05dd6kb95.json new file mode 100644 index 000000000..ec0e48230 --- /dev/null +++ b/v1.45/v1/05dd6kb95.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05dd6kb95", + "name": "Neuroscience et Psychiatrie Translationnelle de Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 2024, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Neuropsychologie Cognitive et Physiopathologie de la Schizophrénie", + "type": "Predecessor", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", + "type": "Predecessor", + "id": "https://ror.org/057916623" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://step.unistra.fr" + ], + "aliases": [ + "Neurosciences & Psychiatrie Translationnelles de Strasbourg" + ], + "acronyms": [ + "STEP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Strasbourg Translational Neuroscience and Psychiatry", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/05fqmdn41.json b/v1.45/v1/05fqmdn41.json new file mode 100644 index 000000000..717b67553 --- /dev/null +++ b/v1.45/v1/05fqmdn41.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/05fqmdn41", + "name": "Institute for Social Change", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/research/institutes-and-centres/isc" + ], + "aliases": [], + "acronyms": [ + "ISC" + ], + "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.45/v1/05fv9c840.json b/v1.45/v1/05fv9c840.json new file mode 100644 index 000000000..75c54518c --- /dev/null +++ b/v1.45/v1/05fv9c840.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05fv9c840", + "name": "Australian Maritime College", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -41.38969, + "lng": 147.11397, + "state": null, + "state_code": null, + "city": "Newnham", + "geonames_city": { + "id": 2155416, + "city": "Newnham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.amc.edu.au" + ], + "aliases": [], + "acronyms": [ + "AMC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Australian_Maritime_College", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.454236.2", + "preferred": "grid.454236.2" + }, + "ISNI": { + "all": [ + "0000 0001 2294 0210" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q781571" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/05g89bp20.json b/v1.45/v1/05g89bp20.json new file mode 100644 index 000000000..7444e5bca --- /dev/null +++ b/v1.45/v1/05g89bp20.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/05g89bp20", + "name": "Hospital de Clínicas da Unicamp", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": -22.90556, + "lng": -47.06083, + "state": null, + "state_code": null, + "city": "Campinas", + "geonames_city": { + "id": 3467865, + "city": "Campinas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hc.unicamp.br/" + ], + "aliases": [ + "HC Unicamp", + "Hospital de Clínicas da Universidade Estadual de Campinas" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "GRID": { + "all": "grid.490121.f", + "preferred": "grid.490121.f" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/05gjpam11.json b/v1.45/v1/05gjpam11.json new file mode 100644 index 000000000..98e6e6b32 --- /dev/null +++ b/v1.45/v1/05gjpam11.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/05gjpam11", + "name": "TAS Farm Innovation Hub", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Department of Agriculture, Fisheries and Forestry", + "type": "Parent", + "id": "https://ror.org/00jks2h96" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tasfarmhub.com.au" + ], + "aliases": [ + "Tasmanian Drought Resilience Adoption and Innovation Hub" + ], + "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.45/v1/05k9dfy31.json b/v1.45/v1/05k9dfy31.json new file mode 100644 index 000000000..19e5f70e6 --- /dev/null +++ b/v1.45/v1/05k9dfy31.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/05k9dfy31", + "name": "CBE Consultants, Inc. (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.91678, + "lng": -75.38769, + "state": null, + "state_code": null, + "city": "Media", + "geonames_city": { + "id": 4559575, + "city": "Media", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cbeconsultants.com" + ], + "aliases": [ + "CBE Consultants" + ], + "acronyms": [ + "CBEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "CBE Consultants, Inc.", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.45/v1/05mmh0f86.json b/v1.45/v1/05mmh0f86.json new file mode 100644 index 000000000..1e346142e --- /dev/null +++ b/v1.45/v1/05mmh0f86.json @@ -0,0 +1,229 @@ +{ + "id": "https://ror.org/05mmh0f86", + "name": "Australian Research Council", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "ARC Centre of Excellence for All-sky Astrophysics", + "type": "Child", + "id": "https://ror.org/04v9m3h35" + }, + { + "label": "ARC Centre of Excellence for Automated Decision-Making and Society", + "type": "Child", + "id": "https://ror.org/039p7nx39" + }, + { + "label": "ARC Centre of Excellence for Children and Families over the Life Course", + "type": "Child", + "id": "https://ror.org/053mfxd72" + }, + { + "label": "ARC Centre of Excellence for Coherent X-ray Science", + "type": "Child", + "id": "https://ror.org/02gs3vg83" + }, + { + "label": "ARC Centre of Excellence for Coral Reef Studies", + "type": "Child", + "id": "https://ror.org/028cdc266" + }, + { + "label": "ARC Centre of Excellence for Core to Crust Fluid Systems", + "type": "Child", + "id": "https://ror.org/03nk9pp38" + }, + { + "label": "ARC Centre of Excellence for Dark Matter Particle Physics", + "type": "Child", + "id": "https://ror.org/00cybsr61" + }, + { + "label": "ARC Centre of Excellence for Electromaterials Science", + "type": "Child", + "id": "https://ror.org/020g3wn65" + }, + { + "label": "ARC Centre of Excellence for Enabling Eco-Efficient Beneficiation of Minerals", + "type": "Child", + "id": "https://ror.org/01nsxs283" + }, + { + "label": "ARC Centre of Excellence for Engineered Quantum Systems", + "type": "Child", + "id": "https://ror.org/03rtykw43" + }, + { + "label": "ARC Centre of Excellence for Environmental Decisions", + "type": "Child", + "id": "https://ror.org/01k8nkc73" + }, + { + "label": "ARC Centre of Excellence for Innovations in Peptide and Protein Science", + "type": "Child", + "id": "https://ror.org/04dxv8v14" + }, + { + "label": "ARC Centre of Excellence for Integrative Brain Function", + "type": "Child", + "id": "https://ror.org/02yasb727" + }, + { + "label": "ARC Centre of Excellence for Mathematical and Statistical Frontiers", + "type": "Child", + "id": "https://ror.org/02vcqg248" + }, + { + "label": "ARC Centre of Excellence for Particle Physics at the Terascale", + "type": "Child", + "id": "https://ror.org/01h06nz15" + }, + { + "label": "ARC Centre of Excellence for Plant Success in Nature and Agriculture", + "type": "Child", + "id": "https://ror.org/058xdtn86" + }, + { + "label": "ARC Centre of Excellence for Transformative Meta-Optical Systems", + "type": "Child", + "id": "https://ror.org/05sh7tb37" + }, + { + "label": "ARC Centre of Excellence for the Digital Child", + "type": "Child", + "id": "https://ror.org/01h55za35" + }, + { + "label": "ARC Centre of Excellence in Advanced Molecular Imaging", + "type": "Child", + "id": "https://ror.org/051e7s436" + }, + { + "label": "ARC Centre of Excellence in Cognition and its Disorders", + "type": "Child", + "id": "https://ror.org/044b7p696" + }, + { + "label": "ARC Centre of Excellence in Plant Energy Biology", + "type": "Child", + "id": "https://ror.org/01a1mq059" + }, + { + "label": "ARC Centre of Excellence in Synthetic Biology", + "type": "Child", + "id": "https://ror.org/01p2zg436" + }, + { + "label": "Centre for Quantum Computation and Communication Technology", + "type": "Child", + "id": "https://ror.org/00rnbty21" + }, + { + "label": "National Centre for Groundwater Research and Training", + "type": "Child", + "id": "https://ror.org/0087v5134" + }, + { + "label": "Department of Employment and Workplace Relations", + "type": "Parent", + "id": "https://ror.org/02wa0fq92" + }, + { + "label": "ARC Centre for Forest Value", + "type": "Child", + "id": "https://ror.org/041njsz97" + }, + { + "label": "ARC Research Hub for Sustainable Onshore Lobster Aquaculture", + "type": "Child", + "id": "https://ror.org/04jqtny57" + }, + { + "label": "Australian Centre for Excellence in Antarctic Science", + "type": "Related", + "id": "https://ror.org/024jkkf40" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.arc.gov.au/" + ], + "aliases": [], + "acronyms": [ + "ARC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Australian_Research_Council", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.413452.5", + "preferred": "grid.413452.5" + }, + "ISNI": { + "all": [ + "0000 0004 0611 9213" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4824612" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/05n8cqa74.json b/v1.45/v1/05n8cqa74.json new file mode 100644 index 000000000..976101f12 --- /dev/null +++ b/v1.45/v1/05n8cqa74.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05n8cqa74", + "name": "Wicking Dementia Centre", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/wicking" + ], + "aliases": [ + "Wicking Dementia Research and Education Centre" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q118420328" + ], + "preferred": "Q118420328" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/05pfntr04.json b/v1.45/v1/05pfntr04.json new file mode 100644 index 000000000..23a5700f2 --- /dev/null +++ b/v1.45/v1/05pfntr04.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05pfntr04", + "name": "All Russian Research Institute of Animal Breeding", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Facility", + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.75222, + "lng": 37.61556, + "state": null, + "state_code": null, + "city": "Moscow", + "geonames_city": { + "id": 524901, + "city": "Moscow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://vniiplem.com" + ], + "aliases": [ + "Federal State Budgetary Scientific Institution All-Russian Research Institute of Breeding", + "Всероссийский научно-исследовательский институт племенного дела" + ], + "acronyms": [ + "VNIIPLEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Федеральное государственное бюджетное научное учреждение Всероссийский научно-исследовательский институт племенного дела", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q55944021" + ], + "preferred": "Q55944021" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/05rqjcx81.json b/v1.45/v1/05rqjcx81.json new file mode 100644 index 000000000..31d4c308b --- /dev/null +++ b/v1.45/v1/05rqjcx81.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05rqjcx81", + "name": "Institutul Național de Cercetări Economice", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.00556, + "lng": 28.8575, + "state": null, + "state_code": null, + "city": "Chisinau", + "geonames_city": { + "id": 618426, + "city": "Chisinau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ince.md" + ], + "aliases": [], + "acronyms": [ + "INCE", + "NIER" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Institute for Economic Research", + "iso639": "en" + } + ], + "country": { + "country_name": "Moldova", + "country_code": "MD" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4908 0152" + ], + "preferred": "0000 0004 4908 0152" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/05s1rff82.json b/v1.45/v1/05s1rff82.json new file mode 100644 index 000000000..a718cb4e6 --- /dev/null +++ b/v1.45/v1/05s1rff82.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/05s1rff82", + "name": "Centre des Sciences du Goût et de l'Alimentation", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Agro Dijon", + "type": "Parent", + "id": "https://ror.org/03zek0r74" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Burgundy", + "type": "Parent", + "id": "https://ror.org/03k1bsr36" + } + ], + "addresses": [ + { + "lat": 47.31667, + "lng": 5.01667, + "state": null, + "state_code": null, + "city": "Dijon", + "geonames_city": { + "id": 3021372, + "city": "Dijon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www2.dijon.inra.fr/csga/" + ], + "aliases": [], + "acronyms": [ + "CSGA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462804.c", + "preferred": "grid.462804.c" + }, + "ISNI": { + "all": [ + "0000 0004 0387 2525" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261561" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.45/v1/05t0gvw18.json b/v1.45/v1/05t0gvw18.json new file mode 100644 index 000000000..65e356883 --- /dev/null +++ b/v1.45/v1/05t0gvw18.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05t0gvw18", + "name": "Instituto de Educação Superior de Brasília", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -15.77972, + "lng": -47.92972, + "state": null, + "state_code": null, + "city": "Brasília", + "geonames_city": { + "id": 3469058, + "city": "Brasília", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iesb.br" + ], + "aliases": [ + "Centro Universitário IESB", + "Higher Education Institute of Brasilia", + "IESB University Center" + ], + "acronyms": [ + "CESB", + "IESB" + ], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Instituto_de_Educa%C3%A7%C3%A3o_Superior_de_Bras%C3%ADlia", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0614 8583" + ], + "preferred": "0000 0004 0614 8583" + }, + "Wikidata": { + "all": [ + "Q10302819" + ], + "preferred": "Q10302819" + } + } +} \ No newline at end of file diff --git a/v1.45/v1/05xyr4058.json b/v1.45/v1/05xyr4058.json new file mode 100644 index 000000000..0d7d0a983 --- /dev/null +++ b/v1.45/v1/05xyr4058.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/05xyr4058", + "name": "Australian Institute of Health Service Management", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Tasmania", + "type": "Parent", + "id": "https://ror.org/01nfmeh72" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utas.edu.au/business-and-economics/disciplines-and-institutes/australian-institute-of-health-service-management" + ], + "aliases": [], + "acronyms": [ + "AIHSM" + ], + "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.45/v1/05yeh3g67.json b/v1.45/v1/05yeh3g67.json new file mode 100644 index 000000000..e4a2a0416 --- /dev/null +++ b/v1.45/v1/05yeh3g67.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/05yeh3g67", + "name": "University of Calicut", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Government College Kodanchery", + "type": "Child", + "id": "https://ror.org/049n7x086" + }, + { + "label": "Government Medical College", + "type": "Related", + "id": "https://ror.org/016je1253" + }, + { + "label": "Vaidyaratnam P.S. Varier Ayurveda College", + "type": "Related", + "id": "https://ror.org/02hn5dg93" + } + ], + "addresses": [ + { + "lat": 11.04199, + "lng": 76.08154, + "state": null, + "state_code": null, + "city": "Malappuram", + "geonames_city": { + "id": 1264154, + "city": "Malappuram", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uoc.ac.in" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Calicut", + "labels": [ + { + "label": "Université de calicut", + "iso639": "fr" + }, + { + "label": "கோழிக்கோடு பல்கலைக்கழகம்", + "iso639": "ta" + }, + { + "label": "യൂനിവേഴ്സിറ്റി ഓഫ് കാലിക്കറ്റ്", + "iso639": "ml" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.413100.7", + "preferred": "grid.413100.7" + }, + "ISNI": { + "all": [ + "0000 0001 0353 9464" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7895155", + "Q13111792" + ], + "preferred": "Q7895155" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/000ztjy10.json b/v1.47/v1/000ztjy10.json new file mode 100644 index 000000000..e02d7c035 --- /dev/null +++ b/v1.47/v1/000ztjy10.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/000ztjy10", + "name": "Naval Information Warfare Systems Command", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Naval Information Warfare Center Pacific", + "type": "Child", + "id": "https://ror.org/01gs1cg95" + }, + { + "label": "Naval Information Warfare Center Atlantic", + "type": "Child", + "id": "https://ror.org/05v8y4456" + }, + { + "label": "NAVWAR Space Field Activity", + "type": "Child", + "id": "https://ror.org/024b23796" + }, + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 32.71571, + "lng": -117.16472, + "state": null, + "state_code": null, + "city": "San Diego", + "geonames_city": { + "id": 5391811, + "city": "San Diego", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.navwar.navy.mil" + ], + "aliases": [ + "Space and Naval Warfare Systems Command" + ], + "acronyms": [ + "NAVWAR", + "SPAWAR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Space_and_Naval_Warfare_Systems_Command", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.482841.3", + "preferred": "grid.482841.3" + }, + "ISNI": { + "all": [ + "0000 0001 2325 8686" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3492612" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00136g547.json b/v1.47/v1/00136g547.json new file mode 100644 index 000000000..8313aff6b --- /dev/null +++ b/v1.47/v1/00136g547.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00136g547", + "name": "Fractionnation of AgroResources and Environment", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.nancy.inrae.fr/fare" + ], + "aliases": [], + "acronyms": [ + "FARE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fractionnement des AgroRessources et Environnement", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464062.2", + "preferred": "grid.464062.2" + }, + "Wikidata": { + "all": [ + "Q30262421" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0020fz961.json b/v1.47/v1/0020fz961.json new file mode 100644 index 000000000..a12189f42 --- /dev/null +++ b/v1.47/v1/0020fz961.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0020fz961", + "name": "František Bartoš Regional Library in Zlín", + "email_address": null, + "ip_addresses": [], + "established": 1885, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Zlín Region", + "type": "Parent", + "id": "https://ror.org/039fjjj43" + } + ], + "addresses": [ + { + "lat": 49.22645, + "lng": 17.67065, + "state": null, + "state_code": null, + "city": "Zlín", + "geonames_city": { + "id": 3061370, + "city": "Zlín", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kfbz.cz" + ], + "aliases": [], + "acronyms": [ + "KFBZ" + ], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Krajsk%C3%A1_knihovna_Franti%C5%A1ka_Barto%C5%A1e_ve_Zl%C3%ADn%C4%9B", + "labels": [ + { + "label": "Krajská knihovna Františka Bartoše ve Zlíně", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0701 5166" + ], + "preferred": "0000 0001 0701 5166" + }, + "Wikidata": { + "all": [ + "Q12031371" + ], + "preferred": "Q12031371" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/002n09z45.json b/v1.47/v1/002n09z45.json new file mode 100644 index 000000000..837085e1a --- /dev/null +++ b/v1.47/v1/002n09z45.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/002n09z45", + "name": "SIB Swiss Institute of Bioinformatics", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sib.swiss" + ], + "aliases": [ + "Swiss Institute of Bioinformatics" + ], + "acronyms": [ + "SIB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Swiss_Institute_of_Bioinformatics", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.419765.8", + "preferred": "grid.419765.8" + }, + "ISNI": { + "all": [ + "0000 0001 2223 3006" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3152521" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/002zghs56.json b/v1.47/v1/002zghs56.json new file mode 100644 index 000000000..f1f9be079 --- /dev/null +++ b/v1.47/v1/002zghs56.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/002zghs56", + "name": "Hôpital du Saint-Sacrement", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Centre hospitalier universitaire de Québec", + "type": "Parent", + "id": "https://ror.org/006a7pj43" + } + ], + "addresses": [ + { + "lat": 46.81228, + "lng": -71.21454, + "state": null, + "state_code": null, + "city": "Québec", + "geonames_city": { + "id": 6325494, + "city": "Québec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chudequebec.ca/centre-hospitaliers/hopital-du-saint-sacrement.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.416673.1", + "preferred": "grid.416673.1" + }, + "ISNI": { + "all": [ + "0000 0004 0457 3535" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/003ncxf91.json b/v1.47/v1/003ncxf91.json new file mode 100644 index 000000000..0f8cad1e8 --- /dev/null +++ b/v1.47/v1/003ncxf91.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/003ncxf91", + "name": "China University of Mining and Technology - Beijing", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cumtb.edu.cn" + ], + "aliases": [], + "acronyms": [ + "CUMTB" + ], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E4%B8%AD%E5%9B%BD%E7%9F%BF%E4%B8%9A%E5%A4%A7%E5%AD%A6%EF%BC%88%E5%8C%97%E4%BA%AC%EF%BC%89", + "labels": [ + { + "label": "中国矿业大学(北京)", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q13656445" + ], + "preferred": "Q13656445" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/003p8mm90.json b/v1.47/v1/003p8mm90.json new file mode 100644 index 000000000..76d98bf99 --- /dev/null +++ b/v1.47/v1/003p8mm90.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/003p8mm90", + "name": "Bolgatanga Technical University", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.78556, + "lng": -0.85139, + "state": null, + "state_code": null, + "city": "Bolgatanga", + "geonames_city": { + "id": 2302821, + "city": "Bolgatanga", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bolgatu.edu.gh" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bolgatanga_Technical_University", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0368 6850" + ], + "preferred": "0000 0005 0368 6850" + }, + "Wikidata": { + "all": [ + "Q891337" + ], + "preferred": "Q891337" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/003vg9w96.json b/v1.47/v1/003vg9w96.json new file mode 100644 index 000000000..6728f7640 --- /dev/null +++ b/v1.47/v1/003vg9w96.json @@ -0,0 +1,763 @@ +{ + "id": "https://ror.org/003vg9w96", + "name": "National Research Institute for Agriculture, Food and Environment", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "AgroResonance Platform", + "type": "Child", + "id": "https://ror.org/01wzg9f04" + }, + { + "label": "Agroecology", + "type": "Child", + "id": "https://ror.org/00mkad321" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "Child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Fonctionnelle Insectes et Interactions", + "type": "Child", + "id": "https://ror.org/03d1jma17" + }, + { + "label": "Biologie des Oiseaux et Aviculture", + "type": "Child", + "id": "https://ror.org/02y3mfk39" + }, + { + "label": "Carnot Institute Qualiment", + "type": "Child", + "id": "https://ror.org/032k75171" + }, + { + "label": "Centre Bourgogne-Franche-Comté", + "type": "Child", + "id": "https://ror.org/002jby155" + }, + { + "label": "Centre Bretagne-Normandie", + "type": "Child", + "id": "https://ror.org/01v6wmk25" + }, + { + "label": "Centre Clermont-Auvergne-Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04aqtsh50" + }, + { + "label": "Centre INRAE Grand-Est - Colmar", + "type": "Child", + "id": "https://ror.org/00zg31r41" + }, + { + "label": "Centre Nouvelle Aquitaine-Bordeaux", + "type": "Child", + "id": "https://ror.org/00tebkv94" + }, + { + "label": "Centre Occitanie-Montpellier", + "type": "Child", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre Occitanie-Toulouse", + "type": "Child", + "id": "https://ror.org/02sxjwh33" + }, + { + "label": "Centre Pays de la Loire", + "type": "Child", + "id": "https://ror.org/020jynt45" + }, + { + "label": "Centre Provence-Alpes-Côte d'Azur", + "type": "Child", + "id": "https://ror.org/03qbdej90" + }, + { + "label": "Centre Régional d’Innovation et de Transferts Technologiques des Industries du Bois", + "type": "Child", + "id": "https://ror.org/016crzw98" + }, + { + "label": "Centre Val de Loire", + "type": "Child", + "id": "https://ror.org/03ntmtb29" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Centre de Corse", + "type": "Child", + "id": "https://ror.org/04hrbdg71" + }, + { + "label": "Centre de Recherche en Nutrition Humaine d'Auvergne", + "type": "Child", + "id": "https://ror.org/03rzyjb72" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "Child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre Île-de-France - Jouy-en-Josas - Antony", + "type": "Child", + "id": "https://ror.org/00gtg0p11" + }, + { + "label": "Centre Île-de-France - Versailles-Grignon", + "type": "Child", + "id": "https://ror.org/02cbapb21" + }, + { + "label": "Dynamique des Génomes et Adaptation Microbienne", + "type": "Child", + "id": "https://ror.org/01gbppd30" + }, + { + "label": "Département Alimentation Humaine", + "type": "Child", + "id": "https://ror.org/00pgyqh43" + }, + { + "label": "Département Biologie et Amélioration des Plantes", + "type": "Child", + "id": "https://ror.org/05r63mf91" + }, + { + "label": "Département Environnement et Agronomie", + "type": "Child", + "id": "https://ror.org/01e7wth34" + }, + { + "label": "Département Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/011emb038" + }, + { + "label": "Département Microbiologie et Chaîne Alimentaire", + "type": "Child", + "id": "https://ror.org/03n4vkw74" + }, + { + "label": "Département Physiologie Animale et Systèmes d’Élevage", + "type": "Child", + "id": "https://ror.org/03tpcfk14" + }, + { + "label": "Département Santé Animale", + "type": "Child", + "id": "https://ror.org/024409k12" + }, + { + "label": "Département Santé des Plantes et Environnement", + "type": "Child", + "id": "https://ror.org/0455v8x20" + }, + { + "label": "Département Sciences pour l’Action et le Développement", + "type": "Child", + "id": "https://ror.org/03vxmn596" + }, + { + "label": "Département Sciences sociales, agriculture et alimentation, espace et environnement", + "type": "Child", + "id": "https://ror.org/012221e05" + }, + { + "label": "Département Génétique Animale", + "type": "Child", + "id": "https://ror.org/029xmsm82" + }, + { + "label": "Département Écologie des Forêts, Prairies et Milieux Aquatiques", + "type": "Child", + "id": "https://ror.org/00yv4p972" + }, + { + "label": "Ecology of Guianan Forests", + "type": "Child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Field Observatory in Urban Hydrology", + "type": "Child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fish Physiology and Genomics Institute", + "type": "Child", + "id": "https://ror.org/04xtaw673" + }, + { + "label": "Fractionnation of AgroResources and Environment", + "type": "Child", + "id": "https://ror.org/00136g547" + }, + { + "label": "Genomics and Biotechnology of the Fruits Laboratory", + "type": "Child", + "id": "https://ror.org/01z0xsq42" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Grenoble Applied Economics Lab", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Groupe de Recherche en Droit, Économie, Gestion", + "type": "Child", + "id": "https://ror.org/00rfccx09" + }, + { + "label": "Génétique Animale et Biologie Intégrative", + "type": "Child", + "id": "https://ror.org/03rkgeb39" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Unité de Nutrition Humaine", + "type": "Child", + "id": "https://ror.org/003qhrc72" + }, + { + "label": "Infectiologie Animale et Santé Publique", + "type": "Child", + "id": "https://ror.org/0454zjr22" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "Child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Institut Jean-Pierre Bourgin", + "type": "Child", + "id": "https://ror.org/01wqd6v19" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "Child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut de Génétique, Environnement et Protection des Plantes", + "type": "Child", + "id": "https://ror.org/038kxsm48" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire CarMeN", + "type": "Child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Biologiques et des Procédés", + "type": "Child", + "id": "https://ror.org/01yypjb30" + }, + { + "label": "Laboratoire de Biotechnologie de l'Environnement", + "type": "Child", + "id": "https://ror.org/022m8c549" + }, + { + "label": "Laboratoire de Génétique Cellulaire", + "type": "Child", + "id": "https://ror.org/05k317v03" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "Child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "Child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Microbial Ecology", + "type": "Child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Nutrition Obesity & Risk of Thrombosis", + "type": "Child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "PhysioPathologie des Adaptations Nutritionnelles", + "type": "Child", + "id": "https://ror.org/05vb5nm66" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "Child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Soil Agro and Hydrosystems Spatialization", + "type": "Child", + "id": "https://ror.org/03k4s1p46" + }, + { + "label": "Stem-Cell and Brain Research Institute", + "type": "Child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Stress Abiotiques et Différenciation des Végétaux Cultivés", + "type": "Child", + "id": "https://ror.org/03wzth680" + }, + { + "label": "TRANSFORM", + "type": "Child", + "id": "https://ror.org/00sxj6k90" + }, + { + "label": "UMR BIOdiversity, GEnes & Communities", + "type": "Child", + "id": "https://ror.org/033ebya06" + }, + { + "label": "UMR Territoires", + "type": "Child", + "id": "https://ror.org/026tc4g97" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "Child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité Mixte de Recherche sur les Herbivores", + "type": "Child", + "id": "https://ror.org/03yvemy54" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "Child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "Unité de Recherche Pluridisciplinaire Prairies et Plantes Fourragères", + "type": "Child", + "id": "https://ror.org/04247y265" + }, + { + "label": "Zone Atelier Moselle", + "type": "Child", + "id": "https://ror.org/016vxbe23" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "Child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "Child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Unité Mixte de Recherche sur les Fromages", + "type": "Child", + "id": "https://ror.org/01xbd2h58" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Agri Obtentions (France)", + "type": "Child", + "id": "https://ror.org/04db8q179" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Centre Alpin sur les Réseaux Trophiques et Ecosystèmes Lacustre", + "type": "Child", + "id": "https://ror.org/037vdeb02" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "Child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "Child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "PAnTher - Physiopathologie Animale et bioThérapie du muscle et du système nerveux", + "type": "Child", + "id": "https://ror.org/05vex5m10" + }, + { + "label": "Biomécanique et Pathologie Locomotrice du Cheval", + "type": "Child", + "id": "https://ror.org/001rmv394" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "Child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "Child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "EMMAH - Environnement Méditerranéen et Modélisation des Agro-Hydrosystèmes", + "type": "Child", + "id": "https://ror.org/048bnmc64" + }, + { + "label": "GESTE - Gestion Territoriale de l'Eau et de l'Environnement", + "type": "Child", + "id": "https://ror.org/00pz29t13" + }, + { + "label": "Laboratoire d'Ecophysiologie Végétale, Agronomie & nutritions N.C.S", + "type": "Child", + "id": "https://ror.org/01s4cye48" + }, + { + "label": "Laboratoire Agronomie et Environnement", + "type": "Child", + "id": "https://ror.org/01dg9a450" + }, + { + "label": "Virologie", + "type": "Child", + "id": "https://ror.org/0318tzh81" + }, + { + "label": "ITAP - Technologies et Méthodes pour les Agricultures de demain", + "type": "Child", + "id": "https://ror.org/00ftatp57" + }, + { + "label": "Ecologie Comportementale et Biologie des Populations de Poissons", + "type": "Child", + "id": "https://ror.org/02brsbg31" + }, + { + "label": "Dynamiques et écologie des paysages agriforestiers", + "type": "Child", + "id": "https://ror.org/04wa4se75" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Biologie Epidémiologie et Analyse de Risque en santé animale", + "type": "Child", + "id": "https://ror.org/059h64789" + }, + { + "label": "Structures et Marchés Agricoles, Ressources et Territoires", + "type": "Child", + "id": "https://ror.org/04fa3ke77" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "Child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "Child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "Épidémiologie des maladies Animales et zoonotiques", + "type": "Child", + "id": "https://ror.org/03e04sg66" + }, + { + "label": "Unité Mixte de Recherche sur l'Ecosystème Prairial", + "type": "Child", + "id": "https://ror.org/02c3c9255" + }, + { + "label": "Biodiversité, Agroécologie et Aménagement du Paysage", + "type": "Child", + "id": "https://ror.org/04byv8g40" + }, + { + "label": "Biologie intégrée pour la valorisation de la diversité des arbres et de la forêt", + "type": "Child", + "id": "https://ror.org/04f6qd925" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Innovations thérapeutiques et résistances", + "type": "Child", + "id": "https://ror.org/01shz5j60" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "Child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "Child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Unité de Recherche Agrosystèmes tropicaux", + "type": "Child", + "id": "https://ror.org/00vxck708" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Etude et Compréhension de la biodiversité", + "type": "Child", + "id": "https://ror.org/042w6m452" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "ABSys", + "type": "Child", + "id": "https://ror.org/00n2c0309" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inrae.fr/" + ], + "aliases": [], + "acronyms": [ + "INRAE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.507621.7", + "preferred": "grid.507621.7" + }, + "Wikidata": { + "all": [ + "Q70571774" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00412ts95.json b/v1.47/v1/00412ts95.json new file mode 100644 index 000000000..f8c11fb44 --- /dev/null +++ b/v1.47/v1/00412ts95.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/00412ts95", + "name": "Children's Hospital of Los Angeles", + "email_address": null, + "ip_addresses": [], + "established": 1901, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Southern California Clinical and Translational Science Institute", + "type": "Related", + "id": "https://ror.org/01ncqna34" + }, + { + "label": "University of Southern California", + "type": "Related", + "id": "https://ror.org/03taz7m60" + } + ], + "addresses": [ + { + "lat": 34.05223, + "lng": -118.24368, + "state": null, + "state_code": null, + "city": "Los Angeles", + "geonames_city": { + "id": 5368361, + "city": "Los Angeles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chla.org" + ], + "aliases": [ + "Children's Hospital Society of Los Angeles" + ], + "acronyms": [ + "CHLA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Children%27s_Hospital_Los_Angeles", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.239546.f", + "preferred": "grid.239546.f" + }, + "ISNI": { + "all": [ + "0000 0001 2153 6013" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1072787" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0046ap498.json b/v1.47/v1/0046ap498.json new file mode 100644 index 000000000..945aaae97 --- /dev/null +++ b/v1.47/v1/0046ap498.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/0046ap498", + "name": "Korea Research Institute of Ships and Ocean Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.36685, + "lng": 127.327, + "state": null, + "state_code": null, + "city": "Yuseong-gu", + "geonames_city": { + "id": 8419684, + "city": "Yuseong-gu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kriso.re.kr" + ], + "aliases": [ + "Korea Research Institute of Ships & Ocean Engineering" + ], + "acronyms": [ + "KRISO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9803 1921" + ], + "preferred": "0000 0000 9803 1921" + }, + "Wikidata": { + "all": [ + "Q112085454" + ], + "preferred": "Q112085454" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00490n048.json b/v1.47/v1/00490n048.json new file mode 100644 index 000000000..46850cf9b --- /dev/null +++ b/v1.47/v1/00490n048.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00490n048", + "name": "American Institutes for Research", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.80484, + "lng": -77.04692, + "state": null, + "state_code": null, + "city": "Alexandria", + "geonames_city": { + "id": 4744091, + "city": "Alexandria", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.air.org" + ], + "aliases": [], + "acronyms": [ + "AIR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/American_Institutes_for_Research", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.410311.6", + "preferred": "grid.410311.6" + }, + "ISNI": { + "all": [ + "0000 0004 0464 361X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4744158" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0049xax05.json b/v1.47/v1/0049xax05.json new file mode 100644 index 000000000..b29266249 --- /dev/null +++ b/v1.47/v1/0049xax05.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/0049xax05", + "name": "Portuguese Environment Agency", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.75382, + "lng": -9.23083, + "state": null, + "state_code": null, + "city": "Amadora", + "geonames_city": { + "id": 2271772, + "city": "Amadora", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.apambiente.pt/index.php?ref=x178" + ], + "aliases": [], + "acronyms": [ + "APA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Agência Portuguesa do Ambiente", + "iso639": "pt" + } + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "GRID": { + "all": "grid.432732.3", + "preferred": "grid.432732.3" + }, + "ISNI": { + "all": [ + "0000 0001 1907 5625" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/004h88r69.json b/v1.47/v1/004h88r69.json new file mode 100644 index 000000000..776fc8a41 --- /dev/null +++ b/v1.47/v1/004h88r69.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/004h88r69", + "name": "Fondation Leenaards", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.leenaards.ch/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.478955.2", + "preferred": "grid.478955.2" + }, + "ISNI": { + "all": [ + "0000 0004 5900 4110" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3075484" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/004tay810.json b/v1.47/v1/004tay810.json new file mode 100644 index 000000000..f8e7becbe --- /dev/null +++ b/v1.47/v1/004tay810.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/004tay810", + "name": "Military Sealift Command", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 38.88101, + "lng": -77.10428, + "state": null, + "state_code": null, + "city": "Arlington", + "geonames_city": { + "id": 4744709, + "city": "Arlington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.msc.navy.mil/" + ], + "aliases": [ + "Military Sea Transportation Service" + ], + "acronyms": [ + "MSTS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Military_Sealift_Command", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.487635.b", + "preferred": "grid.487635.b" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/004vxz697.json b/v1.47/v1/004vxz697.json new file mode 100644 index 000000000..0a7b7080c --- /dev/null +++ b/v1.47/v1/004vxz697.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/004vxz697", + "name": "Faculdade Católica de Várzea Grande", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "União das Faculdades Católicas de Mato Grosso", + "type": "Parent", + "id": "https://ror.org/02jj0ar17" + } + ], + "addresses": [ + { + "lat": -15.64667, + "lng": -56.1325, + "state": null, + "state_code": null, + "city": "Várzea Grande", + "geonames_city": { + "id": 3445451, + "city": "Várzea Grande", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unifacc.com.br/faculdade-catolica-de-varzea-grande/" + ], + "aliases": [], + "acronyms": [ + "FACC-VG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/005914142.json b/v1.47/v1/005914142.json new file mode 100644 index 000000000..ac6566674 --- /dev/null +++ b/v1.47/v1/005914142.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/005914142", + "name": "KDDI Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 35.70019, + "lng": 139.74888, + "state": null, + "state_code": null, + "city": "Iidabashi", + "geonames_city": { + "id": 10903380, + "city": "Iidabashi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kddi-foundation.or.jp" + ], + "aliases": [ + "KDDI Foundation in Japan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7690 2158" + ], + "preferred": "0000 0004 7690 2158" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0059b1q02.json b/v1.47/v1/0059b1q02.json new file mode 100644 index 000000000..ff87690e9 --- /dev/null +++ b/v1.47/v1/0059b1q02.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/0059b1q02", + "name": "Ministry of Communications, Knowledge and Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -24.65451, + "lng": 25.90859, + "state": null, + "state_code": null, + "city": "Gaborone", + "geonames_city": { + "id": 933773, + "city": "Gaborone", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://gov.bw/ministries/ministry-communications-knowledge-and-technology" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Communications%2C_Knowledge_and_Technology_%28Botswana%29", + "labels": [], + "country": { + "country_name": "Botswana", + "country_code": "BW" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123964836" + ], + "preferred": "Q123964836" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/005eqmw78.json b/v1.47/v1/005eqmw78.json new file mode 100644 index 000000000..ad63a5f1c --- /dev/null +++ b/v1.47/v1/005eqmw78.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/005eqmw78", + "name": "Asian Theological Seminary", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 14.6042, + "lng": 120.9822, + "state": null, + "state_code": null, + "city": "Manila", + "geonames_city": { + "id": 1701668, + "city": "Manila", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ats.ph" + ], + "aliases": [], + "acronyms": [ + "ATS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Asian_Theological_Seminary", + "labels": [], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9419 9962" + ], + "preferred": "0000 0000 9419 9962" + }, + "Wikidata": { + "all": [ + "Q20573214" + ], + "preferred": "Q20573214" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/005f4y685.json b/v1.47/v1/005f4y685.json new file mode 100644 index 000000000..a97dd8b53 --- /dev/null +++ b/v1.47/v1/005f4y685.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/005f4y685", + "name": "Chinhoyi University of Technology", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -17.36667, + "lng": 30.2, + "state": null, + "state_code": null, + "city": "Chinhoyi", + "geonames_city": { + "id": 893697, + "city": "Chinhoyi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cut.ac.zw" + ], + "aliases": [], + "acronyms": [ + "CUT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Chinhoyi_University_of_Technology", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.442707.2", + "preferred": "grid.442707.2" + }, + "ISNI": { + "all": [ + "0000 0004 0648 4819" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5101057" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/005yfhm28.json b/v1.47/v1/005yfhm28.json new file mode 100644 index 000000000..2b1dbdb05 --- /dev/null +++ b/v1.47/v1/005yfhm28.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/005yfhm28", + "name": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Aix-Marseille University", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 43.68504, + "lng": 5.70775, + "state": null, + "state_code": null, + "city": "Saint-Paul-lès-Durance", + "geonames_city": { + "id": 2977644, + "city": "Saint-Paul-lès-Durance", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cite-des-energies.fr/biam/" + ], + "aliases": [], + "acronyms": [ + "BIAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Bioscience and Biotechnology Institute of Aix-Marseille", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52607033" + ], + "preferred": "Q52607033" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00621wh10.json b/v1.47/v1/00621wh10.json new file mode 100644 index 000000000..3a563c827 --- /dev/null +++ b/v1.47/v1/00621wh10.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00621wh10", + "name": "Klinik Hietzing", + "email_address": null, + "ip_addresses": [], + "established": 1907, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Wiener Krankenanstaltenverbund", + "type": "Parent", + "id": "https://ror.org/02egw6w85" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.wienkav.at/kav/khr/" + ], + "aliases": [ + "Hietzing Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "GRID": { + "all": "grid.414065.2", + "preferred": "grid.414065.2" + }, + "ISNI": { + "all": [ + "0000 0004 0522 8776" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0064e3s97.json b/v1.47/v1/0064e3s97.json new file mode 100644 index 000000000..3fe158c3e --- /dev/null +++ b/v1.47/v1/0064e3s97.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/0064e3s97", + "name": "Alba Graduate Business School, The American College of Greece", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.98376, + "lng": 23.72784, + "state": null, + "state_code": null, + "city": "Athens", + "geonames_city": { + "id": 264371, + "city": "Athens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.alba.edu.gr/Pages/Default.aspx" + ], + "aliases": [ + "ALBA Graduate Business School" + ], + "acronyms": [ + "ALBA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ALBA_Graduate_Business_School", + "labels": [], + "country": { + "country_name": "Greece", + "country_code": "GR" + }, + "external_ids": { + "GRID": { + "all": "grid.438302.e", + "preferred": "grid.438302.e" + }, + "ISNI": { + "all": [ + "0000 0004 0622 5454" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4652250" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/006a7pj43.json b/v1.47/v1/006a7pj43.json new file mode 100644 index 000000000..46272eb8b --- /dev/null +++ b/v1.47/v1/006a7pj43.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/006a7pj43", + "name": "Centre hospitalier universitaire de Québec", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpital Saint-François d'Assise", + "type": "Child", + "id": "https://ror.org/02r1pzn16" + }, + { + "label": "Hôpital du Saint-Sacrement", + "type": "Child", + "id": "https://ror.org/002zghs56" + }, + { + "label": "Université Laval", + "type": "Related", + "id": "https://ror.org/04sjchr03" + }, + { + "label": "Centre hospitalier de l'Université Laval", + "type": "Child", + "id": "https://ror.org/041v96n47" + } + ], + "addresses": [ + { + "lat": 46.81228, + "lng": -71.21454, + "state": null, + "state_code": null, + "city": "Québec", + "geonames_city": { + "id": 6325494, + "city": "Québec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chudequebec.ca" + ], + "aliases": [], + "acronyms": [ + "CHUQ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Centre_hospitalier_universitaire_de_Qu%C3%A9bec", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.411081.d", + "preferred": "grid.411081.d" + }, + "ISNI": { + "all": [ + "0000 0000 9471 1794" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5062640" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/006gmme17.json b/v1.47/v1/006gmme17.json new file mode 100644 index 000000000..bc2cddf9d --- /dev/null +++ b/v1.47/v1/006gmme17.json @@ -0,0 +1,191 @@ +{ + "id": "https://ror.org/006gmme17", + "name": "United States Air Force", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Air Force Institute of Technology", + "type": "Child", + "id": "https://ror.org/03f9f1d95" + }, + { + "label": "Air University", + "type": "Child", + "id": "https://ror.org/05jwcsm16" + }, + { + "label": "David Grant USAF Medical Center", + "type": "Child", + "id": "https://ror.org/05ya3ee02" + }, + { + "label": "Edwards Air Force Base", + "type": "Child", + "id": "https://ror.org/0079vgv93" + }, + { + "label": "Eglin Air Force Base", + "type": "Child", + "id": "https://ror.org/002c7zk35" + }, + { + "label": "Grand Forks Air Force Base", + "type": "Child", + "id": "https://ror.org/05r830x40" + }, + { + "label": "Hanscom Air Force Base", + "type": "Child", + "id": "https://ror.org/03fvtr511" + }, + { + "label": "Holloman Air Force Base", + "type": "Child", + "id": "https://ror.org/030bv9h77" + }, + { + "label": "Joint Base San Antonio", + "type": "Child", + "id": "https://ror.org/02jxznk77" + }, + { + "label": "Kirtland Air Force Base", + "type": "Child", + "id": "https://ror.org/04erk7g84" + }, + { + "label": "Maxwell Air Force Base", + "type": "Child", + "id": "https://ror.org/005278833" + }, + { + "label": "Patrick Air Force Base", + "type": "Child", + "id": "https://ror.org/00ayb2728" + }, + { + "label": "Tinker Air Force Base", + "type": "Child", + "id": "https://ror.org/03h2cp518" + }, + { + "label": "United States Air Force Academy", + "type": "Child", + "id": "https://ror.org/0055d0g64" + }, + { + "label": "United States Air Force Research Laboratory", + "type": "Child", + "id": "https://ror.org/02e2egq70" + }, + { + "label": "Wright-Patterson Air Force Base", + "type": "Child", + "id": "https://ror.org/0097e1k27" + }, + { + "label": "Community Coordinated Modeling Center", + "type": "Child", + "id": "https://ror.org/01dy3j343" + }, + { + "label": "Air Force Materiel Command", + "type": "Child", + "id": "https://ror.org/02m4c1x70" + }, + { + "label": "United States Department of the Air Force", + "type": "Parent", + "id": "https://ror.org/01973x930" + }, + { + "label": "Uniformed Services University of the Health Sciences", + "type": "Related", + "id": "https://ror.org/04r3kq386" + } + ], + "addresses": [ + { + "lat": 38.88101, + "lng": -77.10428, + "state": null, + "state_code": null, + "city": "Arlington", + "geonames_city": { + "id": 4744709, + "city": "Arlington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.airforce.com/" + ], + "aliases": [ + "U.S. Air Force" + ], + "acronyms": [ + "USAF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_States_Air_Force", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.453002.0", + "preferred": "grid.453002.0" + }, + "ISNI": { + "all": [ + "0000 0001 2331 3497" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q11223" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/006pyvd89.json b/v1.47/v1/006pyvd89.json new file mode 100644 index 000000000..ab4de6fd5 --- /dev/null +++ b/v1.47/v1/006pyvd89.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/006pyvd89", + "name": "Arkansas State University", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Arkansas State University System", + "type": "Parent", + "id": "https://ror.org/0152qkr29" + } + ], + "addresses": [ + { + "lat": 35.8423, + "lng": -90.70428, + "state": null, + "state_code": null, + "city": "Jonesboro", + "geonames_city": { + "id": 4116834, + "city": "Jonesboro", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.astate.edu" + ], + "aliases": [ + "A-State" + ], + "acronyms": [ + "ASU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Arkansas_State_University", + "labels": [ + { + "label": "Université d'État de l'arkansas", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.252381.f", + "preferred": "grid.252381.f" + }, + "ISNI": { + "all": [ + "0000 0001 2169 5989" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q500131" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/007gerq75.json b/v1.47/v1/007gerq75.json new file mode 100644 index 000000000..d599f46c5 --- /dev/null +++ b/v1.47/v1/007gerq75.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/007gerq75", + "name": "AIMST University", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.72743, + "lng": 100.50876, + "state": null, + "state_code": null, + "city": "Bedong", + "geonames_city": { + "id": 1734439, + "city": "Bedong", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://aimst.edu.my" + ], + "aliases": [ + "Asian Institute of Medicine, Science and Technology" + ], + "acronyms": [ + "AIMST" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/AIMST_University", + "labels": [], + "country": { + "country_name": "Malaysia", + "country_code": "MY" + }, + "external_ids": { + "GRID": { + "all": "grid.444449.d", + "preferred": "grid.444449.d" + }, + "ISNI": { + "all": [ + "0000 0004 0627 9137" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q24187334" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/007kf2g74.json b/v1.47/v1/007kf2g74.json new file mode 100644 index 000000000..716806e23 --- /dev/null +++ b/v1.47/v1/007kf2g74.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/007kf2g74", + "name": "Gamesa (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Siemens Gamesa Renewable Energy (Spain)", + "type": "Successor", + "id": "https://ror.org/02jfvys57" + } + ], + "addresses": [ + { + "lat": 43.286, + "lng": -2.87, + "state": null, + "state_code": null, + "city": "Zamudio", + "geonames_city": { + "id": 3104339, + "city": "Zamudio", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.gamesacorp.com/en/" + ], + "aliases": [ + "Gamesa Corporación Tecnológica", + "Grupo Auxiliar Metalúrgico" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gamesa_Corporaci%C3%B3n_Tecnol%C3%B3gica", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.424904.f", + "preferred": "grid.424904.f" + }, + "Wikidata": { + "all": [ + "Q1493131" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/007x3c094.json b/v1.47/v1/007x3c094.json new file mode 100644 index 000000000..8c685c4af --- /dev/null +++ b/v1.47/v1/007x3c094.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/007x3c094", + "name": "Délégation Paris-Villejuif-03", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 48.76496, + "lng": 2.3961, + "state": null, + "state_code": null, + "city": "Thiais", + "geonames_city": { + "id": 2972893, + "city": "Thiais", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.dr1.cnrs.fr/spip.php?article118" + ], + "aliases": [], + "acronyms": [ + "DR03" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457096.9", + "preferred": "grid.457096.9" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/007zyap28.json b/v1.47/v1/007zyap28.json new file mode 100644 index 000000000..fea928943 --- /dev/null +++ b/v1.47/v1/007zyap28.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/007zyap28", + "name": "Queensland Department of Natural Resources, Mines and Energy", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Queensland Government", + "type": "Parent", + "id": "https://ror.org/037405308" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dnrm.qld.gov.au/" + ], + "aliases": [ + "Department of Natural Resources, Mines and Energy" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Natural_Resources,_Mines_and_Energy", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.492996.9", + "preferred": "grid.492996.9" + }, + "Wikidata": { + "all": [ + "Q5260420" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00892tw58.json b/v1.47/v1/00892tw58.json new file mode 100644 index 000000000..7e3cdce6d --- /dev/null +++ b/v1.47/v1/00892tw58.json @@ -0,0 +1,129 @@ +{ + "id": "https://ror.org/00892tw58", + "name": "University of Adelaide", + "email_address": null, + "ip_addresses": [], + "established": 1874, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Freemasons Foundation Centre for Men's Health", + "type": "Child", + "id": "https://ror.org/043t7b640" + }, + { + "label": "Hanson Institute", + "type": "Related", + "id": "https://ror.org/047kx5j58" + }, + { + "label": "Lyell McEwin Hospital", + "type": "Related", + "id": "https://ror.org/00pjm1054" + }, + { + "label": "Modbury Hospital", + "type": "Related", + "id": "https://ror.org/03pa4y709" + }, + { + "label": "Royal Adelaide Hospital", + "type": "Related", + "id": "https://ror.org/00carf720" + }, + { + "label": "Women's and Children's Hospital", + "type": "Related", + "id": "https://ror.org/03kwrfk72" + }, + { + "label": "Sir Mark Mitchell Research Foundation", + "type": "Related", + "id": "https://ror.org/000ghw467" + }, + { + "label": "Stawell Underground Physics Laboratory", + "type": "Related", + "id": "https://ror.org/01az7g189" + } + ], + "addresses": [ + { + "lat": -34.92866, + "lng": 138.59863, + "state": null, + "state_code": null, + "city": "Adelaide", + "geonames_city": { + "id": 2078025, + "city": "Adelaide", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.adelaide.edu.au/" + ], + "aliases": [ + "Adelaide Uni" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Adelaide", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1010.0", + "preferred": "grid.1010.0" + }, + "ISNI": { + "all": [ + "0000 0004 1936 7304" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q15574" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/008fkr426.json b/v1.47/v1/008fkr426.json new file mode 100644 index 000000000..f0501f15c --- /dev/null +++ b/v1.47/v1/008fkr426.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/008fkr426", + "name": "Institutul Naţional de Cercetare-Dezvoltare în Turism", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.43225, + "lng": 26.10626, + "state": null, + "state_code": null, + "city": "Bucharest", + "geonames_city": { + "id": 683506, + "city": "Bucharest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://incdt.ro" + ], + "aliases": [ + "National Institute for Research and Development in Tourism" + ], + "acronyms": [ + "INCDT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institutul Naţional de Cercetare - Dezvoltare în Turism", + "iso639": "ro" + } + ], + "country": { + "country_name": "Romania", + "country_code": "RO" + }, + "external_ids": { + "GRID": { + "all": "grid.502044.7", + "preferred": "grid.502044.7" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/009b9n257.json b/v1.47/v1/009b9n257.json new file mode 100644 index 000000000..a0a1330b1 --- /dev/null +++ b/v1.47/v1/009b9n257.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/009b9n257", + "name": "Swedish Infrastructure for Ecosystem Science", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Swedish University of Agricultural Sciences", + "type": "Parent", + "id": "https://ror.org/02yy8x990" + } + ], + "addresses": [ + { + "lat": 59.85882, + "lng": 17.63889, + "state": null, + "state_code": null, + "city": "Uppsala", + "geonames_city": { + "id": 2666199, + "city": "Uppsala", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fieldsites.se" + ], + "aliases": [], + "acronyms": [ + "SITES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/00axme198.json b/v1.47/v1/00axme198.json new file mode 100644 index 000000000..7cc34f4e5 --- /dev/null +++ b/v1.47/v1/00axme198.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00axme198", + "name": "Nordregio", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.32938, + "lng": 18.06871, + "state": null, + "state_code": null, + "city": "Stockholm", + "geonames_city": { + "id": 2673730, + "city": "Stockholm", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nordregio.org" + ], + "aliases": [ + "Nordic Centre for Spatial Development" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "GRID": { + "all": "grid.425827.e", + "preferred": "grid.425827.e" + }, + "ISNI": { + "all": [ + "0000 0001 2104 9688" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00bjjqs38.json b/v1.47/v1/00bjjqs38.json new file mode 100644 index 000000000..17764e18b --- /dev/null +++ b/v1.47/v1/00bjjqs38.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/00bjjqs38", + "name": "Délégation Rhône Auvergne", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Institut National de l'Énergie Solaire", + "type": "Child", + "id": "https://ror.org/00qk0vr83" + }, + { + "label": "Laboratoire de Biotechnologies Végétales Appliquées aux Plantes Aromatiques et Médicinales", + "type": "Child", + "id": "https://ror.org/01j6cta96" + }, + { + "label": "Laboratoire de Spectrométrie Ionique et Moléculaire", + "type": "Child", + "id": "https://ror.org/04b9q5f39" + }, + { + "label": "Laboratoire des Procédés en Milieux Granulaires Granulaires", + "type": "Child", + "id": "https://ror.org/028fzwe08" + }, + { + "label": "The European Center for High Field NMR", + "type": "Child", + "id": "https://ror.org/00j29pk38" + }, + { + "label": "Virology and Human Pathology", + "type": "Child", + "id": "https://ror.org/031xg0236" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 45.76601, + "lng": 4.8795, + "state": null, + "state_code": null, + "city": "Villeurbanne", + "geonames_city": { + "id": 2968254, + "city": "Villeurbanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rhone-auvergne.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR7" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457029.d", + "preferred": "grid.457029.d" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00c9gh315.json b/v1.47/v1/00c9gh315.json new file mode 100644 index 000000000..09bb2b128 --- /dev/null +++ b/v1.47/v1/00c9gh315.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00c9gh315", + "name": "Solusi University", + "email_address": null, + "ip_addresses": [], + "established": 1894, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -20.15, + "lng": 28.58333, + "state": null, + "state_code": null, + "city": "Bulawayo", + "geonames_city": { + "id": 894701, + "city": "Bulawayo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.solusi.ac.zw/" + ], + "aliases": [ + "Solusi College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Solusi_University", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.442705.0", + "preferred": "grid.442705.0" + }, + "ISNI": { + "all": [ + "0000 0004 0648 4675" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5308248" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00cz47042.json b/v1.47/v1/00cz47042.json new file mode 100644 index 000000000..9606838b0 --- /dev/null +++ b/v1.47/v1/00cz47042.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00cz47042", + "name": "National Museum of Natural History", + "email_address": null, + "ip_addresses": [], + "established": 1910, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Laboratories of Analytical Biology", + "type": "Child", + "id": "https://ror.org/05b8c0r92" + }, + { + "label": "Smithsonian Institution", + "type": "Parent", + "id": "https://ror.org/01pp8nd67" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://naturalhistory.si.edu" + ], + "aliases": [], + "acronyms": [ + "NMNH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Museum_of_Natural_History", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.453560.1", + "preferred": "grid.453560.1" + }, + "ISNI": { + "all": [ + "0000 0001 2192 7591" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q148554" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00d9ah105.json b/v1.47/v1/00d9ah105.json new file mode 100644 index 000000000..858094cf1 --- /dev/null +++ b/v1.47/v1/00d9ah105.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/00d9ah105", + "name": "University of California, Merced", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Sevilleta Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/01qcacz92" + } + ], + "addresses": [ + { + "lat": 37.30216, + "lng": -120.48297, + "state": null, + "state_code": null, + "city": "Merced", + "geonames_city": { + "id": 5372253, + "city": "Merced", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ucmerced.edu" + ], + "aliases": [ + "UC Merced" + ], + "acronyms": [ + "UCM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_California,_Merced", + "labels": [ + { + "label": "Universidad de California en Merced", + "iso639": "es" + }, + { + "label": "Université de Californie à Merced", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.266096.d", + "preferred": "grid.266096.d" + }, + "ISNI": { + "all": [ + "0000 0001 0049 1282" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1728622" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00dgcm453.json b/v1.47/v1/00dgcm453.json new file mode 100644 index 000000000..d2c585d61 --- /dev/null +++ b/v1.47/v1/00dgcm453.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/00dgcm453", + "name": "Spanish Multiple Sclerosis Network", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.reem.es" + ], + "aliases": [], + "acronyms": [ + "REEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Red Española de Esclerosis Múltiple", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.483890.e", + "preferred": "grid.483890.e" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00dh5gw98.json b/v1.47/v1/00dh5gw98.json new file mode 100644 index 000000000..d34cca817 --- /dev/null +++ b/v1.47/v1/00dh5gw98.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/00dh5gw98", + "name": "Ministry of Education", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Institutul National de Cercetare si Dezvoltare pentru Fizica Pamantului", + "type": "Child", + "id": "https://ror.org/005m99512" + }, + { + "label": "Government of Romania", + "type": "Parent", + "id": "https://ror.org/00e6nys21" + }, + { + "label": "Colegiul Consultativ pentru Cercetare-Dezvoltare şi Inovare", + "type": "Child", + "id": "https://ror.org/03mc0m715" + } + ], + "addresses": [ + { + "lat": 44.43225, + "lng": 26.10626, + "state": null, + "state_code": null, + "city": "Bucharest", + "geonames_city": { + "id": 683506, + "city": "Bucharest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.edu.ro/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_National_Education_(Romania)", + "labels": [ + { + "label": "Ministerul Educației și Cercetării Științifice", + "iso639": "ro" + } + ], + "country": { + "country_name": "Romania", + "country_code": "RO" + }, + "external_ids": { + "GRID": { + "all": "grid.454862.9", + "preferred": "grid.454862.9" + }, + "ISNI": { + "all": [ + "0000 0001 2110 0316" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1583546" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00dy23r24.json b/v1.47/v1/00dy23r24.json new file mode 100644 index 000000000..71efe5a96 --- /dev/null +++ b/v1.47/v1/00dy23r24.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00dy23r24", + "name": "Bagadhar Brahma Kishan College", + "email_address": null, + "ip_addresses": [], + "established": 1978, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Gauhati University", + "type": "Related", + "id": "https://ror.org/01ppj9r51" + } + ], + "addresses": [ + { + "lat": 26.11667, + "lng": 92.3, + "state": null, + "state_code": null, + "city": "Bar Jalāh", + "geonames_city": { + "id": 1276937, + "city": "Bar Jalāh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bbkishancollege.ac.in" + ], + "aliases": [ + "B. B. Kishan College" + ], + "acronyms": [ + "BBKC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bagadhar_Brahma_Kishan_College", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q4841390" + ], + "preferred": "Q4841390" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00e50mf91.json b/v1.47/v1/00e50mf91.json new file mode 100644 index 000000000..6e74060c9 --- /dev/null +++ b/v1.47/v1/00e50mf91.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/00e50mf91", + "name": "International Network of Nuclear Reaction Data Centres", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "International Atomic Energy Agency", + "type": "Parent", + "id": "https://ror.org/02zt1gg83" + }, + { + "label": "Nuclear Energy Agency", + "type": "Parent", + "id": "https://ror.org/01xy6f245" + }, + { + "label": "Japan Atomic Energy Agency", + "type": "Parent", + "id": "https://ror.org/05nf86y53" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nds.iaea.org/nrdc/" + ], + "aliases": [], + "acronyms": [ + "NRDC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/00eqwze33.json b/v1.47/v1/00eqwze33.json new file mode 100644 index 000000000..85d328b63 --- /dev/null +++ b/v1.47/v1/00eqwze33.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00eqwze33", + "name": "Basque Centre for Climate Change", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.26271, + "lng": -2.92528, + "state": null, + "state_code": null, + "city": "Bilbao", + "geonames_city": { + "id": 3128026, + "city": "Bilbao", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bc3research.org/" + ], + "aliases": [ + "Basque Excellence Research Centre" + ], + "acronyms": [ + "BC3", + "BERC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centro Vasco para el Cambio Climático", + "iso639": "es" + }, + { + "label": "Klima Aldaketa Ikergai", + "iso639": "eu" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.423984.0", + "preferred": "grid.423984.0" + }, + "ISNI": { + "all": [ + "0000 0001 2002 0998" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00evhj411.json b/v1.47/v1/00evhj411.json new file mode 100644 index 000000000..a58ed98ea --- /dev/null +++ b/v1.47/v1/00evhj411.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00evhj411", + "name": "St. Francis Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1913, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.61282, + "lng": -86.37416, + "state": null, + "state_code": null, + "city": "Mooresville", + "geonames_city": { + "id": 4261585, + "city": "Mooresville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.franciscanhealth.org/find-a-location/franciscan-health-mooresville-220030" + ], + "aliases": [ + "Kendrick Hospital", + "St. Francis Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Franciscan Health Mooresville", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.416638.e", + "preferred": "grid.416638.e" + }, + "Wikidata": { + "all": [ + "Q30280950" + ], + "preferred": "Q30280950" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00fzg0656.json b/v1.47/v1/00fzg0656.json new file mode 100644 index 000000000..5bb9a0fca --- /dev/null +++ b/v1.47/v1/00fzg0656.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/00fzg0656", + "name": "Crystal Impact (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.73438, + "lng": 7.09549, + "state": null, + "state_code": null, + "city": "Bonn", + "geonames_city": { + "id": 2946447, + "city": "Bonn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.crystalimpact.com/Default.htm" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Crystal Impact", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/00gjmje40.json b/v1.47/v1/00gjmje40.json new file mode 100644 index 000000000..5c542cb06 --- /dev/null +++ b/v1.47/v1/00gjmje40.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00gjmje40", + "name": "Samsung Science and Technology Foundation (South Korea)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.49447, + "lng": 127.01088, + "state": null, + "state_code": null, + "city": "Seocho-gu", + "geonames_city": { + "id": 8349535, + "city": "Seocho-gu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://samsungstf.org" + ], + "aliases": [ + "Samsung Future Technology Foundation", + "Samsung Science & Technology Foundation" + ], + "acronyms": [ + "SSTF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "삼성미래기술육성재단", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8306 5570" + ], + "preferred": "0000 0004 8306 5570" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00h40a794.json b/v1.47/v1/00h40a794.json new file mode 100644 index 000000000..b14202289 --- /dev/null +++ b/v1.47/v1/00h40a794.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00h40a794", + "name": "International Ice Hockey Federation", + "email_address": null, + "ip_addresses": [], + "established": 1908, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iihf.com" + ], + "aliases": [], + "acronyms": [ + "IIHF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_Ice_Hockey_Federation", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.497634.b", + "preferred": "grid.497634.b" + }, + "ISNI": { + "all": [ + "0000 0001 2190 2714" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00hjhrf26.json b/v1.47/v1/00hjhrf26.json new file mode 100644 index 000000000..fe37d5982 --- /dev/null +++ b/v1.47/v1/00hjhrf26.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00hjhrf26", + "name": "European Research University, z.ú", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.77984, + "lng": 18.43688, + "state": null, + "state_code": null, + "city": "Havířov", + "geonames_city": { + "id": 3075921, + "city": "Havířov", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vs-prigo.cz" + ], + "aliases": [ + "European Research University" + ], + "acronyms": [ + "ERUNI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Evropská výzkumná univerzita, z.ú.", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/00hy22508.json b/v1.47/v1/00hy22508.json new file mode 100644 index 000000000..adad5598e --- /dev/null +++ b/v1.47/v1/00hy22508.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/00hy22508", + "name": "Délégation Paris Michel-Ange", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Center for the Sociology of Innovation", + "type": "Child", + "id": "https://ror.org/00a8p0m24" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.paris-normandie.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR16" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457023.7", + "preferred": "grid.457023.7" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00j7bab93.json b/v1.47/v1/00j7bab93.json new file mode 100644 index 000000000..6b6037de0 --- /dev/null +++ b/v1.47/v1/00j7bab93.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00j7bab93", + "name": "Ho Technical University", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.60084, + "lng": 0.4713, + "state": null, + "state_code": null, + "city": "Ho", + "geonames_city": { + "id": 2300379, + "city": "Ho", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://htu.edu.gh" + ], + "aliases": [ + "Ho Polytechnic" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ho_Polytechnic", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.466731.1", + "preferred": "grid.466731.1" + }, + "ISNI": { + "all": [ + "0000 0004 5897 6831" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1325425" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00j9qzp88.json b/v1.47/v1/00j9qzp88.json new file mode 100644 index 000000000..379beeba2 --- /dev/null +++ b/v1.47/v1/00j9qzp88.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00j9qzp88", + "name": "Nordic International University", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.26465, + "lng": 69.21627, + "state": null, + "state_code": null, + "city": "Tashkent", + "geonames_city": { + "id": 1512569, + "city": "Tashkent", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nordicuniversity.org" + ], + "aliases": [], + "acronyms": [ + "NIU", + "XNU", + "МУН" + ], + "status": "active", + "wikipedia_url": "https://uz.wikipedia.org/wiki/Xalqaro_Nordik_Universiteti_%28XNU%2C_NIU%29", + "labels": [ + { + "label": "Xalqaro Nordik universiteti", + "iso639": "uz" + }, + { + "label": "Международный Университет Нордик", + "iso639": "ru" + } + ], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1402 0157" + ], + "preferred": "0000 0005 1402 0157" + }, + "Wikidata": { + "all": [ + "Q114076881" + ], + "preferred": "Q114076881" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00jj62164.json b/v1.47/v1/00jj62164.json new file mode 100644 index 000000000..37df6140c --- /dev/null +++ b/v1.47/v1/00jj62164.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/00jj62164", + "name": "Centre de Recherche et de Documentation sur l'Océanie (CREDO)", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Aix-Marseille University", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "School for Advanced Studies in the Social Sciences", + "type": "Parent", + "id": "https://ror.org/02d9dg697" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pacific-credo.fr" + ], + "aliases": [], + "acronyms": [ + "CREDO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Centre_de_recherche_et_de_documentation_sur_l%27Oc%C3%A9anie", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1808 0483" + ], + "preferred": "0000 0004 1808 0483" + }, + "Wikidata": { + "all": [ + "Q2945432" + ], + "preferred": "Q2945432" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00jydkt05.json b/v1.47/v1/00jydkt05.json new file mode 100644 index 000000000..8de4d3220 --- /dev/null +++ b/v1.47/v1/00jydkt05.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00jydkt05", + "name": "Fedorovsky Polar State University", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 69.3535, + "lng": 88.2027, + "state": null, + "state_code": null, + "city": "Noril'sk", + "geonames_city": { + "id": 1497337, + "city": "Noril'sk", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://polaruniversity.ru" + ], + "aliases": [ + "Federal State Budgetary Educational Institution of Higher Professional Education “Fedorovsky Polar State University”", + "Federal State Budgetary Educational Institution of Higher Professional Education “Norilsk State Industrial Institute”", + "Norilsk Evening Industrial Institute", + "Norilsk State Industrial Institute", + "Norilskiy Industrialnyy Institut", + "Polar State University", + "Норильский Индустриальный Институт" + ], + "acronyms": [ + "NSII" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Федеральное Государственное Бюджетное Образовательное Учреждение Высшего Образования «заполярный Государственный Университет Им. Н.М. Федоровского»", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.445300.6", + "preferred": "grid.445300.6" + }, + "ISNI": { + "all": [ + "0000 0001 0504 1782" + ], + "preferred": "0000 0001 0504 1782" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00krdxg91.json b/v1.47/v1/00krdxg91.json new file mode 100644 index 000000000..065d7cb17 --- /dev/null +++ b/v1.47/v1/00krdxg91.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00krdxg91", + "name": "Ono Medical Research Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 34.69379, + "lng": 135.50107, + "state": null, + "state_code": null, + "city": "Osaka", + "geonames_city": { + "id": 1853909, + "city": "Osaka", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6044 034X" + ], + "preferred": "0000 0004 6044 034X" + }, + "Wikidata": { + "all": [ + "Q45131237" + ], + "preferred": "Q45131237" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00mkz4t33.json b/v1.47/v1/00mkz4t33.json new file mode 100644 index 000000000..01346c39b --- /dev/null +++ b/v1.47/v1/00mkz4t33.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/00mkz4t33", + "name": "BIMM University", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.82838, + "lng": -0.13947, + "state": null, + "state_code": null, + "city": "Brighton", + "geonames_city": { + "id": 2654710, + "city": "Brighton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bimm.university" + ], + "aliases": [ + "BIMM Institute", + "BIMM University Ltd", + "Brighton Institute of Modern Music", + "British and Irish Modern Music Institute" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/BIMM_University", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0485 3078" + ], + "preferred": "0000 0004 0485 3078" + }, + "Wikidata": { + "all": [ + "Q4967681" + ], + "preferred": "Q4967681" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00n2c0309.json b/v1.47/v1/00n2c0309.json new file mode 100644 index 000000000..4ee6479da --- /dev/null +++ b/v1.47/v1/00n2c0309.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00n2c0309", + "name": "ABSys", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "International Centre for Advanced Mediterranean Agronomic Studies", + "type": "Parent", + "id": "https://ror.org/04abkkz03" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "L'Institut Agro", + "type": "Parent", + "id": "https://ror.org/01dkyve95" + }, + { + "label": "Tropical and Mediterranean Cropping System Functioning and Management", + "type": "Predecessor", + "id": "https://ror.org/033x0mt18" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://umr-absys.cirad.fr" + ], + "aliases": [ + "Agrosystèmes Biodiversifiés", + "UMR ABSys", + "UMR Agrosystèmes Biodiversifiés" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/00n6rde07.json b/v1.47/v1/00n6rde07.json new file mode 100644 index 000000000..86310d891 --- /dev/null +++ b/v1.47/v1/00n6rde07.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00n6rde07", + "name": "Institute of Haematology and Blood Transfusion", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uhkt.cz" + ], + "aliases": [], + "acronyms": [ + "IHBT", + "ÚHKT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Ústav hematologie a krevní transfuze", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.419035.a", + "preferred": "grid.419035.a" + }, + "ISNI": { + "all": [ + "0000 0000 8965 6006" + ], + "preferred": "0000 0000 8965 6006" + }, + "Wikidata": { + "all": [ + "Q30281951" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00n8d6z93.json b/v1.47/v1/00n8d6z93.json new file mode 100644 index 000000000..4094137cf --- /dev/null +++ b/v1.47/v1/00n8d6z93.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00n8d6z93", + "name": "Centre Inria de l'Université Grenoble Alpes", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French Institute for Research in Computer Science and Automation", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + } + ], + "addresses": [ + { + "lat": 45.22537, + "lng": 5.8017, + "state": null, + "state_code": null, + "city": "Montbonnot-Saint-Martin", + "geonames_city": { + "id": 2992908, + "city": "Montbonnot-Saint-Martin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inria.fr/fr/centre-inria-universite-grenoble-alpes" + ], + "aliases": [ + "Centre de recherche Inria Grenoble - Rhône-Alpes", + "Inria Grenoble - Rhône-Alpes research centre" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457351.1", + "preferred": "grid.457351.1" + }, + "Wikidata": { + "all": [ + "Q30299481" + ], + "preferred": "Q30299481" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00p0app75.json b/v1.47/v1/00p0app75.json new file mode 100644 index 000000000..a41f60066 --- /dev/null +++ b/v1.47/v1/00p0app75.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00p0app75", + "name": "Observatorio Científico Comercio Interior", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Facility", + "Government" + ], + "relationships": [ + { + "label": "Ministerio del Comercio Interior", + "type": "Parent", + "id": "https://ror.org/04vzt1785" + } + ], + "addresses": [ + { + "lat": 23.13302, + "lng": -82.38304, + "state": null, + "state_code": null, + "city": "Havana", + "geonames_city": { + "id": 3553478, + "city": "Havana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://observatorio.mincin.gob.cu" + ], + "aliases": [], + "acronyms": [ + "OCI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Cuba", + "country_code": "CU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/00p1tkb89.json b/v1.47/v1/00p1tkb89.json new file mode 100644 index 000000000..5b6472c6a --- /dev/null +++ b/v1.47/v1/00p1tkb89.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/00p1tkb89", + "name": "Rubin", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 63.43049, + "lng": 10.39506, + "state": null, + "state_code": null, + "city": "Trondheim", + "geonames_city": { + "id": 3133880, + "city": "Trondheim", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.rubin.no/index.php/en/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "GRID": { + "all": "grid.459047.b", + "preferred": "grid.459047.b" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00p4n8p47.json b/v1.47/v1/00p4n8p47.json new file mode 100644 index 000000000..a8f3f1292 --- /dev/null +++ b/v1.47/v1/00p4n8p47.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00p4n8p47", + "name": "Presbyterian College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1848, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Education, Winneba", + "type": "Related", + "id": "https://ror.org/00y1ekh28" + } + ], + "addresses": [ + { + "lat": 5.97462, + "lng": -0.08542, + "state": null, + "state_code": null, + "city": "Akropong", + "geonames_city": { + "id": 2305027, + "city": "Akropong", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pce.edu.gh" + ], + "aliases": [ + "Akropong College of Education", + "Basel Mission Seminary, Akropong", + "PCE Akropong", + "Presbyterian College of Education, Akropong", + "Presbyterian College of Education, Akropong-Akuapem", + "Presbyterian Training College, Akropong", + "Scottish Mission Teacher Training College" + ], + "acronyms": [ + "PCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Presbyterian_College_of_Education%2C_Akropong", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q48800046" + ], + "preferred": "Q48800046" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00pd74e08.json b/v1.47/v1/00pd74e08.json new file mode 100644 index 000000000..e9dea3bda --- /dev/null +++ b/v1.47/v1/00pd74e08.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/00pd74e08", + "name": "University of Münster", + "email_address": null, + "ip_addresses": [], + "established": 1780, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University Hospital Münster", + "type": "Related", + "id": "https://ror.org/01856cw59" + }, + { + "label": "European Research Center for Information Systems", + "type": "Related", + "id": "https://ror.org/032a28f65" + } + ], + "addresses": [ + { + "lat": 51.96236, + "lng": 7.62571, + "state": null, + "state_code": null, + "city": "Münster", + "geonames_city": { + "id": 2867543, + "city": "Münster", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni-muenster.de" + ], + "aliases": [ + "Universitaet Muenster", + "University of Muenster", + "Westfälische Wilhelms-Universität Münster" + ], + "acronyms": [ + "WWU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_M%C3%BCnster", + "labels": [ + { + "label": "Universität Münster", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.5949.1", + "preferred": "grid.5949.1" + }, + "ISNI": { + "all": [ + "0000 0001 2172 9288" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q168426" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00pffe521.json b/v1.47/v1/00pffe521.json new file mode 100644 index 000000000..b3644ac93 --- /dev/null +++ b/v1.47/v1/00pffe521.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00pffe521", + "name": "Arrupe Jesuit University", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -17.82772, + "lng": 31.05337, + "state": null, + "state_code": null, + "city": "Harare", + "geonames_city": { + "id": 890299, + "city": "Harare", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aju.ac.zw/" + ], + "aliases": [ + "Arrupe College" + ], + "acronyms": [ + "AC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.501395.b", + "preferred": "grid.501395.b" + }, + "ISNI": { + "all": [ + "0000 0004 0648 4990" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q22032220" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00pg6eq24.json b/v1.47/v1/00pg6eq24.json new file mode 100644 index 000000000..a41bdb45d --- /dev/null +++ b/v1.47/v1/00pg6eq24.json @@ -0,0 +1,490 @@ +{ + "id": "https://ror.org/00pg6eq24", + "name": "University of Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 1538, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Biomatériaux et Bioingénierie", + "type": "Child", + "id": "https://ror.org/05vcax154" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bureau for Economic Theory and Applications", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Hubert Curien Pluridisciplinary Institute", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Charles Sadron", + "type": "Child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "Child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "Child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "Child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "Child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Laboratoire Image, Ville, Environnement", + "type": "Child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", + "type": "Child", + "id": "https://ror.org/008pt4x48" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "Child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratoire de Chémo-biologie synthétique et thérapeutique", + "type": "Child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "Child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Mitochondrie, stress oxydant et protection musculaire", + "type": "Child", + "id": "https://ror.org/05sc3hd12" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Societies, Actors and Governement in Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Laboratoire Interuniversitaire des Sciences de l'Education et de la Communication", + "type": "Child", + "id": "https://ror.org/04n2vwk08" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "Child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Institute for Translational Medicine and Liver Disease", + "type": "Child", + "id": "https://ror.org/00jvqbw52" + }, + { + "label": "Chronobiotron", + "type": "Child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "Child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "Child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "Child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "Child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Archives Henri-Poincaré - Philosophie et Recherches sur les Sciences et les Technologies", + "type": "Child", + "id": "https://ror.org/02fdf4056" + }, + { + "label": "Médecine Cardiovasculaire Translationnelle", + "type": "Child", + "id": "https://ror.org/010e21634" + }, + { + "label": "Neuroscience et Psychiatrie Translationnelle de Strasbourg", + "type": "Child", + "id": "https://ror.org/05dd6kb95" + }, + { + "label": "Approches contemporaines de la création et de la réflexion artistiques", + "type": "Child", + "id": "https://ror.org/01x3qz996" + }, + { + "label": "Centre d'analyse des rhétoriques religieuses de l'Antiquité", + "type": "Child", + "id": "https://ror.org/05a26ag16" + }, + { + "label": "Centre d'études internationales et européennes", + "type": "Child", + "id": "https://ror.org/00gm7ct78" + }, + { + "label": "Centre de droit privé fondamental", + "type": "Child", + "id": "https://ror.org/03597ek14" + }, + { + "label": "Diabète et thérapie cellulaire", + "type": "Child", + "id": "https://ror.org/02wj62e51" + }, + { + "label": "Immuno-Rhumathologie moléculaire", + "type": "Child", + "id": "https://ror.org/03k7yrw82" + }, + { + "label": "Laboratoire de Génétique Médicale", + "type": "Child", + "id": "https://ror.org/016wpzq40" + }, + { + "label": "Laboratoire de pharmacologie et de toxicologie neurocardiovasculaire", + "type": "Child", + "id": "https://ror.org/028c6kd10" + }, + { + "label": "Centre de recherches en philosophie allemande et contemporaine", + "type": "Child", + "id": "https://ror.org/02p06sa95" + }, + { + "label": "Configurations littéraires", + "type": "Child", + "id": "https://ror.org/02rnpdm14" + }, + { + "label": "Culture et histoire dans l'espace roman", + "type": "Child", + "id": "https://ror.org/00a19vs18" + }, + { + "label": "Groupe d'études orientales, slaves et néo-helléniques", + "type": "Child", + "id": "https://ror.org/03te95s40" + }, + { + "label": "Humans and management in society", + "type": "Child", + "id": "https://ror.org/04x97hf88" + }, + { + "label": "Laboratoire interdisciplinaire en études culturelles", + "type": "Child", + "id": "https://ror.org/03820wq39" + }, + { + "label": "Laboratoire de psychologie des cognitions", + "type": "Child", + "id": "https://ror.org/02phbwg91" + }, + { + "label": "Laboratoire de recherche du CEIPI", + "type": "Child", + "id": "https://ror.org/009t5dc22" + }, + { + "label": "Laboratoire de recherche en gestion et économie", + "type": "Child", + "id": "https://ror.org/028nd8457" + }, + { + "label": "Linguistique, langues, parole", + "type": "Child", + "id": "https://ror.org/03xrrn515" + }, + { + "label": "Mondes germaniques et nord-européens", + "type": "Child", + "id": "https://ror.org/03c363p94" + }, + { + "label": "Savoirs dans l'espace anglophone : représentations, culture, histoire", + "type": "Child", + "id": "https://ror.org/03n4s8180" + }, + { + "label": "Sport et sciences sociales", + "type": "Child", + "id": "https://ror.org/056d3xj17" + }, + { + "label": "Subjectivité, lien social et modernité", + "type": "Child", + "id": "https://ror.org/04pwapm65" + }, + { + "label": "Théologie catholique et sciences religieuses", + "type": "Child", + "id": "https://ror.org/00w0bpf20" + }, + { + "label": "Théologie protestante", + "type": "Child", + "id": "https://ror.org/03phbpb09" + }, + { + "label": "Arts, civilisation et histoire de l'Europe", + "type": "Child", + "id": "https://ror.org/049513r96" + }, + { + "label": "Pathogens Host Arthropod Vectors Interfaces", + "type": "Child", + "id": "https://ror.org/00m9qza88" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "Related", + "id": "https://ror.org/04bckew43" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unistra.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", + "labels": [ + { + "label": "Universitat d'Estrasburg", + "iso639": "ca" + }, + { + "label": "Universität Straßburg", + "iso639": "de" + }, + { + "label": "Université de Strasbourg", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.11843.3f", + "preferred": "grid.11843.3f" + }, + "ISNI": { + "all": [ + "0000 0001 2157 9291" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q157575" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00qf5qe53.json b/v1.47/v1/00qf5qe53.json new file mode 100644 index 000000000..4af69e365 --- /dev/null +++ b/v1.47/v1/00qf5qe53.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00qf5qe53", + "name": "Marie Curie Alumni Association", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mariecuriealumni.eu" + ], + "aliases": [], + "acronyms": [ + "MCAA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q18206998" + ], + "preferred": "Q18206998" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00qhdy563.json b/v1.47/v1/00qhdy563.json new file mode 100644 index 000000000..be7cd8782 --- /dev/null +++ b/v1.47/v1/00qhdy563.json @@ -0,0 +1,166 @@ +{ + "id": "https://ror.org/00qhdy563", + "name": "Université Paul-Valéry Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Gouvernance, Risque, Environnement, Développement", + "type": "Child", + "id": "https://ror.org/01h4rra97" + }, + { + "label": "Institut de Recherche sur la Renaissance l'Age Classique et les Lumières", + "type": "Child", + "id": "https://ror.org/02sz8cn84" + }, + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "type": "Child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Laboratoire d'Études et de Recherches Appliquées en Sciences Sociales", + "type": "Child", + "id": "https://ror.org/01bxfc994" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "Child", + "id": "https://ror.org/03kbarg82" + }, + { + "label": "Archéologie des Sociétés Méditerranéennes", + "type": "Child", + "id": "https://ror.org/04n9eyw42" + }, + { + "label": "Praxiling", + "type": "Child", + "id": "https://ror.org/03ym2w748" + }, + { + "label": "Centre de Recherche et d'Études Germaniques", + "type": "Child", + "id": "https://ror.org/021hb4c69" + }, + { + "label": "Dynamique des Capacités Humaines et des Conduites de Santé", + "type": "Child", + "id": "https://ror.org/057trhh06" + }, + { + "label": "Laboratoire de Géographie et d'Aménagement de Montpellier", + "type": "Child", + "id": "https://ror.org/00vazrw17" + }, + { + "label": "Savoirs, Environnement, Sociétés", + "type": "Child", + "id": "https://ror.org/04gpe6h67" + }, + { + "label": "Languedoc-Roussillon Universities", + "type": "Parent", + "id": "https://ror.org/04f6hmf16" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-montp3.fr/" + ], + "aliases": [ + "Université Paul Valéry Montpellier 3" + ], + "acronyms": [ + "UPVM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Paul_Val%C3%A9ry_University,_Montpellier_III", + "labels": [ + { + "label": "Université Paul-Valéry Montpellier III", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.440910.8", + "preferred": "grid.440910.8" + }, + "ISNI": { + "all": [ + "0000 0001 2196 152X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2912244" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00r7raa16.json b/v1.47/v1/00r7raa16.json new file mode 100644 index 000000000..31b45351a --- /dev/null +++ b/v1.47/v1/00r7raa16.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00r7raa16", + "name": "Ministry of Defence", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Military Hospital Brno", + "type": "Child", + "id": "https://ror.org/05mq93331" + } + ], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.army.cz/en/" + ], + "aliases": [ + "Ministerstvo Obrany a Armáda České Republiky" + ], + "acronyms": [ + "MOCR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Defence_(Czech_Republic)", + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.447755.0", + "preferred": "grid.447755.0" + }, + "ISNI": { + "all": [ + "0000 0004 0610 2999" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3564646" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00rfexj26.json b/v1.47/v1/00rfexj26.json new file mode 100644 index 000000000..b03b9db05 --- /dev/null +++ b/v1.47/v1/00rfexj26.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/00rfexj26", + "name": "OPERAS", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://operas-eu.org" + ], + "aliases": [ + "OPERAS AISBL", + "OPERAS Research Infrastructure" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q54879577" + ], + "preferred": "Q54879577" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00rk2pe57.json b/v1.47/v1/00rk2pe57.json new file mode 100644 index 000000000..a79ba2278 --- /dev/null +++ b/v1.47/v1/00rk2pe57.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/00rk2pe57", + "name": "Office of Naval Research", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Naval Research Laboratory", + "type": "Child", + "id": "https://ror.org/04d23a975" + }, + { + "label": "Community Coordinated Modeling Center", + "type": "Child", + "id": "https://ror.org/01dy3j343" + }, + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 38.88101, + "lng": -77.10428, + "state": null, + "state_code": null, + "city": "Arlington", + "geonames_city": { + "id": 4744709, + "city": "Arlington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.onr.navy.mil/" + ], + "aliases": [], + "acronyms": [ + "ONR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Office_of_Naval_Research", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.482851.2", + "preferred": "grid.482851.2" + }, + "ISNI": { + "all": [ + "0000 0001 0257 7469" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1063818" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00rt27171.json b/v1.47/v1/00rt27171.json new file mode 100644 index 000000000..e61bb0d84 --- /dev/null +++ b/v1.47/v1/00rt27171.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/00rt27171", + "name": "Laboratory of Pathogens and Host Immunity", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lphi.umontpellier.fr" + ], + "aliases": [ + "Dynamique des Interactions Membranaires Normales et Pathologiques", + "Laboratory of Pathogen-Host Interactions" + ], + "acronyms": [ + "LPHI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratoire des pathogènes et de l'immunité de l'hôte", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464150.2", + "preferred": "grid.464150.2" + }, + "ISNI": { + "all": [ + "0000 0004 0383 9805" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00rydyx93.json b/v1.47/v1/00rydyx93.json new file mode 100644 index 000000000..a76f4c1cc --- /dev/null +++ b/v1.47/v1/00rydyx93.json @@ -0,0 +1,689 @@ +{ + "id": "https://ror.org/00rydyx93", + "name": "Institut des Sciences Biologiques", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "Child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Biochemistry Laboratory", + "type": "Child", + "id": "https://ror.org/01c6vgf77" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Intégrative des Organismes Marins", + "type": "Child", + "id": "https://ror.org/03wg93s13" + }, + { + "label": "Biologie Tissulaire et Ingénierie Thérapeutique", + "type": "Child", + "id": "https://ror.org/04fqvqs63" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bioénergétique et Ingénierie des Protéines", + "type": "Child", + "id": "https://ror.org/0060xzr04" + }, + { + "label": "Brain Plasticity laboratory", + "type": "Child", + "id": "https://ror.org/03padqz24" + }, + { + "label": "Brain and Cognition Research Center", + "type": "Child", + "id": "https://ror.org/04fhrs205" + }, + { + "label": "Cancer Research Center of Lyon", + "type": "Child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Center for Infection and Immunity of Lille", + "type": "Child", + "id": "https://ror.org/00dyt5s15" + }, + { + "label": "Center for Interdisciplinary Research in Biology", + "type": "Child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Center for Research on Inflammation", + "type": "Child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "Child", + "id": "https://ror.org/02dpqcy73" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "Child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "Child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Résonance Magnétique des Systèmes Biologiques", + "type": "Child", + "id": "https://ror.org/01mts2g59" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "Child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "Child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Centre for Biochemical and Macromolecular Research", + "type": "Child", + "id": "https://ror.org/01xpc6869" + }, + { + "label": "Centre for Cognitive Neuroscience", + "type": "Child", + "id": "https://ror.org/02he5dz58" + }, + { + "label": "Contrôle de la Réponse Immune B et Lymphoproliférations", + "type": "Child", + "id": "https://ror.org/02zh2vx86" + }, + { + "label": "Department of Genomes & Genetics", + "type": "Child", + "id": "https://ror.org/05etkex69" + }, + { + "label": "Department of Virology", + "type": "Child", + "id": "https://ror.org/01xx2ne27" + }, + { + "label": "Developmental Biology Institute of Marseille", + "type": "Child", + "id": "https://ror.org/02me5cy06" + }, + { + "label": "Gènes, synapses et cognition", + "type": "Child", + "id": "https://ror.org/027atwb90" + }, + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "Child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Laboratory of Pathogens and Host Immunity", + "type": "Child", + "id": "https://ror.org/00rt27171" + }, + { + "label": "Epigenetics and Cell Fate", + "type": "Child", + "id": "https://ror.org/03dbsav41" + }, + { + "label": "Evolution des Régulations Endocriniennes", + "type": "Child", + "id": "https://ror.org/03bpcga21" + }, + { + "label": "Expression Génétique Microbienne", + "type": "Child", + "id": "https://ror.org/05t5n2z26" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "Child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Immunologie et Neurogénétique Expérimentales et Moléculaires", + "type": "Child", + "id": "https://ror.org/01mhd9b84" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Cochin", + "type": "Child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Jacques Monod", + "type": "Child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "Child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "Child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "Child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Biochimie et Génétique Cellulaires", + "type": "Child", + "id": "https://ror.org/048xwe611" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "Child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie Physico-Chimique", + "type": "Child", + "id": "https://ror.org/01na0pb61" + }, + { + "label": "Institut de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Biologie et de Chimie des Protéines", + "type": "Child", + "id": "https://ror.org/0019x5d05" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut de Génétique Moléculaire de Montpellier", + "type": "Child", + "id": "https://ror.org/02785qs39" + }, + { + "label": "Institut de Microbiologie de la Méditerranée", + "type": "Child", + "id": "https://ror.org/012t91r40" + }, + { + "label": "Institut de Neurophysiopathologie", + "type": "Child", + "id": "https://ror.org/00w2q5j98" + }, + { + "label": "Institut de Neurosciences Cognitives et Intégratives d’Aquitaine", + "type": "Child", + "id": "https://ror.org/01a6zh966" + }, + { + "label": "Institut de Neurosciences de la Timone", + "type": "Child", + "id": "https://ror.org/043hw6336" + }, + { + "label": "Institut de Pharmacologie Moléculaire et Cellulaire", + "type": "Child", + "id": "https://ror.org/05k4ema52" + }, + { + "label": "Institut des Sciences du Mouvement Etienne-Jules Marey", + "type": "Child", + "id": "https://ror.org/03tncyc93" + }, + { + "label": "Institut des Sciences du Végétal", + "type": "Child", + "id": "https://ror.org/03aqj2f62" + }, + { + "label": "Institut du Cerveau", + "type": "Child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Thorax", + "type": "Child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Biology Valrose", + "type": "Child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institut de génétique et de développement de Rennes", + "type": "Child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institute of Human Genetics", + "type": "Child", + "id": "https://ror.org/05ee10k25" + }, + { + "label": "Institut de Myologie", + "type": "Child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institute of Pharmacology and Structural Biology", + "type": "Child", + "id": "https://ror.org/016zvc994" + }, + { + "label": "Institute of Research on Cancer and Aging in Nice", + "type": "Child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "Integrated Genomics and Metabolic Diseases Modeling", + "type": "Child", + "id": "https://ror.org/0300mzg60" + }, + { + "label": "Interdisciplinary Institute for NeuroScience", + "type": "Child", + "id": "https://ror.org/032j53342" + }, + { + "label": "International Center for Infectiology Research", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Enzymologie et Biochimie Structurales", + "type": "Child", + "id": "https://ror.org/00j1y9t40" + }, + { + "label": "Laboratoire de Biogenèse Membranaire", + "type": "Child", + "id": "https://ror.org/02nthwg11" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "Child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "Child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire de Biologie du Développement de Villefranche-sur-Mer", + "type": "Child", + "id": "https://ror.org/04hke8425" + }, + { + "label": "Laboratoire de Biologie et Pharmacologie Appliquée", + "type": "Child", + "id": "https://ror.org/03njrcx45" + }, + { + "label": "Laboratoire de Chimie Bactérienne", + "type": "Child", + "id": "https://ror.org/057zme681" + }, + { + "label": "Laboratoire de Microbiologie et Génétique Moléculaires", + "type": "Child", + "id": "https://ror.org/04rrj3a80" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire de PhysioMédecine Moléculaire", + "type": "Child", + "id": "https://ror.org/00c3ktd57" + }, + { + "label": "Laboratoire de Psychologie Cognitive", + "type": "Child", + "id": "https://ror.org/01rf5x574" + }, + { + "label": "Laboratoire de Psychologie Sociale et Cognitive", + "type": "Child", + "id": "https://ror.org/01t4k8953" + }, + { + "label": "Laboratoire de Recherche en Sciences Végétales", + "type": "Child", + "id": "https://ror.org/047z5as19" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire de Sciences Cognitives et Psycholinguistique", + "type": "Child", + "id": "https://ror.org/05fvhm231" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "Child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire des Systèmes Macromoléculaires et Signalisation", + "type": "Child", + "id": "https://ror.org/053qdb191" + }, + { + "label": "Laboratoire des Systèmes Perceptifs", + "type": "Child", + "id": "https://ror.org/030za3c40" + }, + { + "label": "Laboratory for Research on Learning and Development", + "type": "Child", + "id": "https://ror.org/04mp4zc06" + }, + { + "label": "Laboratory of Computational and Quantitative Biology", + "type": "Child", + "id": "https://ror.org/00pcqj134" + }, + { + "label": "Laboratoire de Biologie Intégrative des Modèles Marins", + "type": "Child", + "id": "https://ror.org/001c8pb03" + }, + { + "label": "Laboratoire de Biologie Moléculaire et Cellulaire des Eucaryotes", + "type": "Child", + "id": "https://ror.org/05mx55f96" + }, + { + "label": "Laboratory of Physical and Chemical Biology of Membrane Proteins", + "type": "Child", + "id": "https://ror.org/03nr8xh07" + }, + { + "label": "Lyon Neuroscience Research Center", + "type": "Child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Microbiology, Adaptation and Pathogenesis Lab", + "type": "Child", + "id": "https://ror.org/03p3f6k20" + }, + { + "label": "Modélisation et Ingénierie des Systèmes Complexes Biologiques pour le Diagnostic", + "type": "Child", + "id": "https://ror.org/056mmjd70" + }, + { + "label": "Neurodegeneratives Diseases Institute", + "type": "Child", + "id": "https://ror.org/001695n52" + }, + { + "label": "Dynamique du noyau", + "type": "Child", + "id": "https://ror.org/04team556" + }, + { + "label": "Génomes, biologie cellulaire et thérapeutiques", + "type": "Child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Physico-chimie Curie", + "type": "Child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "Biologie du chloroplaste et perception de la lumière chez les micro-algues", + "type": "Child", + "id": "https://ror.org/001r32c80" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "Child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Physiology & Experimental Medicine of the Heart and Muscles", + "type": "Child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Plant Genome and Development Laboratory", + "type": "Child", + "id": "https://ror.org/038207k30" + }, + { + "label": "Research Centre on Animal Cognition", + "type": "Child", + "id": "https://ror.org/0111s2360" + }, + { + "label": "Research Centre on Cognition and Learning", + "type": "Child", + "id": "https://ror.org/01sdp1y98" + }, + { + "label": "Structural and Molecular Basis of Infectious Systems", + "type": "Child", + "id": "https://ror.org/00jv0wy06" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "Child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "Child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "Child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "Child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.81568, + "lng": 2.38487, + "state": null, + "state_code": null, + "city": "Ivry-sur-Seine", + "geonames_city": { + "id": 3012621, + "city": "Ivry-sur-Seine", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnrs.fr/insb/" + ], + "aliases": [], + "acronyms": [ + "INSB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Biological Sciences", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.456999.e", + "preferred": "grid.456999.e" + }, + "ISNI": { + "all": [ + "0000 0004 0387 060X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q24935881" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00s426w44.json b/v1.47/v1/00s426w44.json new file mode 100644 index 000000000..fb265ab96 --- /dev/null +++ b/v1.47/v1/00s426w44.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00s426w44", + "name": "St Joseph's Health Centre", + "email_address": null, + "ip_addresses": [], + "established": 1921, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Unity Health Toronto", + "type": "Parent", + "id": "https://ror.org/012x5xb44" + } + ], + "addresses": [ + { + "lat": 43.70643, + "lng": -79.39864, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.stjoe.on.ca/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Joseph%27s_Health_Centre", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.416449.a", + "preferred": "grid.416449.a" + }, + "Wikidata": { + "all": [ + "Q14875435" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00s8ft489.json b/v1.47/v1/00s8ft489.json new file mode 100644 index 000000000..8021ad34f --- /dev/null +++ b/v1.47/v1/00s8ft489.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/00s8ft489", + "name": "Guangzhou Zengcheng District Traditional Chinese Medicine Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://zcqzyyy.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "广州市增城区中医医院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/00sg8gh54.json b/v1.47/v1/00sg8gh54.json new file mode 100644 index 000000000..f0714edf2 --- /dev/null +++ b/v1.47/v1/00sg8gh54.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00sg8gh54", + "name": "Laboratoire Babel", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Toulon", + "type": "Parent", + "id": "https://ror.org/02m9kbe37" + } + ], + "addresses": [ + { + "lat": 43.12442, + "lng": 5.92836, + "state": null, + "state_code": null, + "city": "Toulon", + "geonames_city": { + "id": 2972328, + "city": "Toulon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://babel.univ-tln.fr" + ], + "aliases": [ + "Babel" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2369 4322" + ], + "preferred": "0000 0001 2369 4322" + }, + "Wikidata": { + "all": [ + "Q51781249" + ], + "preferred": "Q51781249" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00t12va36.json b/v1.47/v1/00t12va36.json new file mode 100644 index 000000000..657f6e96f --- /dev/null +++ b/v1.47/v1/00t12va36.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00t12va36", + "name": "Energieinstitut an der Johannes Kepler Universität Linz", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.30639, + "lng": 14.28611, + "state": null, + "state_code": null, + "city": "Linz", + "geonames_city": { + "id": 2772400, + "city": "Linz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://energieinstitut-linz.at" + ], + "aliases": [ + "Energieinstitut an der JKU Linz" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0710 0504" + ], + "preferred": "0000 0001 0710 0504" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00t3r8h32.json b/v1.47/v1/00t3r8h32.json new file mode 100644 index 000000000..056160a53 --- /dev/null +++ b/v1.47/v1/00t3r8h32.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/00t3r8h32", + "name": "University of Lübeck", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cluster of Excellence \"Inflammation at Interfaces\"", + "type": "Child", + "id": "https://ror.org/00ygmry26" + }, + { + "label": "University Hospital Schleswig-Holstein", + "type": "Related", + "id": "https://ror.org/01tvm6f46" + } + ], + "addresses": [ + { + "lat": 53.86893, + "lng": 10.68729, + "state": null, + "state_code": null, + "city": "Lübeck", + "geonames_city": { + "id": 2875601, + "city": "Lübeck", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uni-luebeck.de/" + ], + "aliases": [ + "University of Luebeck" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_L%C3%BCbeck", + "labels": [ + { + "label": "Universität zu Lübeck", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.4562.5", + "preferred": "grid.4562.5" + }, + "ISNI": { + "all": [ + "0000 0001 0057 2672" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q317087" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00t5e2y66.json b/v1.47/v1/00t5e2y66.json new file mode 100644 index 000000000..808f9a409 --- /dev/null +++ b/v1.47/v1/00t5e2y66.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00t5e2y66", + "name": "Université Joseph Ki-Zerbo", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.36566, + "lng": -1.53388, + "state": null, + "state_code": null, + "city": "Ouagadougou", + "geonames_city": { + "id": 2357048, + "city": "Ouagadougou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ujkz.bf" + ], + "aliases": [ + "University Joseph Ki-Zerbo", + "University of Ouagadougo" + ], + "acronyms": [ + "UO" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Ouagadougou", + "labels": [ + { + "label": "Université de Ouagadougou", + "iso639": "fr" + } + ], + "country": { + "country_name": "Burkina Faso", + "country_code": "BF" + }, + "external_ids": { + "GRID": { + "all": "grid.218069.4", + "preferred": "grid.218069.4" + }, + "ISNI": { + "all": [ + "0000 0000 8737 921X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1076606" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00t5j6b61.json b/v1.47/v1/00t5j6b61.json new file mode 100644 index 000000000..9ddf3efe6 --- /dev/null +++ b/v1.47/v1/00t5j6b61.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00t5j6b61", + "name": "Ilisimatusarfik", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 64.18347, + "lng": -51.72157, + "state": null, + "state_code": null, + "city": "Nuuk", + "geonames_city": { + "id": 3421319, + "city": "Nuuk", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni.gl/" + ], + "aliases": [ + "Ilisimatusarfik Kalaallit Nunaat" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Greenland", + "labels": [ + { + "label": "Grønlands Universitet", + "iso639": "da" + }, + { + "label": "University of Greenland", + "iso639": "en" + } + ], + "country": { + "country_name": "Greenland", + "country_code": "GL" + }, + "external_ids": { + "GRID": { + "all": "grid.449721.d", + "preferred": "grid.449721.d" + }, + "Wikidata": { + "all": [ + "Q1121983" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00v3dp115.json b/v1.47/v1/00v3dp115.json new file mode 100644 index 000000000..743fe2f9b --- /dev/null +++ b/v1.47/v1/00v3dp115.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/00v3dp115", + "name": "Citizens Specialty Hospitals", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 17.38405, + "lng": 78.45636, + "state": null, + "state_code": null, + "city": "Hyderabad", + "geonames_city": { + "id": 1269843, + "city": "Hyderabad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.citizenshospitals.com" + ], + "aliases": [ + "Citizens Hospitals" + ], + "acronyms": [ + "CSH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/00vgscq55.json b/v1.47/v1/00vgscq55.json new file mode 100644 index 000000000..71b9455cf --- /dev/null +++ b/v1.47/v1/00vgscq55.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00vgscq55", + "name": "University of Belgrade – Faculty of Pharmacy", + "email_address": null, + "ip_addresses": [], + "established": 1939, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Belgrade", + "type": "Parent", + "id": "https://ror.org/02qsmb048" + } + ], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pharmacy.bg.ac.rs" + ], + "aliases": [], + "acronyms": [ + "FPUB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Univerzitet u Beogradu – Farmaceutski fakukltet", + "iso639": "sr" + }, + { + "label": "Универзитет у Београду – Фармацеутски факултет", + "iso639": "sr" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/00weppy16.json b/v1.47/v1/00weppy16.json new file mode 100644 index 000000000..414ddbdd2 --- /dev/null +++ b/v1.47/v1/00weppy16.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/00weppy16", + "name": "FORS – Swiss Centre of Expertise in the Social Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://forscenter.ch" + ], + "aliases": [ + "Centre de compétences Suisse en sciences sociales", + "Schweizer Kompetenzzentrum Sozialwissenschaften", + "Swiss Centre of Expertise in the Social Sciences" + ], + "acronyms": [ + "FORS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Swiss_Centre_of_Expertise_in_the_Social_Sciences", + "labels": [ + { + "label": "FORS – Centre de compétences Suisse en sciences sociales", + "iso639": "fr" + }, + { + "label": "FORS – Schweizer Kompetenzzentrum Sozialwissenschaften", + "iso639": "de" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.469972.7", + "preferred": "grid.469972.7" + }, + "ISNI": { + "all": [ + "0000 0004 0435 5781" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q686471" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00wn5gw44.json b/v1.47/v1/00wn5gw44.json new file mode 100644 index 000000000..39400de6a --- /dev/null +++ b/v1.47/v1/00wn5gw44.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00wn5gw44", + "name": "Great Zimbabwe University", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -20.06373, + "lng": 30.82766, + "state": null, + "state_code": null, + "city": "Masvingo", + "geonames_city": { + "id": 886763, + "city": "Masvingo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.gzu.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "GZU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Great_Zimbabwe_University", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.442716.2", + "preferred": "grid.442716.2" + }, + "ISNI": { + "all": [ + "0000 0004 1765 0712" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5600321" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00x1rrc95.json b/v1.47/v1/00x1rrc95.json new file mode 100644 index 000000000..24d3c08ed --- /dev/null +++ b/v1.47/v1/00x1rrc95.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00x1rrc95", + "name": "Institute of Life Sciences", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "HES-SO Valais-Wallis", + "type": "Parent", + "id": "https://ror.org/03r5zec51" + } + ], + "addresses": [ + { + "lat": 46.22739, + "lng": 7.35559, + "state": null, + "state_code": null, + "city": "Sion", + "geonames_city": { + "id": 2658576, + "city": "Sion", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hevs.ch/ils" + ], + "aliases": [ + "HES-SO Valais-Wallis Institute of Life Sciences" + ], + "acronyms": [ + "ILS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Sciences du vivant", + "iso639": "fr" + }, + { + "label": "Instituts für Life Sciences", + "iso639": "de" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/00x54vt20.json b/v1.47/v1/00x54vt20.json new file mode 100644 index 000000000..f93444ff4 --- /dev/null +++ b/v1.47/v1/00x54vt20.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00x54vt20", + "name": "BGMEA University of Fashion & Technology", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://buft.edu.bd" + ], + "aliases": [ + "BGMEA University of Fashion and Technology", + "Bangladesh Garment Manufacturers and Exporters Association University of Fashion and Technology" + ], + "acronyms": [ + "BUFT", + "বিইউএফটি" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/BGMEA_University_of_Fashion_%26_Technology", + "labels": [], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4682 9041" + ], + "preferred": "0000 0004 4682 9041" + }, + "Wikidata": { + "all": [ + "Q4835554" + ], + "preferred": "Q4835554" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00x9ewr78.json b/v1.47/v1/00x9ewr78.json new file mode 100644 index 000000000..ececdc641 --- /dev/null +++ b/v1.47/v1/00x9ewr78.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00x9ewr78", + "name": "National Council for Scientific Research", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Related", + "id": "https://ror.org/05hz99a17" + } + ], + "addresses": [ + { + "lat": 33.89332, + "lng": 35.50157, + "state": null, + "state_code": null, + "city": "Beirut", + "geonames_city": { + "id": 276781, + "city": "Beirut", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnrs.edu.lb/" + ], + "aliases": [], + "acronyms": [ + "CNRS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Lebanon", + "country_code": "LB" + }, + "external_ids": { + "GRID": { + "all": "grid.423603.0", + "preferred": "grid.423603.0" + }, + "ISNI": { + "all": [ + "0000 0001 2322 3037" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00xc55v17.json b/v1.47/v1/00xc55v17.json new file mode 100644 index 000000000..ae5ba106f --- /dev/null +++ b/v1.47/v1/00xc55v17.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/00xc55v17", + "name": "Génomique Métabolique du Genoscope", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "University of Évry Val d'Essonne", + "type": "Parent", + "id": "https://ror.org/00e96v939" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.63389, + "lng": 2.44417, + "state": null, + "state_code": null, + "city": "Évry-Courcouronnes", + "geonames_city": { + "id": 6454878, + "city": "Évry-Courcouronnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://jacob.cea.fr/drf/ifrancoisjacob/Pages/Departements/Genoscope/Les-laboratoires/UMR-8030-Genomique-Metabolique-du-Genoscope.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503410.3", + "preferred": "grid.503410.3" + }, + "ISNI": { + "all": [ + "0000 0004 0370 4353" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51785052" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00xxrr382.json b/v1.47/v1/00xxrr382.json new file mode 100644 index 000000000..b1d3dc956 --- /dev/null +++ b/v1.47/v1/00xxrr382.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00xxrr382", + "name": "Tamale Technical University", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 9.40079, + "lng": -0.8393, + "state": null, + "state_code": null, + "city": "Tamale", + "geonames_city": { + "id": 2294877, + "city": "Tamale", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tatu.edu.gh" + ], + "aliases": [], + "acronyms": [ + "TaTU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Tamale_Technical_University", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q85805076" + ], + "preferred": "Q85805076" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00y1ekh28.json b/v1.47/v1/00y1ekh28.json new file mode 100644 index 000000000..af55f57e7 --- /dev/null +++ b/v1.47/v1/00y1ekh28.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/00y1ekh28", + "name": "University of Education, Winneba", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "BlueCrest University College", + "type": "Child", + "id": "https://ror.org/03cv2n667" + }, + { + "label": "University College of Management Studies", + "type": "Child", + "id": "https://ror.org/01jthvx19" + }, + { + "label": "Presbyterian College of Education", + "type": "Related", + "id": "https://ror.org/00p4n8p47" + }, + { + "label": "Komenda College of Education", + "type": "Related", + "id": "https://ror.org/058cpk191" + } + ], + "addresses": [ + { + "lat": 5.35113, + "lng": -0.62313, + "state": null, + "state_code": null, + "city": "Winneba", + "geonames_city": { + "id": 2294034, + "city": "Winneba", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uew.edu.gh/" + ], + "aliases": [], + "acronyms": [ + "UEW" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Education,_Winneba", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.442315.5", + "preferred": "grid.442315.5" + }, + "ISNI": { + "all": [ + "0000 0004 0441 5457" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1557172" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/00zmg2m07.json b/v1.47/v1/00zmg2m07.json new file mode 100644 index 000000000..5eb81bf45 --- /dev/null +++ b/v1.47/v1/00zmg2m07.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00zmg2m07", + "name": "Georgian International University", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.69411, + "lng": 44.83368, + "state": null, + "state_code": null, + "city": "Tbilisi", + "geonames_city": { + "id": 611717, + "city": "Tbilisi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://giu.edu.ge" + ], + "aliases": [ + "Georgian International University GIU", + "Guram Tavartkiladze Educational University", + "International University of Georgia", + "Tbilisi University of Economic Relations and Law", + "გურამ თავართქილაძის სახელობის სასწავლო უნივერსიტეტი", + "თბილისი ეკონომიკური ურთიერთობებისა და სამართლის უნივერსიტეტისა" + ], + "acronyms": [ + "GIU", + "ჯიუ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "საქართველოს საერთაშორისო უნივერსიტეტი", + "iso639": "ka" + } + ], + "country": { + "country_name": "Georgia", + "country_code": "GE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/00znex860.json b/v1.47/v1/00znex860.json new file mode 100644 index 000000000..1ae6dfd9e --- /dev/null +++ b/v1.47/v1/00znex860.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/00znex860", + "name": "United States Naval Academy", + "email_address": null, + "ip_addresses": [], + "established": 1845, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 38.97859, + "lng": -76.49184, + "state": null, + "state_code": null, + "city": "Annapolis", + "geonames_city": { + "id": 4347242, + "city": "Annapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.usna.edu/" + ], + "aliases": [], + "acronyms": [ + "USNA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_States_Naval_Academy", + "labels": [ + { + "label": "Academia Naval de los Estados Unidos", + "iso639": "es" + }, + { + "label": "Académie Navale d'Annapolis", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.265465.6", + "preferred": "grid.265465.6" + }, + "ISNI": { + "all": [ + "0000 0001 2296 3025" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q559549" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0104rcc94.json b/v1.47/v1/0104rcc94.json new file mode 100644 index 000000000..577a59340 --- /dev/null +++ b/v1.47/v1/0104rcc94.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0104rcc94", + "name": "University of Silesia in Katowice", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.25841, + "lng": 19.02754, + "state": null, + "state_code": null, + "city": "Katowice", + "geonames_city": { + "id": 3096472, + "city": "Katowice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://us.edu.pl/" + ], + "aliases": [ + "University of Silesia" + ], + "acronyms": [ + "UŚ" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Silesia_in_Katowice", + "labels": [], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "GRID": { + "all": "grid.11866.38", + "preferred": "grid.11866.38" + }, + "ISNI": { + "all": [ + "0000 0001 2259 4135" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q615154", + "Q47462529" + ], + "preferred": "Q615154" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0105dn617.json b/v1.47/v1/0105dn617.json new file mode 100644 index 000000000..92886c5c0 --- /dev/null +++ b/v1.47/v1/0105dn617.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/0105dn617", + "name": "National Science Library", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.69411, + "lng": 44.83368, + "state": null, + "state_code": null, + "city": "Tbilisi", + "geonames_city": { + "id": 611717, + "city": "Tbilisi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sciencelib.ge" + ], + "aliases": [ + "National Science Library of Georgia", + "ეროვნული სამეცნიერო ბიბლიოთეკა" + ], + "acronyms": [ + "NSL", + "ესბ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Science_Library_%28Georgia%29", + "labels": [], + "country": { + "country_name": "Georgia", + "country_code": "GE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q16915337" + ], + "preferred": "Q16915337" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0105w2p42.json b/v1.47/v1/0105w2p42.json new file mode 100644 index 000000000..93a8d0ecd --- /dev/null +++ b/v1.47/v1/0105w2p42.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/0105w2p42", + "name": "Royal Library of Belgium", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kbr.be" + ], + "aliases": [ + "Albertina", + "Royal Library of Belgium (KBR)" + ], + "acronyms": [ + "KBR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Royal_Library_of_Belgium", + "labels": [ + { + "label": "Bibliothèque Royale de Belgique", + "iso639": "fr" + }, + { + "label": "Koninklijke Bibliotheek België", + "iso639": "nl" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "GRID": { + "all": "grid.460241.5", + "preferred": "grid.460241.5" + }, + "ISNI": { + "all": [ + "0000 0001 2286 1993", + "0000 0001 2271 4686" + ], + "preferred": "0000 0001 2271 4686" + }, + "Wikidata": { + "all": [ + "Q383931" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/010gha940.json b/v1.47/v1/010gha940.json new file mode 100644 index 000000000..f7f247a76 --- /dev/null +++ b/v1.47/v1/010gha940.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/010gha940", + "name": "Swiss Vaccine Research Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.swissvaccineresearchinstitute.ch/" + ], + "aliases": [], + "acronyms": [ + "SVRI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.482333.d", + "preferred": "grid.482333.d" + }, + "ISNI": { + "all": [ + "0000 0004 8307 9008" + ], + "preferred": "0000 0004 8307 9008" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/010gtx568.json b/v1.47/v1/010gtx568.json new file mode 100644 index 000000000..332ba3762 --- /dev/null +++ b/v1.47/v1/010gtx568.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/010gtx568", + "name": "Ministry of the Interior and Safety", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.59313, + "lng": 127.29661, + "state": null, + "state_code": null, + "city": "Sejong-Si", + "geonames_city": { + "id": 8659242, + "city": "Sejong-Si", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mois.go.kr" + ], + "aliases": [ + "Ministry of the Interior and Safety of South Korea", + "Ministry of the Interior and Safety, Republic of Korea", + "行政安全部" + ], + "acronyms": [ + "MOIS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_the_Interior_and_Safety_%28South_Korea%29", + "labels": [ + { + "label": "행정안전부", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1169 2433" + ], + "preferred": "0000 0005 1169 2433" + }, + "Wikidata": { + "all": [ + "Q488954" + ], + "preferred": "Q488954" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/010q4q527.json b/v1.47/v1/010q4q527.json new file mode 100644 index 000000000..4b5ad5c57 --- /dev/null +++ b/v1.47/v1/010q4q527.json @@ -0,0 +1,160 @@ +{ + "id": "https://ror.org/010q4q527", + "name": "Government of Canada", + "email_address": null, + "ip_addresses": [], + "established": 1867, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Agriculture and Agri-Food Canada", + "type": "Child", + "id": "https://ror.org/051dzs374" + }, + { + "label": "Canada Excellence Research Chairs", + "type": "Child", + "id": "https://ror.org/02tvrwm90" + }, + { + "label": "Canada Research Chairs", + "type": "Child", + "id": "https://ror.org/0517h6h17" + }, + { + "label": "Canadian Armed Forces", + "type": "Child", + "id": "https://ror.org/03rqcfv80" + }, + { + "label": "Defence Research and Development Canada", + "type": "Child", + "id": "https://ror.org/00hgy8d33" + }, + { + "label": "Environment and Climate Change Canada", + "type": "Child", + "id": "https://ror.org/026ny0e17" + }, + { + "label": "Networks of Centres of Excellence", + "type": "Child", + "id": "https://ror.org/02edexj13" + }, + { + "label": "Treasury Board of Canada Secretariat", + "type": "Child", + "id": "https://ror.org/01sj8qf84" + }, + { + "label": "Veterans Affairs Canada", + "type": "Child", + "id": "https://ror.org/01sz34q98" + }, + { + "label": "Natural Resources Canada", + "type": "Child", + "id": "https://ror.org/05hepy730" + }, + { + "label": "Fisheries and Oceans Canada", + "type": "Child", + "id": "https://ror.org/02qa1x782" + }, + { + "label": "Canada First Research Excellence Fund", + "type": "Child", + "id": "https://ror.org/01ktx4s83" + }, + { + "label": "PacifiCan", + "type": "Child", + "id": "https://ror.org/03pkrdc36" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.canada.ca/en/" + ], + "aliases": [ + "Gouvernement de Sa Majesté", + "Her Majesty's Government" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Government_of_Canada", + "labels": [ + { + "label": "Gouvernement du Canada", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.451254.3", + "preferred": "grid.451254.3" + }, + "ISNI": { + "all": [ + "0000 0004 0377 1994" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q422404" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0111a5077.json b/v1.47/v1/0111a5077.json new file mode 100644 index 000000000..79c09a3e7 --- /dev/null +++ b/v1.47/v1/0111a5077.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/0111a5077", + "name": "Toxalim Research Centre in Food Toxicology", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Occitanie-Toulouse", + "type": "Parent", + "id": "https://ror.org/02sxjwh33" + }, + { + "label": "National Polytechnic Institute of Toulouse", + "type": "Parent", + "id": "https://ror.org/033p9g875" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.toulouse.inra.fr/toxalim_eng" + ], + "aliases": [ + "TOXALIM" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.420267.5", + "preferred": "grid.420267.5" + }, + "Wikidata": { + "all": [ + "Q30282448" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/011hja523.json b/v1.47/v1/011hja523.json new file mode 100644 index 000000000..7358f0195 --- /dev/null +++ b/v1.47/v1/011hja523.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/011hja523", + "name": "Rome et ses renaissances", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Linguistique et lexicographie latines et romanes", + "type": "Predecessor", + "id": "https://ror.org/02689mz67" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://romerenaissances.hypotheses.org" + ], + "aliases": [ + "Rome et ses renaisances : arts, archéologie, littérature et philosophie" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695069" + ], + "preferred": "Q123695069" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/011mac819.json b/v1.47/v1/011mac819.json new file mode 100644 index 000000000..13f52da4c --- /dev/null +++ b/v1.47/v1/011mac819.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/011mac819", + "name": "Histoire et Archéologie Maritimes", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ministère des Armées", + "type": "Parent", + "id": "https://ror.org/025er3q23" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.mer.paris-sorbonne.fr" + ], + "aliases": [ + "FED 4124" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2200 8933" + ], + "preferred": "0000 0001 2200 8933" + }, + "Wikidata": { + "all": [ + "Q51794408" + ], + "preferred": "Q51794408" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/011wzff38.json b/v1.47/v1/011wzff38.json new file mode 100644 index 000000000..29f1a79d3 --- /dev/null +++ b/v1.47/v1/011wzff38.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/011wzff38", + "name": "BIVŠ Vysoká škola v Praze a v Brně", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bivs.cz" + ], + "aliases": [ + "BIVŠ", + "Banking Institute", + "College of Banking" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Banking_Institute_/_College_of_Banking", + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.445516.7", + "preferred": "grid.445516.7" + }, + "ISNI": { + "all": [ + "0000 0001 0591 5793" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q11046731" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/012ngjb50.json b/v1.47/v1/012ngjb50.json new file mode 100644 index 000000000..0c966160a --- /dev/null +++ b/v1.47/v1/012ngjb50.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/012ngjb50", + "name": "Universidad de Moa", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.65776, + "lng": -74.95075, + "state": null, + "state_code": null, + "city": "Moa", + "geonames_city": { + "id": 3546791, + "city": "Moa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ismm.edu.cu" + ], + "aliases": [ + "Higher Mining Metallurgical Institute", + "Instituto Superior Minero Metalúrgico de Moa", + "Moa University", + "UMoa", + "Universidad de Moa Dr. Antonio Núñez Jiménez", + "University of Moa" + ], + "acronyms": [ + "ISMMM" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Superior_Minero_Metal%C3%BArgico", + "labels": [], + "country": { + "country_name": "Cuba", + "country_code": "CU" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0224 2554" + ], + "preferred": "0000 0001 0224 2554" + }, + "Wikidata": { + "all": [ + "Q3550329" + ], + "preferred": "Q3550329" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/012vk3585.json b/v1.47/v1/012vk3585.json new file mode 100644 index 000000000..a992debea --- /dev/null +++ b/v1.47/v1/012vk3585.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/012vk3585", + "name": "Rift Valley Technical Training Institute", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 0.52036, + "lng": 35.26993, + "state": null, + "state_code": null, + "city": "Eldoret", + "geonames_city": { + "id": 198629, + "city": "Eldoret", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rvti.ac.ke" + ], + "aliases": [ + "Rift Valley Technical and Trade High School", + "Taasisi ya Mafunzo ya Ufundi ya Bonde la Ufa" + ], + "acronyms": [ + "RVTTI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rift_Valley_Technical_Training_Institute", + "labels": [], + "country": { + "country_name": "Kenya", + "country_code": "KE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9410 2963" + ], + "preferred": "0000 0004 9410 2963" + }, + "Wikidata": { + "all": [ + "Q28223339" + ], + "preferred": "Q28223339" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/012x5xb44.json b/v1.47/v1/012x5xb44.json new file mode 100644 index 000000000..026ab902d --- /dev/null +++ b/v1.47/v1/012x5xb44.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/012x5xb44", + "name": "Unity Health Toronto", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "St. Michael's Hospital", + "type": "Child", + "id": "https://ror.org/04skqfp25" + }, + { + "label": "St Joseph's Health Centre", + "type": "Child", + "id": "https://ror.org/00s426w44" + } + ], + "addresses": [ + { + "lat": 43.70643, + "lng": -79.39864, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unityhealth.to" + ], + "aliases": [], + "acronyms": [ + "UHT" + ], + "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.47/v1/01428y038.json b/v1.47/v1/01428y038.json new file mode 100644 index 000000000..79ac79b7d --- /dev/null +++ b/v1.47/v1/01428y038.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01428y038", + "name": "Kibi Presbyterian College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Cape Coast", + "type": "Related", + "id": "https://ror.org/0492nfe34" + } + ], + "addresses": [ + { + "lat": 6.16494, + "lng": -0.55376, + "state": null, + "state_code": null, + "city": "Kibi", + "geonames_city": { + "id": 2299636, + "city": "Kibi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kpce.edu.gh" + ], + "aliases": [ + "Kibi Presbyterian CoE" + ], + "acronyms": [ + "KPCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kibi_Presbyterian_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996973" + ], + "preferred": "Q46996973" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0160cpw27.json b/v1.47/v1/0160cpw27.json new file mode 100644 index 000000000..e0cc9db15 --- /dev/null +++ b/v1.47/v1/0160cpw27.json @@ -0,0 +1,128 @@ +{ + "id": "https://ror.org/0160cpw27", + "name": "University of Alberta", + "email_address": null, + "ip_addresses": [], + "established": 1908, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Alberta Gambling Research Institute", + "type": "Child", + "id": "https://ror.org/030ykd126" + }, + { + "label": "Bamfield Marine Sciences Centre", + "type": "Child", + "id": "https://ror.org/039cthy03" + }, + { + "label": "Helmholtz Alberta Initiative", + "type": "Child", + "id": "https://ror.org/02yvsmh51" + }, + { + "label": "Red Deer Regional Hospital", + "type": "Related", + "id": "https://ror.org/04f7crx66" + }, + { + "label": "Stollery Children's Hospital", + "type": "Related", + "id": "https://ror.org/05w90nk74" + }, + { + "label": "University of Alberta Hospital", + "type": "Related", + "id": "https://ror.org/013e81n30" + }, + { + "label": "Open Data Commons for Spinal Cord Injury", + "type": "Related", + "id": "https://ror.org/027790w81" + }, + { + "label": "Canadian Glycomics Network", + "type": "Child", + "id": "https://ror.org/049bc0z69" + } + ], + "addresses": [ + { + "lat": 53.55014, + "lng": -113.46871, + "state": null, + "state_code": null, + "city": "Edmonton", + "geonames_city": { + "id": 5946768, + "city": "Edmonton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ualberta.ca/" + ], + "aliases": [ + "UAlberta" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Alberta", + "labels": [ + { + "label": "Université de l'Alberta", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.17089.37", + "preferred": "grid.17089.37" + }, + "Wikidata": { + "all": [ + "Q640694" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01614jm39.json b/v1.47/v1/01614jm39.json new file mode 100644 index 000000000..0a2ac0941 --- /dev/null +++ b/v1.47/v1/01614jm39.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/01614jm39", + "name": "Lottery Health Research", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": -41.28333, + "lng": 174.76667, + "state": null, + "state_code": null, + "city": "Wellington Region", + "geonames_city": { + "id": 2179538, + "city": "Wellington Region", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.communitymatters.govt.nz/lottery-health-research" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "New Zealand", + "country_code": "NZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7865 8021" + ], + "preferred": "0000 0004 7865 8021" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0168r3w48.json b/v1.47/v1/0168r3w48.json new file mode 100644 index 000000000..c59f2eb08 --- /dev/null +++ b/v1.47/v1/0168r3w48.json @@ -0,0 +1,175 @@ +{ + "id": "https://ror.org/0168r3w48", + "name": "University of California, San Diego", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "California Sea Grant", + "type": "Child", + "id": "https://ror.org/02yn1nr06" + }, + { + "label": "California Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/05ffhwq07" + }, + { + "label": "San Diego Supercomputer Center", + "type": "Child", + "id": "https://ror.org/04mg3nk07" + }, + { + "label": "Scripps Institution of Oceanography", + "type": "Child", + "id": "https://ror.org/04v7hvq31" + }, + { + "label": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "Child", + "id": "https://ror.org/00t7axd27" + }, + { + "label": "Center for Wireless Communications", + "type": "Child", + "id": "https://ror.org/04b57z061" + }, + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Rady Children's Hospital-San Diego", + "type": "Related", + "id": "https://ror.org/00414dg76" + }, + { + "label": "Salk Institute for Biological Studies", + "type": "Related", + "id": "https://ror.org/03xez1567" + }, + { + "label": "Scripps Mercy Hospital", + "type": "Related", + "id": "https://ror.org/04k4h9k07" + }, + { + "label": "University of California San Diego Medical Center", + "type": "Related", + "id": "https://ror.org/03aw5sn18" + }, + { + "label": "VA San Diego Healthcare System", + "type": "Related", + "id": "https://ror.org/00znqwq11" + }, + { + "label": "Open Data Commons for Spinal Cord Injury", + "type": "Related", + "id": "https://ror.org/027790w81" + }, + { + "label": "Moorea Coral Reef Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/017vyhs10" + }, + { + "label": "Materials Science in Extreme Environments University Research Alliance", + "type": "Related", + "id": "https://ror.org/04n07f274" + } + ], + "addresses": [ + { + "lat": 32.71571, + "lng": -117.16472, + "state": null, + "state_code": null, + "city": "San Diego", + "geonames_city": { + "id": 5391811, + "city": "San Diego", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ucsd.edu" + ], + "aliases": [ + "UC San Diego" + ], + "acronyms": [ + "UCSD" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_California,_San_Diego", + "labels": [ + { + "label": "Universidad de California en San Diego", + "iso639": "es" + }, + { + "label": "Université de Californie à San Diego", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.266100.3", + "preferred": "grid.266100.3" + }, + "ISNI": { + "all": [ + "0000 0001 2107 4242" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q622664" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/016tmz810.json b/v1.47/v1/016tmz810.json new file mode 100644 index 000000000..a88009ad6 --- /dev/null +++ b/v1.47/v1/016tmz810.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/016tmz810", + "name": "Innovent", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.92878, + "lng": 11.5899, + "state": null, + "state_code": null, + "city": "Jena", + "geonames_city": { + "id": 2895044, + "city": "Jena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.innovent-jena.de" + ], + "aliases": [ + "Association for the Promotion of Innovation through Research, Development and Technology Transfer e. V.", + "INNOVENT e. V.", + "INNOVENT e. V. Technologieentwicklung Jena" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.452448.b", + "preferred": "grid.452448.b" + }, + "ISNI": { + "all": [ + "0000 0004 0582 7891" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/016wdna72.json b/v1.47/v1/016wdna72.json new file mode 100644 index 000000000..1a5d84e03 --- /dev/null +++ b/v1.47/v1/016wdna72.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/016wdna72", + "name": "STIC Research Centre", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Régionale Est", + "type": "Parent", + "id": "https://ror.org/04kv7c795" + }, + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crestic.univ-reims.fr/en/" + ], + "aliases": [], + "acronyms": [ + "CReSTIC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de Recherche en STIC", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503112.4", + "preferred": "grid.503112.4" + }, + "ISNI": { + "all": [ + "0000 0000 9644 2671" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51782448" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/017cjzj15.json b/v1.47/v1/017cjzj15.json new file mode 100644 index 000000000..94aac2feb --- /dev/null +++ b/v1.47/v1/017cjzj15.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/017cjzj15", + "name": "Yasuda Memorial Medical Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 34.60637, + "lng": 135.49953, + "state": null, + "state_code": null, + "city": "Sumiyoshi-ku", + "geonames_city": { + "id": 1851433, + "city": "Sumiyoshi-ku", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://yasuda-mf.or.jp" + ], + "aliases": [ + "Yasuda Medical Foundation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6043 9867" + ], + "preferred": "0000 0004 6043 9867" + }, + "Wikidata": { + "all": [ + "Q45131424" + ], + "preferred": "Q45131424" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/017ewzp43.json b/v1.47/v1/017ewzp43.json new file mode 100644 index 000000000..ec4b38bc6 --- /dev/null +++ b/v1.47/v1/017ewzp43.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/017ewzp43", + "name": "Association Of Research Organizations", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Agrotest Fyto (Czechia)", + "type": "Related", + "id": "https://ror.org/04rrs1z45" + } + ], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.avo.cz/index.php?p=index&site=en" + ], + "aliases": [ + "Asociace Výzkumných Organizací" + ], + "acronyms": [ + "AVO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.447827.a", + "preferred": "grid.447827.a" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/017p6sq53.json b/v1.47/v1/017p6sq53.json new file mode 100644 index 000000000..6f5ecdc45 --- /dev/null +++ b/v1.47/v1/017p6sq53.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/017p6sq53", + "name": "Matrice Extracellulaire et Dynamique Cellulaire MEDyC", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-reims.fr/medyc" + ], + "aliases": [], + "acronyms": [ + "MEDyC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781187" + ], + "preferred": "Q51781187" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0184n5y84.json b/v1.47/v1/0184n5y84.json new file mode 100644 index 000000000..ab5e98f67 --- /dev/null +++ b/v1.47/v1/0184n5y84.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/0184n5y84", + "name": "University of Iowa Stead Family Children’s Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Iowa", + "type": "Related", + "id": "https://ror.org/036jqmy94" + }, + { + "label": "University of Iowa Health Care", + "type": "Parent", + "id": "https://ror.org/0431j1t39" + } + ], + "addresses": [ + { + "lat": 41.66113, + "lng": -91.53017, + "state": null, + "state_code": null, + "city": "Iowa City", + "geonames_city": { + "id": 4862034, + "city": "Iowa City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uihc.org/childrens/" + ], + "aliases": [ + "UI Children's Hospital", + "University of Iowa Children’s Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Iowa_Children%27s_Hospital", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.412981.7", + "preferred": "grid.412981.7" + }, + "ISNI": { + "all": [ + "0000 0000 9433 4896" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7895555" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0192yc246.json b/v1.47/v1/0192yc246.json new file mode 100644 index 000000000..c63e7ec82 --- /dev/null +++ b/v1.47/v1/0192yc246.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0192yc246", + "name": "Liberec Region", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Regional Research Library in Liberec", + "type": "Child", + "id": "https://ror.org/03s9yme23" + } + ], + "addresses": [ + { + "lat": 50.76711, + "lng": 15.05619, + "state": null, + "state_code": null, + "city": "Liberec", + "geonames_city": { + "id": 3071961, + "city": "Liberec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kraj-lbc.cz" + ], + "aliases": [ + "Liberec Region of the Czech Republic" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Libereck%C3%BD_kraj", + "labels": [ + { + "label": "Liberecký kraj", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0611 3719" + ], + "preferred": "0000 0004 0611 3719" + }, + "Wikidata": { + "all": [ + "Q193266" + ], + "preferred": "Q193266" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01973x930.json b/v1.47/v1/01973x930.json new file mode 100644 index 000000000..4838e16ec --- /dev/null +++ b/v1.47/v1/01973x930.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/01973x930", + "name": "United States Department of the Air Force", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Air Force", + "type": "Child", + "id": "https://ror.org/006gmme17" + }, + { + "label": "United States Department of Defense", + "type": "Parent", + "id": "https://ror.org/0447fe631" + }, + { + "label": "United States Space Force", + "type": "Child", + "id": "https://ror.org/02ypept83" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.af.mil" + ], + "aliases": [ + "U.S. Department of the Air Force" + ], + "acronyms": [ + "DAF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_States_Department_of_the_Air_Force", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.495456.f", + "preferred": "grid.495456.f" + }, + "ISNI": { + "all": [ + "0000 0004 0478 7146" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1465252" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/019tcpt25.json b/v1.47/v1/019tcpt25.json new file mode 100644 index 000000000..8439a2c50 --- /dev/null +++ b/v1.47/v1/019tcpt25.json @@ -0,0 +1,174 @@ +{ + "id": "https://ror.org/019tcpt25", + "name": "CentraleSupélec", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire d'Énergétique Moléculaire et Macroscopique, Combustion", + "type": "Child", + "id": "https://ror.org/02wy3s959" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "Child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Matériaux Optiques, Photonique et Systèmes", + "type": "Child", + "id": "https://ror.org/055swm364" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "Child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "Child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "University of Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Supélec", + "type": "Predecessor", + "id": "https://ror.org/00n7gwn90" + }, + { + "label": "École Centrale Paris", + "type": "Predecessor", + "id": "https://ror.org/00v0y5771" + }, + { + "label": "Mahindra University", + "type": "Related", + "id": "https://ror.org/05751b994" + }, + { + "label": "Fondation CentraleSupélec", + "type": "Child", + "id": "https://ror.org/03vsc0s28" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.centralesupelec.fr" + ], + "aliases": [], + "acronyms": [ + "CS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CentraleSup%C3%A9lec", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.494567.d", + "preferred": "grid.494567.d" + }, + "ISNI": { + "all": [ + "0000 0004 4907 1766" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q19203245" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/019whta54.json b/v1.47/v1/019whta54.json new file mode 100644 index 000000000..7e30b2904 --- /dev/null +++ b/v1.47/v1/019whta54.json @@ -0,0 +1,179 @@ +{ + "id": "https://ror.org/019whta54", + "name": "University of Lausanne", + "email_address": null, + "ip_addresses": [], + "established": 1537, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Swiss Cancer Center Léman", + "type": "Child", + "id": "https://ror.org/03kwyfa97" + }, + { + "label": "Cantonal and University Library of Lausanne", + "type": "Related", + "id": "https://ror.org/010dca812" + }, + { + "label": "University Hospital of Lausanne", + "type": "Related", + "id": "https://ror.org/05a353079" + }, + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "Related", + "id": "https://ror.org/047f01g80" + }, + { + "label": "Swiss Centre for Applied Human Toxicology", + "type": "Related", + "id": "https://ror.org/03wma5x57" + }, + { + "label": "Centre universitaire de médecine générale et santé publique, Lausanne", + "type": "Related", + "id": "https://ror.org/04mcdza51" + }, + { + "label": "FORS – Swiss Centre of Expertise in the Social Sciences", + "type": "Related", + "id": "https://ror.org/00weppy16" + }, + { + "label": "Brocher Foundation", + "type": "Related", + "id": "https://ror.org/03eere626" + }, + { + "label": "Fondation Leenaards", + "type": "Related", + "id": "https://ror.org/004h88r69" + }, + { + "label": "Swiss School of Public Health", + "type": "Related", + "id": "https://ror.org/01czqbr06" + }, + { + "label": "Swiss Vaccine Research Institute", + "type": "Related", + "id": "https://ror.org/010gha940" + }, + { + "label": "SIB Swiss Institute of Bioinformatics", + "type": "Related", + "id": "https://ror.org/002n09z45" + }, + { + "label": "Swiss Institute of Comparative Law", + "type": "Related", + "id": "https://ror.org/05ee96150" + }, + { + "label": "Swiss Institute for Art Research", + "type": "Related", + "id": "https://ror.org/028nbcm46" + }, + { + "label": "International Institute for Management Development", + "type": "Related", + "id": "https://ror.org/04mv5gg87" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unil.ch" + ], + "aliases": [ + "Schola Lausannensis" + ], + "acronyms": [ + "UNIL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Lausanne", + "labels": [ + { + "label": "Università di Losanna", + "iso639": "it" + }, + { + "label": "Universität Lausanne", + "iso639": "de" + }, + { + "label": "Université de Lausanne", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.9851.5", + "preferred": "grid.9851.5" + }, + "ISNI": { + "all": [ + "0000 0001 2165 4204" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q658975" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/019wvm592.json b/v1.47/v1/019wvm592.json new file mode 100644 index 000000000..840225ce4 --- /dev/null +++ b/v1.47/v1/019wvm592.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/019wvm592", + "name": "Australian National University", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ARC Centre of Excellence for Transformative Meta-Optical Systems", + "type": "Child", + "id": "https://ror.org/05sh7tb37" + }, + { + "label": "ARC Centre of Excellence in Plant Energy Biology", + "type": "Child", + "id": "https://ror.org/01a1mq059" + }, + { + "label": "Mount Stromlo Observatory", + "type": "Child", + "id": "https://ror.org/006a4jj40" + }, + { + "label": "Australian Data Archive", + "type": "Child", + "id": "https://ror.org/00qtfgg81" + }, + { + "label": "Australian Centre for Excellence in Antarctic Science", + "type": "Child", + "id": "https://ror.org/024jkkf40" + }, + { + "label": "Centre for Advanced Microscopy", + "type": "Child", + "id": "https://ror.org/01s5nqv53" + }, + { + "label": "Calvary Hospital", + "type": "Related", + "id": "https://ror.org/041c7s516" + }, + { + "label": "Canberra Hospital", + "type": "Related", + "id": "https://ror.org/04h7nbn38" + }, + { + "label": "Goulburn Base Hospital", + "type": "Related", + "id": "https://ror.org/030jpqj15" + }, + { + "label": "Consortium for Ocean-Sea Ice Modelling in Australia", + "type": "Related", + "id": "https://ror.org/00qq77n27" + }, + { + "label": "Stawell Underground Physics Laboratory", + "type": "Related", + "id": "https://ror.org/01az7g189" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.anu.edu.au/" + ], + "aliases": [], + "acronyms": [ + "ANU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Australian_National_University", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1001.0", + "preferred": "grid.1001.0" + }, + "ISNI": { + "all": [ + "0000 0001 2180 7477" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q127990" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01ap27310.json b/v1.47/v1/01ap27310.json new file mode 100644 index 000000000..a1d09bc92 --- /dev/null +++ b/v1.47/v1/01ap27310.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/01ap27310", + "name": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Jean Moulin University Lyon 3", + "type": "Parent", + "id": "https://ror.org/05b5c0584" + }, + { + "label": "Lumière University Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://iserl.fr/" + ], + "aliases": [], + "acronyms": [ + "ISERL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482742.f", + "preferred": "grid.482742.f" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01az7g189.json b/v1.47/v1/01az7g189.json new file mode 100644 index 000000000..fd78a45c2 --- /dev/null +++ b/v1.47/v1/01az7g189.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/01az7g189", + "name": "Stawell Underground Physics Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Melbourne", + "type": "Related", + "id": "https://ror.org/01ej9dk98" + }, + { + "label": "University of Adelaide", + "type": "Related", + "id": "https://ror.org/00892tw58" + }, + { + "label": "Australian National University", + "type": "Related", + "id": "https://ror.org/019wvm592" + }, + { + "label": "Swinburne University of Technology", + "type": "Related", + "id": "https://ror.org/031rekg67" + }, + { + "label": "Australian Nuclear Science and Technology Organisation", + "type": "Related", + "id": "https://ror.org/05j7fep28" + } + ], + "addresses": [ + { + "lat": -37.05632, + "lng": 142.78088, + "state": null, + "state_code": null, + "city": "Stawell", + "geonames_city": { + "id": 2148431, + "city": "Stawell", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.supl.org.au" + ], + "aliases": [ + "SUPL Ltd", + "Stawell Underground Physics Lab", + "Stawell Underground Physics Laboratory Ltd" + ], + "acronyms": [ + "SUPL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Stawell_Underground_Physics_Laboratory", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q19879492" + ], + "preferred": "Q19879492" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01b436806.json b/v1.47/v1/01b436806.json new file mode 100644 index 000000000..6ffebb469 --- /dev/null +++ b/v1.47/v1/01b436806.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/01b436806", + "name": "CIRED", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Météo-France", + "type": "Parent", + "id": "https://ror.org/0233st365" + }, + { + "label": "École des Ponts ParisTech", + "type": "Parent", + "id": "https://ror.org/02nwvxz07" + }, + { + "label": "University of Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.83669, + "lng": 2.48255, + "state": null, + "state_code": null, + "city": "Nogent-sur-Marne", + "geonames_city": { + "id": 2990265, + "city": "Nogent-sur-Marne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.centre-cired.fr/index.php/en/" + ], + "aliases": [ + "Centre International de Recherche sur l'Environnement et le Developpement", + "International Research Center on Environment and Development" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre International de Recherche sur l'Environnement et le Développement", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462809.1", + "preferred": "grid.462809.1" + }, + "ISNI": { + "all": [ + "0000 0001 2165 5311" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01beje961.json b/v1.47/v1/01beje961.json new file mode 100644 index 000000000..860a5bb0d --- /dev/null +++ b/v1.47/v1/01beje961.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01beje961", + "name": "Galleria Borghese", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Ministero della cultura", + "type": "Parent", + "id": "https://ror.org/035qedt02" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://galleriaborghese.beniculturali.it" + ], + "aliases": [ + "Borghese Gallery", + "Ga-Bor" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://it.wikipedia.org/wiki/Galleria_Borghese", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2163 9792" + ], + "preferred": "0000 0001 2163 9792" + }, + "Wikidata": { + "all": [ + "Q841506" + ], + "preferred": "Q841506" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01bg62x04.json b/v1.47/v1/01bg62x04.json new file mode 100644 index 000000000..2135d3c47 --- /dev/null +++ b/v1.47/v1/01bg62x04.json @@ -0,0 +1,176 @@ +{ + "id": "https://ror.org/01bg62x04", + "name": "Government of Catalonia", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Agencia per a la Competitivit de l'Empresa", + "type": "Child", + "id": "https://ror.org/01xhc9d78" + }, + { + "label": "Agència de Gestió d'Ajuts Universitaris i de Recerca", + "type": "Child", + "id": "https://ror.org/01n4pqe45" + }, + { + "label": "Departament d'Educació", + "type": "Child", + "id": "https://ror.org/02dkz1149" + }, + { + "label": "Departament de Cultura", + "type": "Child", + "id": "https://ror.org/014ns9811" + }, + { + "label": "Departament de Salut", + "type": "Child", + "id": "https://ror.org/00nyrjc53" + }, + { + "label": "Institut Català de la Salut", + "type": "Child", + "id": "https://ror.org/04wkdwp52" + }, + { + "label": "Institut Català de les Dones", + "type": "Child", + "id": "https://ror.org/03g0h0k24" + }, + { + "label": "Institut de Seguretat Pública de Catalunya", + "type": "Child", + "id": "https://ror.org/01k6ah132" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "Child", + "id": "https://ror.org/012zh9h13" + }, + { + "label": "Departament d'Economia i Hisenda de la Generalitat de Catalunya", + "type": "Child", + "id": "https://ror.org/0564q6y15" + }, + { + "label": "National Institute of Physical Education of Catalonia", + "type": "Child", + "id": "https://ror.org/04xrm3t06" + }, + { + "label": "Institut de Política Econòmica i Governança", + "type": "Child", + "id": "https://ror.org/03wbt1f24" + }, + { + "label": "Departament de Recerca i Universitats", + "type": "Child", + "id": "https://ror.org/01gbnem66" + }, + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "Related", + "id": "https://ror.org/03abrgd14" + }, + { + "label": "Departament d'Empresa i Treball", + "type": "Child", + "id": "https://ror.org/01jn7qf49" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://catalangovernment.eu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Generalitat_de_Catalunya", + "labels": [ + { + "label": "Generalidad de Cataluña", + "iso639": "es" + }, + { + "label": "Generalitat de Catalunya", + "iso639": "ca" + }, + { + "label": "Kataluniako Generalitatea", + "iso639": "eu" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.454735.4", + "preferred": "grid.454735.4" + }, + "ISNI": { + "all": [ + "0000 0001 2331 7762" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q8022", + "Q3112544" + ], + "preferred": "Q8022" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01bkbaq61.json b/v1.47/v1/01bkbaq61.json new file mode 100644 index 000000000..939f4f674 --- /dev/null +++ b/v1.47/v1/01bkbaq61.json @@ -0,0 +1,316 @@ +{ + "id": "https://ror.org/01bkbaq61", + "name": "CERCA Institution", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre for Demographic Studies", + "type": "Child", + "id": "https://ror.org/02dm87055" + }, + { + "label": "International Center for Numerical Methods in Engineering", + "type": "Child", + "id": "https://ror.org/03ej8a714" + }, + { + "label": "Center for Research in Agricultural Genomics", + "type": "Child", + "id": "https://ror.org/04tz2h245" + }, + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "Child", + "id": "https://ror.org/03abrgd14" + }, + { + "label": "Centre de Recerca en Economia Internacional", + "type": "Child", + "id": "https://ror.org/0241avf06" + }, + { + "label": "Centre for Genomic Regulation", + "type": "Child", + "id": "https://ror.org/03wyzt892" + }, + { + "label": "Centre de Recerca Matemàtica", + "type": "Child", + "id": "https://ror.org/020s51w82" + }, + { + "label": "Forest Science and Technology Centre of Catalonia", + "type": "Child", + "id": "https://ror.org/02tt2zf29" + }, + { + "label": "Centre Tecnologic de Telecomunicacions de Catalunya", + "type": "Child", + "id": "https://ror.org/001cwea56" + }, + { + "label": "i2CAT", + "type": "Child", + "id": "https://ror.org/02rkks755" + }, + { + "label": "Institute of Research and Innovation Parc Tauli", + "type": "Child", + "id": "https://ror.org/038c0gc18" + }, + { + "label": "Institute for Bioengineering of Catalonia", + "type": "Child", + "id": "https://ror.org/056h71x09" + }, + { + "label": "Institut Barcelona d'Estudis Internacionals", + "type": "Child", + "id": "https://ror.org/05rke5d69" + }, + { + "label": "Institut Català d'Arqueologia Clàssica", + "type": "Child", + "id": "https://ror.org/04nwrc387" + }, + { + "label": "Institute of Photonic Sciences", + "type": "Child", + "id": "https://ror.org/03g5ew477" + }, + { + "label": "Institut Català d'Investigació Química", + "type": "Child", + "id": "https://ror.org/013j2zh96" + }, + { + "label": "Institut Català de Nanociència i Nanotecnologia", + "type": "Child", + "id": "https://ror.org/00k1qja49" + }, + { + "label": "Institut Català de Paleontologia Miquel Crusafont", + "type": "Child", + "id": "https://ror.org/04qeh2h86" + }, + { + "label": "Catalan Institute for Water Research", + "type": "Child", + "id": "https://ror.org/04zfaj906" + }, + { + "label": "Consorci Institut D'Investigacions Biomediques August Pi I Sunyer", + "type": "Child", + "id": "https://ror.org/054vayn55" + }, + { + "label": "Institut d'Investigació Biomédica de Bellvitge", + "type": "Child", + "id": "https://ror.org/0008xqs48" + }, + { + "label": "Institut d'Investigació Biomèdica de Girona", + "type": "Child", + "id": "https://ror.org/020yb3m85" + }, + { + "label": "Institut d'Estudis Espacials de Catalunya", + "type": "Child", + "id": "https://ror.org/00k6njn28" + }, + { + "label": "Institute for High Energy Physics", + "type": "Child", + "id": "https://ror.org/01sdrjx85" + }, + { + "label": "Institut d'Investigació en Ciències de la Salut Germans Trias i Pujol", + "type": "Child", + "id": "https://ror.org/03bzdww12" + }, + { + "label": "Institut d'Investigació Sanitària Pere Virgili", + "type": "Child", + "id": "https://ror.org/01av3a615" + }, + { + "label": "Hospital del Mar Research Institute", + "type": "Child", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Institut Català de Paleoecologia Humana i Evolució Social", + "type": "Child", + "id": "https://ror.org/02zbs8663" + }, + { + "label": "Institute for Research in Biomedicine", + "type": "Child", + "id": "https://ror.org/01z1gye03" + }, + { + "label": "Biomedical Research Institute of Lleida", + "type": "Child", + "id": "https://ror.org/03mfyme49" + }, + { + "label": "Institut de Recerca de l'Energia de Catalunya", + "type": "Child", + "id": "https://ror.org/03b6f4629" + }, + { + "label": "Josep Carreras Leukaemia Research Institute", + "type": "Child", + "id": "https://ror.org/00btzwk36" + }, + { + "label": "IrsiCaixa", + "type": "Child", + "id": "https://ror.org/001synm23" + }, + { + "label": "Sant Joan de Déu Research Foundation", + "type": "Child", + "id": "https://ror.org/03g7nb016" + }, + { + "label": "Barcelona Institute for Global Health", + "type": "Child", + "id": "https://ror.org/03hjgt059" + }, + { + "label": "Vall d'Hebron Institut de Recerca", + "type": "Child", + "id": "https://ror.org/01d5vx451" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "Child", + "id": "https://ror.org/012zh9h13" + }, + { + "label": "Fundació Clínic per a la Recerca Biomèdica", + "type": "Child", + "id": "https://ror.org/03mw46n78" + }, + { + "label": "Fundació Privada Clínic per a La Recerca Biomèdica", + "type": "Child", + "id": "https://ror.org/018ndmv91" + }, + { + "label": "Agrotecnio - Centre for Food and Agriculture Research", + "type": "Child", + "id": "https://ror.org/04wvm7462" + }, + { + "label": "Computer Vision Center", + "type": "Child", + "id": "https://ror.org/00s0nnj93" + }, + { + "label": "Catalan Institute for Cultural Heritage Research", + "type": "Child", + "id": "https://ror.org/04xxayh10" + }, + { + "label": "Institut de Recerca Sant Pau", + "type": "Child", + "id": "https://ror.org/005teat46" + }, + { + "label": "Vall d'Hebron Institute of Oncology", + "type": "Child", + "id": "https://ror.org/054xx3904" + }, + { + "label": "Institut de Recerca Sant Joan de Déu", + "type": "Child", + "id": "https://ror.org/00gy2ar74" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cerca.cat" + ], + "aliases": [ + "Institución CERCA" + ], + "acronyms": [ + "CERCA", + "I-CERCA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CERCA_Institute", + "labels": [ + { + "label": "Fundació Institució dels Centres de Recerca de Catalunya", + "iso639": "ca" + }, + { + "label": "Institució CERCA - Centres de Recerca de Catalunya", + "iso639": "ca" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q30100395" + ], + "preferred": "Q30100395" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01bwma613.json b/v1.47/v1/01bwma613.json new file mode 100644 index 000000000..db165088e --- /dev/null +++ b/v1.47/v1/01bwma613.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/01bwma613", + "name": "Max Planck School Matter to Life", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.40768, + "lng": 8.69079, + "state": null, + "state_code": null, + "city": "Heidelberg", + "geonames_city": { + "id": 2907911, + "city": "Heidelberg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mattertolife.maxplanckschools.org" + ], + "aliases": [ + "Matter to Life" + ], + "acronyms": [ + "MtL" + ], + "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.47/v1/01cabt515.json b/v1.47/v1/01cabt515.json new file mode 100644 index 000000000..f88f02e87 --- /dev/null +++ b/v1.47/v1/01cabt515.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/01cabt515", + "name": "Université Publique du Sud'Est", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 18.23427, + "lng": -72.53539, + "state": null, + "state_code": null, + "city": "Jacmel", + "geonames_city": { + "id": 3723779, + "city": "Jacmel", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://upsej.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Haiti", + "country_code": "HT" + }, + "external_ids": { + "GRID": { + "all": "grid.502113.4", + "preferred": "grid.502113.4" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01cbd4k69.json b/v1.47/v1/01cbd4k69.json new file mode 100644 index 000000000..dd9ecaf81 --- /dev/null +++ b/v1.47/v1/01cbd4k69.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01cbd4k69", + "name": "Vysočina Region", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Vysočina Regional Library", + "type": "Child", + "id": "https://ror.org/03j1z6h17" + } + ], + "addresses": [ + { + "lat": 49.3961, + "lng": 15.59124, + "state": null, + "state_code": null, + "city": "Jihlava", + "geonames_city": { + "id": 3074199, + "city": "Jihlava", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kr-vysocina.cz" + ], + "aliases": [ + "Vysocina Region, Vysocina Region of the Czech Republic" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Kraj_Vyso%C4%8Dina", + "labels": [ + { + "label": "Kraj Vysočina", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0611 2329" + ], + "preferred": "0000 0004 0611 2329" + }, + "Wikidata": { + "all": [ + "Q190930" + ], + "preferred": "Q190930" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01cm4sr79.json b/v1.47/v1/01cm4sr79.json new file mode 100644 index 000000000..4cbd8cb82 --- /dev/null +++ b/v1.47/v1/01cm4sr79.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01cm4sr79", + "name": "Klaipeda State University of Applied Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": 55.7068, + "lng": 21.13912, + "state": null, + "state_code": null, + "city": "Klaipėda", + "geonames_city": { + "id": 598098, + "city": "Klaipėda", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.klvtk.lt/" + ], + "aliases": [ + "Klaipėdos valstybinė kolegija" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Lithuania", + "country_code": "LT" + }, + "external_ids": { + "GRID": { + "all": "grid.465968.0", + "preferred": "grid.465968.0" + }, + "ISNI": { + "all": [ + "0000 0004 0381 8262" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01czqbr06.json b/v1.47/v1/01czqbr06.json new file mode 100644 index 000000000..bb86cbbe4 --- /dev/null +++ b/v1.47/v1/01czqbr06.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01czqbr06", + "name": "Swiss School of Public Health", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + } + ], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ssphplus.ch/sharepoint/startseite_en.html" + ], + "aliases": [ + "SSPH+" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.483659.5", + "preferred": "grid.483659.5" + }, + "ISNI": { + "all": [ + "0000 0004 0519 422X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01d02zv78.json b/v1.47/v1/01d02zv78.json new file mode 100644 index 000000000..2fe9d6733 --- /dev/null +++ b/v1.47/v1/01d02zv78.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/01d02zv78", + "name": "Australian Institute of Botanical Science", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Royal Botanic Garden Sydney", + "type": "Parent", + "id": "https://ror.org/03nw3dq29" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.botanicgardens.org.au/discover-and-learn/watch-listen-read/australian-institute-botanical-science" + ], + "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.47/v1/01d5qkg71.json b/v1.47/v1/01d5qkg71.json new file mode 100644 index 000000000..b424fbec2 --- /dev/null +++ b/v1.47/v1/01d5qkg71.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01d5qkg71", + "name": "Ghana Academy of Arts and Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.55602, + "lng": -0.1969, + "state": null, + "state_code": null, + "city": "Accra", + "geonames_city": { + "id": 2306104, + "city": "Accra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://gaas-gh.org" + ], + "aliases": [], + "acronyms": [ + "GAAS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ghana_Academy_of_Arts_and_Sciences", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 8499 2537" + ], + "preferred": "0000 0000 8499 2537" + }, + "Wikidata": { + "all": [ + "Q5555328" + ], + "preferred": "Q5555328" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01db6n192.json b/v1.47/v1/01db6n192.json new file mode 100644 index 000000000..9842e681c --- /dev/null +++ b/v1.47/v1/01db6n192.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/01db6n192", + "name": "Department of Climate Change, Energy, the Environment and Water", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Australian Biological Resources Study", + "type": "Child", + "id": "https://ror.org/00289aa83" + }, + { + "label": "Australian Government", + "type": "Parent", + "id": "https://ror.org/0314h5y94" + }, + { + "label": "Department of Agriculture, Water and the Environment", + "type": "Predecessor", + "id": "https://ror.org/030c92375" + }, + { + "label": "Consortium for Ocean-Sea Ice Modelling in Australia", + "type": "Related", + "id": "https://ror.org/00qq77n27" + }, + { + "label": "Australian Institute of Marine Science", + "type": "Child", + "id": "https://ror.org/03x57gn41" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dcceew.gov.au" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Climate_Change%2C_Energy%2C_the_Environment_and_Water", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q113380107" + ], + "preferred": "Q113380107" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01dh9vr61.json b/v1.47/v1/01dh9vr61.json new file mode 100644 index 000000000..f010f2d0e --- /dev/null +++ b/v1.47/v1/01dh9vr61.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01dh9vr61", + "name": "Office of Naval Intelligence", + "email_address": null, + "ip_addresses": [], + "established": 1882, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.oni.navy.mil/" + ], + "aliases": [], + "acronyms": [ + "ONI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Office_of_Naval_Intelligence", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.482842.0", + "preferred": "grid.482842.0" + }, + "ISNI": { + "all": [ + "0000 0004 0427 9344" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01dkyve95.json b/v1.47/v1/01dkyve95.json new file mode 100644 index 000000000..a10dc7bca --- /dev/null +++ b/v1.47/v1/01dkyve95.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/01dkyve95", + "name": "L'Institut Agro", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ministère de l'Agriculture et de la Souveraineté alimentaire", + "type": "Parent", + "id": "https://ror.org/029m96t80" + }, + { + "label": "Institut Agro Montpellier", + "type": "Child", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Institut Agro Dijon", + "type": "Child", + "id": "https://ror.org/03zek0r74" + }, + { + "label": "Institut Agro Rennes-Angers", + "type": "Child", + "id": "https://ror.org/01s3fs709" + }, + { + "label": "ABSys", + "type": "Child", + "id": "https://ror.org/00n2c0309" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.institut-agro.fr" + ], + "aliases": [ + "Institut Agro", + "Institut national d'enseignement supérieur pour l'agriculture, l'alimentation et l'environnement" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Institut_national_d%27enseignement_sup%C3%A9rieur_pour_l%27agriculture,_l%27alimentation_et_l%27environnement", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q81433122" + ], + "preferred": "Q81433122" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01dthb180.json b/v1.47/v1/01dthb180.json new file mode 100644 index 000000000..cfcb26a03 --- /dev/null +++ b/v1.47/v1/01dthb180.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01dthb180", + "name": "Epidémiosurveillance et circulation des parasites dans les environnements", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + }, + { + "label": "Université de Rouen Normandie", + "type": "Parent", + "id": "https://ror.org/03nhjew95" + }, + { + "label": "French Agency for Food, Environmental and Occupational Health & Safety", + "type": "Parent", + "id": "https://ror.org/0471kz689" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-reims.fr/universite/organisation/epidemiosurveillance-de-protozooses-a-transmission-alimentaire-et-vectorielle-escape,7741,18258.html" + ], + "aliases": [], + "acronyms": [ + "ESCAPE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/01dw2vm55.json b/v1.47/v1/01dw2vm55.json new file mode 100644 index 000000000..c3e618597 --- /dev/null +++ b/v1.47/v1/01dw2vm55.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01dw2vm55", + "name": "Rajalakshmi Engineering College", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 13.08784, + "lng": 80.27847, + "state": null, + "state_code": null, + "city": "Chennai", + "geonames_city": { + "id": 1264527, + "city": "Chennai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rajalakshmi.org" + ], + "aliases": [], + "acronyms": [ + "REC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rajalakshmi_Engineering_College", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0505 0154" + ], + "preferred": "0000 0004 0505 0154" + }, + "Wikidata": { + "all": [ + "Q955176" + ], + "preferred": "Q955176" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01e2k1j30.json b/v1.47/v1/01e2k1j30.json new file mode 100644 index 000000000..9cd2ef0dd --- /dev/null +++ b/v1.47/v1/01e2k1j30.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01e2k1j30", + "name": "Bureau of Medicine and Surgery", + "email_address": null, + "ip_addresses": [], + "established": 1842, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 38.88233, + "lng": -77.17109, + "state": null, + "state_code": null, + "city": "Falls Church", + "geonames_city": { + "id": 4758390, + "city": "Falls Church", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.med.navy.mil" + ], + "aliases": [ + "Navy Bureau of Medicine and Surgery", + "U.S. Navy Bureau of Medicine and Surgery", + "United States Bureau of Medicine and Surgery" + ], + "acronyms": [ + "BUMED" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bureau_of_Medicine_and_Surgery", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0672 5166" + ], + "preferred": "0000 0001 0672 5166" + }, + "Wikidata": { + "all": [ + "Q17986161" + ], + "preferred": "Q17986161" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01e6mcq80.json b/v1.47/v1/01e6mcq80.json new file mode 100644 index 000000000..e908f005f --- /dev/null +++ b/v1.47/v1/01e6mcq80.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01e6mcq80", + "name": "Universitas Bosowa", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -5.14861, + "lng": 119.43194, + "state": null, + "state_code": null, + "city": "Makassar", + "geonames_city": { + "id": 1622786, + "city": "Makassar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unibos.ac.id" + ], + "aliases": [ + "Bosowa University", + "Makassar \"45\" University" + ], + "acronyms": [ + "UNIBOS" + ], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Universitas_Bosowa", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "GRID": { + "all": "grid.444598.0", + "preferred": "grid.444598.0" + }, + "ISNI": { + "all": [ + "0000 0004 0385 7624" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q12523285" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01ej9dk98.json b/v1.47/v1/01ej9dk98.json new file mode 100644 index 000000000..290271203 --- /dev/null +++ b/v1.47/v1/01ej9dk98.json @@ -0,0 +1,224 @@ +{ + "id": "https://ror.org/01ej9dk98", + "name": "University of Melbourne", + "email_address": null, + "ip_addresses": [], + "established": 1853, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ARC Centre of Excellence for Coherent X-ray Science", + "type": "Child", + "id": "https://ror.org/02gs3vg83" + }, + { + "label": "ARC Centre of Excellence for Dark Matter Particle Physics", + "type": "Child", + "id": "https://ror.org/00cybsr61" + }, + { + "label": "ARC Centre of Excellence for Mathematical and Statistical Frontiers", + "type": "Child", + "id": "https://ror.org/02vcqg248" + }, + { + "label": "ARC Centre of Excellence for Particle Physics at the Terascale", + "type": "Child", + "id": "https://ror.org/01h06nz15" + }, + { + "label": "Florey Institute of Neuroscience and Mental Health", + "type": "Child", + "id": "https://ror.org/03a2tac74" + }, + { + "label": "Peter Doherty Institute", + "type": "Child", + "id": "https://ror.org/016899r71" + }, + { + "label": "Botany Foundation", + "type": "Child", + "id": "https://ror.org/04fxxe129" + }, + { + "label": "AuScope", + "type": "Related", + "id": "https://ror.org/04s1m4564" + }, + { + "label": "Austin Health", + "type": "Related", + "id": "https://ror.org/05dbj6g52" + }, + { + "label": "Austin Hospital", + "type": "Related", + "id": "https://ror.org/010mv7n52" + }, + { + "label": "Australian Urban Research Infrastructure Network", + "type": "Related", + "id": "https://ror.org/02c3nzd41" + }, + { + "label": "Bionics Institute", + "type": "Related", + "id": "https://ror.org/05e4f1b55" + }, + { + "label": "Burnet Institute", + "type": "Related", + "id": "https://ror.org/05ktbsm52" + }, + { + "label": "Centre for Eye Research Australia", + "type": "Related", + "id": "https://ror.org/01sqdef20" + }, + { + "label": "Epworth Hospital", + "type": "Related", + "id": "https://ror.org/02ett6548" + }, + { + "label": "Geelong Hospital", + "type": "Related", + "id": "https://ror.org/00jrpxe15" + }, + { + "label": "Melbourne Health", + "type": "Related", + "id": "https://ror.org/04z4kmw33" + }, + { + "label": "Murdoch Children's Research Institute", + "type": "Related", + "id": "https://ror.org/048fyec77" + }, + { + "label": "Northern Hospital", + "type": "Related", + "id": "https://ror.org/05mjmsc11" + }, + { + "label": "Royal Children's Hospital", + "type": "Related", + "id": "https://ror.org/02rktxt32" + }, + { + "label": "Royal Women's Hospital", + "type": "Related", + "id": "https://ror.org/03grnna41" + }, + { + "label": "St Vincent's Hospital", + "type": "Related", + "id": "https://ror.org/001kjn539" + }, + { + "label": "St Vincents Institute of Medical Research", + "type": "Related", + "id": "https://ror.org/02k3cxs74" + }, + { + "label": "The Royal Victorian Eye & Ear Hospital", + "type": "Related", + "id": "https://ror.org/008q4kt04" + }, + { + "label": "Victorian Comprehensive Cancer Centre", + "type": "Related", + "id": "https://ror.org/00st91468" + }, + { + "label": "Australian Centre for Excellence in Antarctic Science", + "type": "Related", + "id": "https://ror.org/024jkkf40" + }, + { + "label": "Stawell Underground Physics Laboratory", + "type": "Related", + "id": "https://ror.org/01az7g189" + } + ], + "addresses": [ + { + "lat": -37.814, + "lng": 144.96332, + "state": null, + "state_code": null, + "city": "Melbourne", + "geonames_city": { + "id": 2158177, + "city": "Melbourne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unimelb.edu.au/" + ], + "aliases": [ + "Melbourne University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Melbourne", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1008.9", + "preferred": "grid.1008.9" + }, + "ISNI": { + "all": [ + "0000 0001 2179 088X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q319078" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01epydt92.json b/v1.47/v1/01epydt92.json new file mode 100644 index 000000000..1155aac86 --- /dev/null +++ b/v1.47/v1/01epydt92.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01epydt92", + "name": "Open Science NL", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [], + "relationships": [ + { + "label": "Dutch Research Council", + "type": "Parent", + "id": "https://ror.org/04jsz6e67" + } + ], + "addresses": [ + { + "lat": 52.07667, + "lng": 4.29861, + "state": null, + "state_code": null, + "city": "The Hague", + "geonames_city": { + "id": 2747373, + "city": "The Hague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.openscience.nl" + ], + "aliases": [ + "Regieorgaan Open Science" + ], + "acronyms": [ + "OSNL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/01g7fa878.json b/v1.47/v1/01g7fa878.json new file mode 100644 index 000000000..2548d228f --- /dev/null +++ b/v1.47/v1/01g7fa878.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/01g7fa878", + "name": "State Agrarian University of Moldova", + "email_address": null, + "ip_addresses": [], + "established": 1933, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Technical University of Moldova", + "type": "Successor", + "id": "https://ror.org/02b82hk77" + } + ], + "addresses": [ + { + "lat": 47.00556, + "lng": 28.8575, + "state": null, + "state_code": null, + "city": "Chisinau", + "geonames_city": { + "id": 618426, + "city": "Chisinau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uasm.md" + ], + "aliases": [], + "acronyms": [ + "SAUM" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Agricultural_State_University_of_Moldova", + "labels": [ + { + "label": "Universitatea Agrară de Stat din Moldova", + "iso639": "ro" + } + ], + "country": { + "country_name": "Moldova", + "country_code": "MD" + }, + "external_ids": { + "GRID": { + "all": "grid.445961.b", + "preferred": "grid.445961.b" + }, + "ISNI": { + "all": [ + "0000 0000 9215 4939" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4693931" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01gmtnk43.json b/v1.47/v1/01gmtnk43.json new file mode 100644 index 000000000..8d84c2784 --- /dev/null +++ b/v1.47/v1/01gmtnk43.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/01gmtnk43", + "name": "Federal Chancellery Republic of Austria", + "email_address": null, + "ip_addresses": [], + "established": 1920, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Austrian State Archives", + "type": "Child", + "id": "https://ror.org/03fb0b548" + }, + { + "label": "Bundesdenkmalamt", + "type": "Related", + "id": "https://ror.org/05ksqqc16" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bundeskanzleramt.gv.at/public.html" + ], + "aliases": [], + "acronyms": [ + "BKA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Chancellery_(Austria)", + "labels": [ + { + "label": "Bundeskanzleramt", + "iso639": "de" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "GRID": { + "all": "grid.424433.6", + "preferred": "grid.424433.6" + }, + "ISNI": { + "all": [ + "0000 0001 2375 2684" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q668916" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01gsy1c54.json b/v1.47/v1/01gsy1c54.json new file mode 100644 index 000000000..b60b72d8a --- /dev/null +++ b/v1.47/v1/01gsy1c54.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01gsy1c54", + "name": "Naval Aerospace Medical Research Laboratory", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 30.42131, + "lng": -87.21691, + "state": null, + "state_code": null, + "city": "Pensacola", + "geonames_city": { + "id": 4168228, + "city": "Pensacola", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.med.navy.mil/sites/nmrc/Pages/namrud_namrl_ch.htm" + ], + "aliases": [], + "acronyms": [ + "NAMRL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.415866.8", + "preferred": "grid.415866.8" + }, + "ISNI": { + "all": [ + "0000 0004 0647 4354" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30280677" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01gy51q73.json b/v1.47/v1/01gy51q73.json new file mode 100644 index 000000000..6cf4f720b --- /dev/null +++ b/v1.47/v1/01gy51q73.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/01gy51q73", + "name": "Philippine Association of Institutions for Research, Inc.", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 8.48222, + "lng": 124.64722, + "state": null, + "state_code": null, + "city": "Cagayan de Oro", + "geonames_city": { + "id": 1721080, + "city": "Cagayan de Oro", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://philair.ph" + ], + "aliases": [ + "PAIR, Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/01h0ycp25.json b/v1.47/v1/01h0ycp25.json new file mode 100644 index 000000000..997cc8386 --- /dev/null +++ b/v1.47/v1/01h0ycp25.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01h0ycp25", + "name": "Internationale Stichting Alzheimer Onderzoek", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Alzheimer Nederland", + "type": "Successor", + "id": "https://ror.org/03cw2h814" + } + ], + "addresses": [ + { + "lat": 50.94917, + "lng": 5.77083, + "state": null, + "state_code": null, + "city": "Elsloo", + "geonames_city": { + "id": 2756169, + "city": "Elsloo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.alzheimer.nl/" + ], + "aliases": [], + "acronyms": [ + "ISAO" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "GRID": { + "all": "grid.454806.b", + "preferred": "grid.454806.b" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01h4pzb37.json b/v1.47/v1/01h4pzb37.json new file mode 100644 index 000000000..863ccff9a --- /dev/null +++ b/v1.47/v1/01h4pzb37.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/01h4pzb37", + "name": "Hochschulinstitut Schaffhausen", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.69732, + "lng": 8.63493, + "state": null, + "state_code": null, + "city": "Schaffhausen", + "geonames_city": { + "id": 2658761, + "city": "Schaffhausen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hochschule-schaffhausen.ch" + ], + "aliases": [ + "HSSH Schaffhausen", + "Universitäres Hochschulinstitut Schaffhausen" + ], + "acronyms": [ + "HSSH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/01hpqfm28.json b/v1.47/v1/01hpqfm28.json new file mode 100644 index 000000000..f21f41cd5 --- /dev/null +++ b/v1.47/v1/01hpqfm28.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01hpqfm28", + "name": "Connecticut College", + "email_address": null, + "ip_addresses": [], + "established": 1911, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.35565, + "lng": -72.09952, + "state": null, + "state_code": null, + "city": "New London", + "geonames_city": { + "id": 4839416, + "city": "New London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.conncoll.edu/" + ], + "aliases": [ + "Conn College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Connecticut_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.254656.6", + "preferred": "grid.254656.6" + }, + "ISNI": { + "all": [ + "0000 0001 2343 1311" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1797448" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01jbb3w63.json b/v1.47/v1/01jbb3w63.json new file mode 100644 index 000000000..fffa7c035 --- /dev/null +++ b/v1.47/v1/01jbb3w63.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/01jbb3w63", + "name": "Centre Hospitalier Universitaire de Reims", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpital Maison Blanche", + "type": "Related", + "id": "https://ror.org/054bptx32" + }, + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Related", + "id": "https://ror.org/03hypw319" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chu-reims.fr" + ], + "aliases": [ + "CHU de Reims", + "University Hospital Centre Reims" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.139510.f", + "preferred": "grid.139510.f" + }, + "ISNI": { + "all": [ + "0000 0004 0472 3476" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q17623901" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01jn7qf49.json b/v1.47/v1/01jn7qf49.json new file mode 100644 index 000000000..13389a63c --- /dev/null +++ b/v1.47/v1/01jn7qf49.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01jn7qf49", + "name": "Departament d'Empresa i Treball", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of Catalonia", + "type": "Parent", + "id": "https://ror.org/01bg62x04" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://empresa.gencat.cat" + ], + "aliases": [ + "Departament d'Empresa i Coneixement, Generalitat de Catalunya" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Departamento de Empresa y Conocimiento, Generalidad de Cataluña", + "iso639": "es" + }, + { + "label": "Ministry of Business and Knowledge, Government of Catalonia", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q6590385" + ], + "preferred": "Q6590385" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01jzrzb86.json b/v1.47/v1/01jzrzb86.json new file mode 100644 index 000000000..cedfae890 --- /dev/null +++ b/v1.47/v1/01jzrzb86.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01jzrzb86", + "name": "Institute of Intelligent Industrial Systems and Technologies for Advanced Manufacturing", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institute of Intelligent Systems for Automation", + "type": "Predecessor", + "id": "https://ror.org/051t1q308" + } + ], + "addresses": [ + { + "lat": 45.46427, + "lng": 9.18951, + "state": null, + "state_code": null, + "city": "Milan", + "geonames_city": { + "id": 3173435, + "city": "Milan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.stiima.cnr.it" + ], + "aliases": [], + "acronyms": [ + "STIIMA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Istituto di Sistemi e Tecnologie Industriali Intelligenti per il Manifatturiero Avanzato", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/01k476402.json b/v1.47/v1/01k476402.json new file mode 100644 index 000000000..d11036a7f --- /dev/null +++ b/v1.47/v1/01k476402.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/01k476402", + "name": "Ahmed Draia University", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.87429, + "lng": -0.29388, + "state": null, + "state_code": null, + "city": "Adrar", + "geonames_city": { + "id": 2508813, + "city": "Adrar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-adrar.dz" + ], + "aliases": [ + "African University Ahmed Draïa of Adrar", + "The African University Ahmed Draïa of Adrar", + "The National High Institute of Sharia", + "University of Adrar", + "University of Adrar-Algiers", + "Université d'Adrar" + ], + "acronyms": [ + "UADRAR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Adrar", + "labels": [ + { + "label": "الجامعة الأفريقية", + "iso639": "ar" + } + ], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": { + "GRID": { + "all": "grid.442309.8", + "preferred": "grid.442309.8" + }, + "ISNI": { + "all": [ + "0000 0004 1786 3742" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7895015" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01k800776.json b/v1.47/v1/01k800776.json new file mode 100644 index 000000000..23f194813 --- /dev/null +++ b/v1.47/v1/01k800776.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01k800776", + "name": "ProMedica", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.66394, + "lng": -83.55521, + "state": null, + "state_code": null, + "city": "Toledo", + "geonames_city": { + "id": 5174035, + "city": "Toledo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.promedica.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ProMedica", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0472 9691" + ], + "preferred": "0000 0004 0472 9691" + }, + "Wikidata": { + "all": [ + "Q7246673" + ], + "preferred": "Q7246673" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01k94e681.json b/v1.47/v1/01k94e681.json new file mode 100644 index 000000000..442737a2a --- /dev/null +++ b/v1.47/v1/01k94e681.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01k94e681", + "name": "MIMOS (Malaysia)", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Company", + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 3.1412, + "lng": 101.68653, + "state": null, + "state_code": null, + "city": "Kuala Lumpur", + "geonames_city": { + "id": 1735161, + "city": "Kuala Lumpur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mimos.my" + ], + "aliases": [ + "Malaysian Institute of Microelectronic Systems" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/MIMOS", + "labels": [], + "country": { + "country_name": "Malaysia", + "country_code": "MY" + }, + "external_ids": { + "GRID": { + "all": "grid.436832.8", + "preferred": "grid.436832.8" + }, + "ISNI": { + "all": [ + "0000 0004 1756 9295" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1569604" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01mqjeb88.json b/v1.47/v1/01mqjeb88.json new file mode 100644 index 000000000..668058023 --- /dev/null +++ b/v1.47/v1/01mqjeb88.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01mqjeb88", + "name": "Språkbanken Sam", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Språkbanken", + "type": "Parent", + "id": "https://ror.org/05qhvy459" + } + ], + "addresses": [ + { + "lat": 59.85882, + "lng": 17.63889, + "state": null, + "state_code": null, + "city": "Uppsala", + "geonames_city": { + "id": 2666199, + "city": "Uppsala", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.isof.se/lar-dig-mer/forskning/sprakbanken-sam" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q95573144" + ], + "preferred": "Q95573144" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01n0fwh86.json b/v1.47/v1/01n0fwh86.json new file mode 100644 index 000000000..f641d7c99 --- /dev/null +++ b/v1.47/v1/01n0fwh86.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01n0fwh86", + "name": "Sociedad Latinoamericana de Nutrición", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": -2.90055, + "lng": -79.00453, + "state": null, + "state_code": null, + "city": "Cuenca", + "geonames_city": { + "id": 3658666, + "city": "Cuenca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.slaninternacional.org" + ], + "aliases": [], + "acronyms": [ + "SLAN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ecuador", + "country_code": "EC" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8511 8314" + ], + "preferred": "0000 0004 8511 8314" + }, + "Wikidata": { + "all": [ + "Q71413775" + ], + "preferred": "Q71413775" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01npab275.json b/v1.47/v1/01npab275.json new file mode 100644 index 000000000..76c0a6785 --- /dev/null +++ b/v1.47/v1/01npab275.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01npab275", + "name": "Universidad Autónoma del Carmen", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 18.64592, + "lng": -91.82991, + "state": null, + "state_code": null, + "city": "Ciudad del Carmen", + "geonames_city": { + "id": 3530599, + "city": "Ciudad del Carmen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unacar.mx" + ], + "aliases": [ + "Autonomous University of Carmen" + ], + "acronyms": [ + "UNACAR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Autonomous_University_of_Carmen", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.449264.9", + "preferred": "grid.449264.9" + }, + "ISNI": { + "all": [ + "0000 0004 0484 1114" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16835981" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01ppj9r51.json b/v1.47/v1/01ppj9r51.json new file mode 100644 index 000000000..80685e23d --- /dev/null +++ b/v1.47/v1/01ppj9r51.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/01ppj9r51", + "name": "Gauhati University", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Gauhati Medical College and Hospital", + "type": "Related", + "id": "https://ror.org/00nyr7p12" + }, + { + "label": "Nowgong Girls' College", + "type": "Related", + "id": "https://ror.org/04n3wrd11" + }, + { + "label": "Bagadhar Brahma Kishan College", + "type": "Related", + "id": "https://ror.org/00dy23r24" + } + ], + "addresses": [ + { + "lat": 26.1844, + "lng": 91.7458, + "state": null, + "state_code": null, + "city": "Guwahati", + "geonames_city": { + "id": 1271476, + "city": "Guwahati", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.gauhati.ac.in/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Gauhati_University", + "labels": [ + { + "label": "गुवाहाटी विश्वविद्यालय", + "iso639": "hi" + }, + { + "label": "গুয়াহাটি বিশ্ববিদ্যালয়", + "iso639": "bn" + }, + { + "label": "குவஹாத்தி பல்கலைக்கழகம்", + "iso639": "ta" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.411779.d", + "preferred": "grid.411779.d" + }, + "ISNI": { + "all": [ + "0000 0001 2109 4622" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4475791", + "Q39049844", + "Q5647445" + ], + "preferred": "Q4475791" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01q2s4214.json b/v1.47/v1/01q2s4214.json new file mode 100644 index 000000000..99e502eea --- /dev/null +++ b/v1.47/v1/01q2s4214.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/01q2s4214", + "name": "Addisca", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.55073, + "lng": 9.99302, + "state": null, + "state_code": null, + "city": "Hamburg", + "geonames_city": { + "id": 2911298, + "city": "Hamburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.addisca.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.491669.5", + "preferred": "grid.491669.5" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01qpswk97.json b/v1.47/v1/01qpswk97.json new file mode 100644 index 000000000..4263ce220 --- /dev/null +++ b/v1.47/v1/01qpswk97.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01qpswk97", + "name": "Canon Medical Systems Corporation (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.7, + "lng": 139.81667, + "state": null, + "state_code": null, + "city": "Tochigi", + "geonames_city": { + "id": 1850310, + "city": "Tochigi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://jp.medical.canon" + ], + "aliases": [ + "Canon Medical", + "Canon Medical Systems" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Canon_Medical_Systems_Corporation", + "labels": [ + { + "label": "キヤノンメディカルシステムズ株式会社", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q6149487" + ], + "preferred": "Q6149487" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01r22mr83.json b/v1.47/v1/01r22mr83.json new file mode 100644 index 000000000..7c3f6f308 --- /dev/null +++ b/v1.47/v1/01r22mr83.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/01r22mr83", + "name": "University of Ghana", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Noguchi Memorial Institute for Medical Research", + "type": "Child", + "id": "https://ror.org/00f1qr933" + }, + { + "label": "Catholic University College of Ghana", + "type": "Related", + "id": "https://ror.org/0502vxg14" + }, + { + "label": "Centre for African Wetlands", + "type": "Related", + "id": "https://ror.org/0390fys98" + }, + { + "label": "Korle Bu Teaching Hospital", + "type": "Related", + "id": "https://ror.org/01vzp6a32" + }, + { + "label": "Mount Mary College of Education", + "type": "Related", + "id": "https://ror.org/048pp2f81" + }, + { + "label": "Accra College of Education", + "type": "Related", + "id": "https://ror.org/03nyfz802" + } + ], + "addresses": [ + { + "lat": 5.55602, + "lng": -0.1969, + "state": null, + "state_code": null, + "city": "Accra", + "geonames_city": { + "id": 2306104, + "city": "Accra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ug.edu.gh/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Ghana", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.8652.9", + "preferred": "grid.8652.9" + }, + "ISNI": { + "all": [ + "0000 0004 1937 1485" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2303765" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01raz2h88.json b/v1.47/v1/01raz2h88.json new file mode 100644 index 000000000..6a6f81287 --- /dev/null +++ b/v1.47/v1/01raz2h88.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/01raz2h88", + "name": "Université Thomas SANKARA", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.36566, + "lng": -1.53388, + "state": null, + "state_code": null, + "city": "Ouagadougou", + "geonames_city": { + "id": 2357048, + "city": "Ouagadougou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uts.bf" + ], + "aliases": [], + "acronyms": [ + "UTS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Burkina Faso", + "country_code": "BF" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123382565" + ], + "preferred": "Q123382565" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01rk35k63.json b/v1.47/v1/01rk35k63.json new file mode 100644 index 000000000..53361d0e0 --- /dev/null +++ b/v1.47/v1/01rk35k63.json @@ -0,0 +1,186 @@ +{ + "id": "https://ror.org/01rk35k63", + "name": "Université de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Biologie, Ingénierie et Imagerie de la Greffe de Cornée", + "type": "Child", + "id": "https://ror.org/037b3he73" + }, + { + "label": "Claude Bernard University Lyon 1", + "type": "Child", + "id": "https://ror.org/029brtt94" + }, + { + "label": "Contact and Structure Mechanics Laboratory", + "type": "Child", + "id": "https://ror.org/05s608j53" + }, + { + "label": "Institut National des Sciences Appliquées de Lyon", + "type": "Child", + "id": "https://ror.org/050jn9y42" + }, + { + "label": "Jean Monnet University", + "type": "Child", + "id": "https://ror.org/04yznqr36" + }, + { + "label": "Jean Moulin University Lyon 3", + "type": "Child", + "id": "https://ror.org/05b5c0584" + }, + { + "label": "Laboratoire de Biotechnologies Végétales Appliquées aux Plantes Aromatiques et Médicinales", + "type": "Child", + "id": "https://ror.org/01j6cta96" + }, + { + "label": "Lumière University Lyon 2", + "type": "Child", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "Mines Saint-Étienne", + "type": "Child", + "id": "https://ror.org/05a1dws80" + }, + { + "label": "Pathophysiology, Diagnosis and Treatment of Bone Diseases", + "type": "Child", + "id": "https://ror.org/040zr6b15" + }, + { + "label": "The European Center for High Field NMR", + "type": "Child", + "id": "https://ror.org/00j29pk38" + }, + { + "label": "École Centrale de Lyon", + "type": "Child", + "id": "https://ror.org/05s6rge65" + }, + { + "label": "École Nationale d'Ingénieurs de Saint-Étienne", + "type": "Child", + "id": "https://ror.org/017cfeh02" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Child", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Centre Lyonnais d'Acoustique", + "type": "Child", + "id": "https://ror.org/05tqzgp98" + }, + { + "label": "LabEx PRIMES", + "type": "Child", + "id": "https://ror.org/050qe2074" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.universite-lyon.fr" + ], + "aliases": [ + "University of Lyon System" + ], + "acronyms": [ + "UDL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Lyon", + "labels": [ + { + "label": "Lyongo unibertsitatea", + "iso639": "eu" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.25697.3f", + "preferred": "grid.25697.3f" + }, + "ISNI": { + "all": [ + "0000 0001 2172 4233" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10176" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01rvhet58.json b/v1.47/v1/01rvhet58.json new file mode 100644 index 000000000..ab9180b97 --- /dev/null +++ b/v1.47/v1/01rvhet58.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01rvhet58", + "name": "Farhangian University", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cfu.ac.ir/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Farhangian_University", + "labels": [ + { + "label": "دانشگاه فرهنگیان", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "GRID": { + "all": "grid.502759.c", + "preferred": "grid.502759.c" + }, + "Wikidata": { + "all": [ + "Q11434991" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01rwa8h06.json b/v1.47/v1/01rwa8h06.json new file mode 100644 index 000000000..2a8ebba4c --- /dev/null +++ b/v1.47/v1/01rwa8h06.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01rwa8h06", + "name": "FOD Volksgezondheid, Veiligheid van de Voedselketen en Leefmilieu", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.health.belgium.be" + ], + "aliases": [ + "Belgian Federal Public Service Health, Food Chain Safety and Environment", + "Belgian Federal Public Service for Health, Food Chain Safety and Environment", + "Federal Public Service of Health, Food Chain Safety and Environment" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "FPS Public Health, Food Chain Safety and Environment", + "iso639": "en" + }, + { + "label": "FÖD Volksgesundheit, Sicherheit der Nahrungsmittelkette und Umwelt", + "iso639": "de" + }, + { + "label": "SPF Santé publique, Sécurité de la Chaîne alimentaire et Environnement", + "iso639": "fr" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2078 7654" + ], + "preferred": "0000 0001 2078 7654" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01rx64j22.json b/v1.47/v1/01rx64j22.json new file mode 100644 index 000000000..93157692a --- /dev/null +++ b/v1.47/v1/01rx64j22.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01rx64j22", + "name": "Simon Diedong Dombo University of Business and Integrated Development Studies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.06069, + "lng": -2.50192, + "state": null, + "state_code": null, + "city": "Wa", + "geonames_city": { + "id": 2294206, + "city": "Wa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ubids.edu.gh" + ], + "aliases": [ + "S. D. Dombo University of Business and Integrated Development Studies" + ], + "acronyms": [ + "SDD UBIDS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q116784677" + ], + "preferred": "Q116784677" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01s1a1r54.json b/v1.47/v1/01s1a1r54.json new file mode 100644 index 000000000..b35d881b1 --- /dev/null +++ b/v1.47/v1/01s1a1r54.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01s1a1r54", + "name": "\"Ion Ionescu de la Brad\" Iasi University of Life Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1912, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.16667, + "lng": 27.6, + "state": null, + "state_code": null, + "city": "Iasi", + "geonames_city": { + "id": 675810, + "city": "Iasi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iuls.ro" + ], + "aliases": [ + "Ion Ionescu de la Brad University of Agricultural Sciences and Veterinary Medicine of Iași", + "Universitatea de Științe Agricole și Medicină Veterinară Ion Ionescu de la Brad" + ], + "acronyms": [ + "USAMV" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ion_Ionescu_de_la_Brad_University_of_Agricultural_Sciences_and_Veterinary_Medicine_of_Ia%C8%99i", + "labels": [], + "country": { + "country_name": "Romania", + "country_code": "RO" + }, + "external_ids": { + "GRID": { + "all": "grid.107996.0", + "preferred": "grid.107996.0" + }, + "ISNI": { + "all": [ + "0000 0001 1457 2155" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q287299" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01s3fs709.json b/v1.47/v1/01s3fs709.json new file mode 100644 index 000000000..19531d964 --- /dev/null +++ b/v1.47/v1/01s3fs709.json @@ -0,0 +1,160 @@ +{ + "id": "https://ror.org/01s3fs709", + "name": "Institut Agro Rennes-Angers", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut de Génétique, Environnement et Protection des Plantes", + "type": "Child", + "id": "https://ror.org/038kxsm48" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "Child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Physiology, Environment, and Genetics for the Animal and Livestock Systems", + "type": "Child", + "id": "https://ror.org/00mg8nf58" + }, + { + "label": "Science and Technology of Milk and Eggs", + "type": "Child", + "id": "https://ror.org/03whgj090" + }, + { + "label": "Soil Agro and Hydrosystems Spatialization", + "type": "Child", + "id": "https://ror.org/03k4s1p46" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "Child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "ITAP - Technologies et Méthodes pour les Agricultures de demain", + "type": "Child", + "id": "https://ror.org/00ftatp57" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "Structures et Marchés Agricoles, Ressources et Territoires", + "type": "Child", + "id": "https://ror.org/04fa3ke77" + }, + { + "label": "Biodiversité, Agroécologie et Aménagement du Paysage", + "type": "Child", + "id": "https://ror.org/04byv8g40" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "L'Institut Agro", + "type": "Parent", + "id": "https://ror.org/01dkyve95" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.institut-agro-rennes-angers.fr" + ], + "aliases": [ + "Agrocampus Ouest", + "Institut supérieur des sciences agronomiques, agroalimentaires, horticoles et du paysage" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Agrocampus_Ouest", + "labels": [ + { + "label": "Higher Institute for agricultural sciences, food industry, horticulture and landscape management", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.424765.6", + "preferred": "grid.424765.6" + }, + "ISNI": { + "all": [ + "0000 0001 2187 6317" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3152599" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01sejnw50.json b/v1.47/v1/01sejnw50.json new file mode 100644 index 000000000..52991a078 --- /dev/null +++ b/v1.47/v1/01sejnw50.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/01sejnw50", + "name": "School of Management Fribourg", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.80237, + "lng": 7.15128, + "state": null, + "state_code": null, + "city": "Fribourg", + "geonames_city": { + "id": 2660718, + "city": "Fribourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.heg-fr.ch" + ], + "aliases": [ + "Haute école de gestion Fribourg", + "Hochschule Für Wirtschaft Freibourg" + ], + "acronyms": [ + "HEG-FR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/School_of_Management_Fribourg", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q30594328" + ], + "preferred": "Q30594328" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01sgwka45.json b/v1.47/v1/01sgwka45.json new file mode 100644 index 000000000..160b68d19 --- /dev/null +++ b/v1.47/v1/01sgwka45.json @@ -0,0 +1,234 @@ +{ + "id": "https://ror.org/01sgwka45", + "name": "Microscopie Fonctionnelle du Vivant", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Polytechnic Institute of Toulouse", + "type": "Parent", + "id": "https://ror.org/033p9g875" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Grenoble Institute of Technology", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Jean Monnet University", + "type": "Parent", + "id": "https://ror.org/04yznqr36" + }, + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + }, + { + "label": "University of Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "University of Upper Alsace", + "type": "Parent", + "id": "https://ror.org/04k8k6n84" + }, + { + "label": "Institute Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "ESPCI Paris", + "type": "Parent", + "id": "https://ror.org/03zx86w41" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + }, + { + "label": "Université de Rouen Normandie", + "type": "Parent", + "id": "https://ror.org/03nhjew95" + }, + { + "label": "University of Poitiers", + "type": "Parent", + "id": "https://ror.org/04xhy8q59" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "University of Évry Val d'Essonne", + "type": "Parent", + "id": "https://ror.org/00e96v939" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "French Institute for Research in Computer Science and Automation", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "University of Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Parent", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "University of Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "University of Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "University of Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Biophotonique Microscopie Fonctionnelle du Vivant", + "GDR Microscopie Fonctionnelle du Vivant", + "Groupement de Recherche Microscopie Fonctionnelle du Vivant" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782436" + ], + "preferred": "Q51782436" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01sks0025.json b/v1.47/v1/01sks0025.json new file mode 100644 index 000000000..7fde69b69 --- /dev/null +++ b/v1.47/v1/01sks0025.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/01sks0025", + "name": "Kharkiv National Medical University", + "email_address": null, + "ip_addresses": [], + "established": 1805, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.98081, + "lng": 36.25272, + "state": null, + "state_code": null, + "city": "Kharkiv", + "geonames_city": { + "id": 706483, + "city": "Kharkiv", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://knmu.edu.ua" + ], + "aliases": [ + "Kharkiv Medical Institute", + "Kharkiv State Medical University", + "Харківський державний медичний університет", + "Харківський медичний інститут" + ], + "acronyms": [ + "KhNMU", + "ХНМУ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kharkiv_National_Medical_University", + "labels": [ + { + "label": "Харківський національний медичний університет", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "GRID": { + "all": "grid.445504.4", + "preferred": "grid.445504.4" + }, + "ISNI": { + "all": [ + "0000 0004 0529 6576" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2378813" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01vjw4z39.json b/v1.47/v1/01vjw4z39.json new file mode 100644 index 000000000..0169fbbdc --- /dev/null +++ b/v1.47/v1/01vjw4z39.json @@ -0,0 +1,131 @@ +{ + "id": "https://ror.org/01vjw4z39", + "name": "Southern Medical University", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Boai Hospital of Zhongshan", + "type": "Related", + "id": "https://ror.org/0440kgc56" + }, + { + "label": "Chaozhou Central Hospital", + "type": "Related", + "id": "https://ror.org/03rzkxc19" + }, + { + "label": "Dongguan People’s Hospital", + "type": "Related", + "id": "https://ror.org/022s5gm85" + }, + { + "label": "Nanfang Hospital", + "type": "Related", + "id": "https://ror.org/01eq10738" + }, + { + "label": "Southern Medical University Shenzhen Hospital", + "type": "Related", + "id": "https://ror.org/037c01n91" + }, + { + "label": "Third Affiliated Hospital of Southern Medical University", + "type": "Related", + "id": "https://ror.org/0050r1b65" + }, + { + "label": "Zhujiang Hospital", + "type": "Related", + "id": "https://ror.org/02mhxa927" + } + ], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://portal.smu.edu.cn" + ], + "aliases": [ + "First Military Medical University" + ], + "acronyms": [ + "SMU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Southern_Medical_University", + "labels": [ + { + "label": "南方医科大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.284723.8", + "preferred": "grid.284723.8" + }, + "ISNI": { + "all": [ + "0000 0000 8877 7471" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7570129" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01vnn4t89.json b/v1.47/v1/01vnn4t89.json new file mode 100644 index 000000000..4efd05539 --- /dev/null +++ b/v1.47/v1/01vnn4t89.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/01vnn4t89", + "name": "Laboratoire de Statistique Théorique et Appliquée", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Sorbonne University", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Successor", + "id": "https://ror.org/02vnd0e65" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lsta.lab.upmc.fr/en/index.html" + ], + "aliases": [], + "acronyms": [ + "LSTA" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463964.a", + "preferred": "grid.463964.a" + }, + "ISNI": { + "all": [ + "0000 0004 0468 1077" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01w4ss835.json b/v1.47/v1/01w4ss835.json new file mode 100644 index 000000000..372ce39ef --- /dev/null +++ b/v1.47/v1/01w4ss835.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01w4ss835", + "name": "Ateneo de Davao University", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.07306, + "lng": 125.61278, + "state": null, + "state_code": null, + "city": "Davao City", + "geonames_city": { + "id": 1715348, + "city": "Davao City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.addu.edu.ph" + ], + "aliases": [ + "St. Peter's Parochial School Ateneo de Davao" + ], + "acronyms": [ + "AdDU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ateneo_de_Davao_University", + "labels": [ + { + "label": "Pamantasang Ateneo de Davao", + "iso639": "tl" + } + ], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "GRID": { + "all": "grid.443042.5", + "preferred": "grid.443042.5" + }, + "ISNI": { + "all": [ + "0000 0001 0626 6676" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q268749" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01w6z0f95.json b/v1.47/v1/01w6z0f95.json new file mode 100644 index 000000000..38a37553b --- /dev/null +++ b/v1.47/v1/01w6z0f95.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/01w6z0f95", + "name": "Menorah Medical Center", + "email_address": null, + "ip_addresses": [], + "established": 1931, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "HCA Healthcare", + "type": "Related", + "id": "https://ror.org/0237c2m81" + } + ], + "addresses": [ + { + "lat": 38.98223, + "lng": -94.67079, + "state": null, + "state_code": null, + "city": "Overland Park", + "geonames_city": { + "id": 4276873, + "city": "Overland Park", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://menorahmedicalcenter.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Menorah_Medical_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.488630.1", + "preferred": "grid.488630.1" + }, + "ISNI": { + "all": [ + "0000 0004 0446 4208" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q14689786" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01wf12v72.json b/v1.47/v1/01wf12v72.json new file mode 100644 index 000000000..21cb8363c --- /dev/null +++ b/v1.47/v1/01wf12v72.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/01wf12v72", + "name": "University of Media, Arts and Communication", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.55602, + "lng": -0.1969, + "state": null, + "state_code": null, + "city": "Accra", + "geonames_city": { + "id": 2306104, + "city": "Accra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unimac.edu.gh" + ], + "aliases": [ + "UniMAC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q119808412" + ], + "preferred": "Q119808412" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01wfb3668.json b/v1.47/v1/01wfb3668.json new file mode 100644 index 000000000..5e58c584d --- /dev/null +++ b/v1.47/v1/01wfb3668.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/01wfb3668", + "name": "Institut de Recerca de la Biodiversitat de la Universitat de Barcelona", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Universitat de Barcelona", + "type": "Parent", + "id": "https://ror.org/021018s57" + }, + { + "label": "Institut de Biomedicina de la Universitat de Barcelona", + "type": "Related", + "id": "https://ror.org/01y43zx14" + }, + { + "label": "Institut de Biologia Evolutiva", + "type": "Related", + "id": "https://ror.org/044mj7r89" + }, + { + "label": "Institut de Ciències del Mar", + "type": "Related", + "id": "https://ror.org/05ect0289" + }, + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "Related", + "id": "https://ror.org/03abrgd14" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ub.edu/irbio" + ], + "aliases": [ + "Biodiversity Research Institute", + "IRBio-UB", + "Institut de Recerca de la Biodiversitat", + "Instituto de Investigación de la Biodiversidad" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Biodiversity Research Institute of the Universiy of Barcelona", + "iso639": "en" + }, + { + "label": "Instituto de Investigación de la Biodiversidad de la Universidad de Barcelona", + "iso639": "zh" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7590 6907" + ], + "preferred": "0000 0004 7590 6907" + }, + "Wikidata": { + "all": [ + "Q56685817" + ], + "preferred": "Q56685817" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01wp2jz98.json b/v1.47/v1/01wp2jz98.json new file mode 100644 index 000000000..a97ca8c3a --- /dev/null +++ b/v1.47/v1/01wp2jz98.json @@ -0,0 +1,164 @@ +{ + "id": "https://ror.org/01wp2jz98", + "name": "European X-Ray Free-Electron Laser", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Deutsches Elektronen-Synchrotron DESY", + "type": "Parent", + "id": "https://ror.org/01js2sh04" + }, + { + "label": "Danish Agency for Science and Higher Education", + "type": "Parent", + "id": "https://ror.org/02sptwz63" + }, + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "National Research, Development and Innovation Office", + "type": "Parent", + "id": "https://ror.org/03g2am276" + }, + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "National Research Council", + "type": "Parent", + "id": "https://ror.org/04zaypm56" + }, + { + "label": "National Centre for Nuclear Research", + "type": "Parent", + "id": "https://ror.org/00nzsxq20" + }, + { + "label": "Kurchatov Institute", + "type": "Parent", + "id": "https://ror.org/00n1nz186" + }, + { + "label": "Ministry of Education, Science, Research and Sport of the Slovak Republic", + "type": "Parent", + "id": "https://ror.org/044gwpv05" + }, + { + "label": "Ministerio de Ciencia, Innovación y Universidades", + "type": "Parent", + "id": "https://ror.org/05r0vyz12" + }, + { + "label": "Swedish Research Council", + "type": "Parent", + "id": "https://ror.org/03zttf063" + }, + { + "label": "UK Research and Innovation", + "type": "Parent", + "id": "https://ror.org/001aqnf71" + }, + { + "label": "State Secretariat for Education, Research and Innovation", + "type": "Parent", + "id": "https://ror.org/00mt8k932" + }, + { + "label": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 54.05, + "lng": 9.48333, + "state": null, + "state_code": null, + "city": "Schenefeld", + "geonames_city": { + "id": 2839763, + "city": "Schenefeld", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.xfel.eu" + ], + "aliases": [ + "European XFEL" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_x-ray_free_electron_laser", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.434729.f", + "preferred": "grid.434729.f" + }, + "ISNI": { + "all": [ + "0000 0004 0590 2900" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q462592" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01x1mwt32.json b/v1.47/v1/01x1mwt32.json new file mode 100644 index 000000000..19295e6af --- /dev/null +++ b/v1.47/v1/01x1mwt32.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01x1mwt32", + "name": "Centre de recherche interdisciplinaire sur les modèles esthétiques et littéraires", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-reims.fr/crimel" + ], + "aliases": [], + "acronyms": [ + "CRIMEL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2184 3478" + ], + "preferred": "0000 0001 2184 3478" + }, + "Wikidata": { + "all": [ + "Q20088593" + ], + "preferred": "Q20088593" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01xkfnd03.json b/v1.47/v1/01xkfnd03.json new file mode 100644 index 000000000..ebc6caf9c --- /dev/null +++ b/v1.47/v1/01xkfnd03.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01xkfnd03", + "name": "Laboratoire de Mathématiques de Reims", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-reims.fr/lmr" + ], + "aliases": [], + "acronyms": [ + "LMR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783187" + ], + "preferred": "Q51783187" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01xs7ed64.json b/v1.47/v1/01xs7ed64.json new file mode 100644 index 000000000..d6902c2ea --- /dev/null +++ b/v1.47/v1/01xs7ed64.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01xs7ed64", + "name": "Universidad Evangelica de El Salvador", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 13.68935, + "lng": -89.18718, + "state": null, + "state_code": null, + "city": "San Salvador", + "geonames_city": { + "id": 3583361, + "city": "San Salvador", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uees.edu.sv/" + ], + "aliases": [ + "Evangelical University of El Salvador" + ], + "acronyms": [ + "UEES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "El Salvador", + "country_code": "SV" + }, + "external_ids": { + "GRID": { + "all": "grid.472371.4", + "preferred": "grid.472371.4" + }, + "ISNI": { + "all": [ + "0000 0000 9976 6743" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q29002771" + ], + "preferred": "Q29002771" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01xy6f245.json b/v1.47/v1/01xy6f245.json new file mode 100644 index 000000000..0596b277e --- /dev/null +++ b/v1.47/v1/01xy6f245.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/01xy6f245", + "name": "Nuclear Energy Agency", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Organisation For Economic Co-Operation and Development", + "type": "Parent", + "id": "https://ror.org/0438wbg98" + }, + { + "label": "International Network of Nuclear Reaction Data Centres", + "type": "Child", + "id": "https://ror.org/00e50mf91" + } + ], + "addresses": [ + { + "lat": 48.83545, + "lng": 2.24128, + "state": null, + "state_code": null, + "city": "Boulogne-Billancourt", + "geonames_city": { + "id": 3031137, + "city": "Boulogne-Billancourt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.oecd-nea.org/" + ], + "aliases": [ + "European Nuclear Energy Agency" + ], + "acronyms": [ + "ENEA", + "NEA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nuclear_Energy_Agency", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.473395.f", + "preferred": "grid.473395.f" + }, + "ISNI": { + "all": [ + "0000 0004 0623 5046" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q369760" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01y25zv73.json b/v1.47/v1/01y25zv73.json new file mode 100644 index 000000000..b7305ff71 --- /dev/null +++ b/v1.47/v1/01y25zv73.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/01y25zv73", + "name": "Council of Science and Technology, Uttar Pradesh", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.25, + "lng": 80.75, + "state": null, + "state_code": null, + "city": "Uttar Pradesh", + "geonames_city": { + "id": 1253626, + "city": "Uttar Pradesh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cst.up.gov.in" + ], + "aliases": [ + "Council of Science and Technology, Government of Uttar Pradesh", + "Council of Science and Technology, U.P." + ], + "acronyms": [ + "CSTUP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q45136819" + ], + "preferred": "Q45136819" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01y434850.json b/v1.47/v1/01y434850.json new file mode 100644 index 000000000..e7fc31025 --- /dev/null +++ b/v1.47/v1/01y434850.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01y434850", + "name": "Abetifi Presbyterian College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Cape Coast", + "type": "Related", + "id": "https://ror.org/0492nfe34" + } + ], + "addresses": [ + { + "lat": 6.66954, + "lng": -0.74764, + "state": null, + "state_code": null, + "city": "Abetifi", + "geonames_city": { + "id": 2306390, + "city": "Abetifi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://abeticoe.edu.gh" + ], + "aliases": [ + "Abetifi Presby College of Education", + "Abetifi Training College" + ], + "acronyms": [ + "ABETICO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Abetifi_Presbyterian_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996953" + ], + "preferred": "Q46996953" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01y4fs673.json b/v1.47/v1/01y4fs673.json new file mode 100644 index 000000000..3d3a04744 --- /dev/null +++ b/v1.47/v1/01y4fs673.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01y4fs673", + "name": "Soft Imaging LLC (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.76328, + "lng": -95.36327, + "state": null, + "state_code": null, + "city": "Houston", + "geonames_city": { + "id": 4699066, + "city": "Houston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.softimagingllc.com/" + ], + "aliases": [ + "Soft Imaging" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Soft Imaging LLC", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.437754.6", + "preferred": "grid.437754.6" + }, + "Wikidata": { + "all": [ + "Q30291740" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01y8j9r24.json b/v1.47/v1/01y8j9r24.json new file mode 100644 index 000000000..cd52564e6 --- /dev/null +++ b/v1.47/v1/01y8j9r24.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/01y8j9r24", + "name": "Délégation Ile-de-France Sud", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre de Génétique Moléculaire", + "type": "Child", + "id": "https://ror.org/052ahj806" + }, + { + "label": "Heteroelements and Coordination Chemistry Lab", + "type": "Child", + "id": "https://ror.org/02cf97417" + }, + { + "label": "Institut de Biochimie et Biophysique Moléculaire et Cellulaire", + "type": "Child", + "id": "https://ror.org/006je8v76" + }, + { + "label": "Laboratoire Archéomatériaux et Prévision de l'Altération", + "type": "Child", + "id": "https://ror.org/01xpreq28" + }, + { + "label": "Laboratoire Structure et Dynamique par Résonance Magnétique", + "type": "Child", + "id": "https://ror.org/0378sf364" + }, + { + "label": "Laboratoire de Neurobiologie Cellulaire et Moléculaire", + "type": "Child", + "id": "https://ror.org/0452rtt80" + }, + { + "label": "Laboratoire de Virologie Moléculaire et Structurale", + "type": "Child", + "id": "https://ror.org/01dz5cg19" + }, + { + "label": "Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux", + "type": "Child", + "id": "https://ror.org/00enct420" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iledefrance-gif.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR04" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457079.8", + "preferred": "grid.457079.8" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01y9bpm73.json b/v1.47/v1/01y9bpm73.json new file mode 100644 index 000000000..bc84ee6bd --- /dev/null +++ b/v1.47/v1/01y9bpm73.json @@ -0,0 +1,139 @@ +{ + "id": "https://ror.org/01y9bpm73", + "name": "University of Göttingen", + "email_address": null, + "ip_addresses": [], + "established": 1734, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen", + "type": "Child", + "id": "https://ror.org/00cd95c65" + }, + { + "label": "Institute for Small Business Economics", + "type": "Child", + "id": "https://ror.org/031q2en94" + }, + { + "label": "Leibniz ScienceCampus Primate Cognition", + "type": "Child", + "id": "https://ror.org/05ehdmg18" + }, + { + "label": "Multiscale Bioimaging", + "type": "Child", + "id": "https://ror.org/05xy1nn52" + }, + { + "label": "Institut für Zuckerrübenforschung", + "type": "Related", + "id": "https://ror.org/05831r008" + }, + { + "label": "Marienkrankenhaus Kassel", + "type": "Related", + "id": "https://ror.org/01ddazc14" + }, + { + "label": "Universitätsmedizin Göttingen", + "type": "Related", + "id": "https://ror.org/021ft0n22" + }, + { + "label": "Soziologisches Forschungsinstitut Göttingen", + "type": "Related", + "id": "https://ror.org/040pxfk62" + }, + { + "label": "Niedersächsische Staats-und Universitätsbibliothek Göttingen", + "type": "Child", + "id": "https://ror.org/05745n787" + } + ], + "addresses": [ + { + "lat": 51.53443, + "lng": 9.93228, + "state": null, + "state_code": null, + "city": "Göttingen", + "geonames_city": { + "id": 2918632, + "city": "Göttingen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uni-goettingen.de/en/1.html" + ], + "aliases": [], + "acronyms": [ + "GAU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_G%C3%B6ttingen", + "labels": [ + { + "label": "Georg-August-Universität Göttingen", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.7450.6", + "preferred": "grid.7450.6" + }, + "ISNI": { + "all": [ + "0000 0001 2364 4210" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q152838" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01yc7t268.json b/v1.47/v1/01yc7t268.json new file mode 100644 index 000000000..fa3543e7e --- /dev/null +++ b/v1.47/v1/01yc7t268.json @@ -0,0 +1,134 @@ +{ + "id": "https://ror.org/01yc7t268", + "name": "Washington University in St. Louis", + "email_address": null, + "ip_addresses": [], + "established": 1853, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Children’s Discovery Institute", + "type": "Child", + "id": "https://ror.org/02swjdp46" + }, + { + "label": "Washington University Physicians", + "type": "Child", + "id": "https://ror.org/03qn8ky51" + }, + { + "label": "Taylor Family Institute for Innovative Psychiatric Research", + "type": "Child", + "id": "https://ror.org/03x3g5467" + }, + { + "label": "Barnes-Jewish Hospital", + "type": "Related", + "id": "https://ror.org/04wyvkr12" + }, + { + "label": "Central Institute for the Deaf", + "type": "Related", + "id": "https://ror.org/04ymee833" + }, + { + "label": "St. Louis Children's Hospital", + "type": "Related", + "id": "https://ror.org/00qw1qw03" + }, + { + "label": "Washington University Medical Center", + "type": "Related", + "id": "https://ror.org/036c27j91" + } + ], + "addresses": [ + { + "lat": 38.62727, + "lng": -90.19789, + "state": null, + "state_code": null, + "city": "St Louis", + "geonames_city": { + "id": 4407066, + "city": "St Louis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://wustl.edu/" + ], + "aliases": [], + "acronyms": [ + "WUSTL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Washington_University_in_St._Louis", + "labels": [ + { + "label": "Universidad Washington en San Luis", + "iso639": "es" + }, + { + "label": "Université Washington à Saint-louis", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.4367.6", + "preferred": "grid.4367.6" + }, + "ISNI": { + "all": [ + "0000 0001 2355 7002", + "0000 0004 1936 9350" + ], + "preferred": "0000 0004 1936 9350" + }, + "Wikidata": { + "all": [ + "Q777403" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/01yd28726.json b/v1.47/v1/01yd28726.json new file mode 100644 index 000000000..9807941dd --- /dev/null +++ b/v1.47/v1/01yd28726.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01yd28726", + "name": "Instituto de Investigaciones Geográficas de la Patagonia", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "National University of Patagonia San Juan Bosco", + "type": "Parent", + "id": "https://ror.org/022g6pv04" + } + ], + "addresses": [ + { + "lat": -45.86256, + "lng": -67.494, + "state": null, + "state_code": null, + "city": "Comodoro Rivadavia", + "geonames_city": { + "id": 3860443, + "city": "Comodoro Rivadavia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.fhcs.unp.edu.ar/igeopat/" + ], + "aliases": [], + "acronyms": [ + "IGEOPAT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/01yhh4s82.json b/v1.47/v1/01yhh4s82.json new file mode 100644 index 000000000..773fc77ba --- /dev/null +++ b/v1.47/v1/01yhh4s82.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01yhh4s82", + "name": "Cascadia Seaweed (Canada)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.64964, + "lng": -123.40262, + "state": null, + "state_code": null, + "city": "Sidney", + "geonames_city": { + "id": 6147439, + "city": "Sidney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cascadiaseaweed.com" + ], + "aliases": [ + "Cascadia Seaweed Corp." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cascadia Seaweed", + "iso639": "en" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/01zj4g759.json b/v1.47/v1/01zj4g759.json new file mode 100644 index 000000000..730e3e2fa --- /dev/null +++ b/v1.47/v1/01zj4g759.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01zj4g759", + "name": "Universitas Ciputra", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -7.24917, + "lng": 112.75083, + "state": null, + "state_code": null, + "city": "Surabaya", + "geonames_city": { + "id": 1625822, + "city": "Surabaya", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ciputra.ac.id" + ], + "aliases": [ + "Ciputra University Surabaya" + ], + "acronyms": [ + "UC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "GRID": { + "all": "grid.444387.8", + "preferred": "grid.444387.8" + }, + "ISNI": { + "all": [ + "0000 0004 6812 6160" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q12523310" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0209kfm92.json b/v1.47/v1/0209kfm92.json new file mode 100644 index 000000000..79505c8d4 --- /dev/null +++ b/v1.47/v1/0209kfm92.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/0209kfm92", + "name": "Samangan Higher Education Institute", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.26468, + "lng": 68.01551, + "state": null, + "state_code": null, + "city": "Aībak", + "geonames_city": { + "id": 1127768, + "city": "Aībak", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.smgu.edu.af" + ], + "aliases": [ + "Samangan University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Samangan_University", + "labels": [ + { + "label": "پوهنتون سمنگان", + "iso639": "fa" + } + ], + "country": { + "country_name": "Afghanistan", + "country_code": "AF" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1317 594X" + ], + "preferred": "0000 0005 1317 594X" + }, + "Wikidata": { + "all": [ + "Q18914717" + ], + "preferred": "Q18914717" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/020bm8k34.json b/v1.47/v1/020bm8k34.json new file mode 100644 index 000000000..b75eeccd1 --- /dev/null +++ b/v1.47/v1/020bm8k34.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/020bm8k34", + "name": "Reformed Church University", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -20.06373, + "lng": 30.82766, + "state": null, + "state_code": null, + "city": "Masvingo", + "geonames_city": { + "id": 886763, + "city": "Masvingo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.rcu.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "RCU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Reformed_Church_University", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.472349.f", + "preferred": "grid.472349.f" + }, + "ISNI": { + "all": [ + "0000 0004 4666 7521" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/020mn7317.json b/v1.47/v1/020mn7317.json new file mode 100644 index 000000000..87bde962a --- /dev/null +++ b/v1.47/v1/020mn7317.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/020mn7317", + "name": "Miva Open University", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 9.05785, + "lng": 7.49508, + "state": null, + "state_code": null, + "city": "Abuja", + "geonames_city": { + "id": 2352778, + "city": "Abuja", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://miva.university" + ], + "aliases": [], + "acronyms": [ + "MOU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Miva_Open_University", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q120355491" + ], + "preferred": "Q120355491" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/021xhya68.json b/v1.47/v1/021xhya68.json new file mode 100644 index 000000000..536c1e003 --- /dev/null +++ b/v1.47/v1/021xhya68.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/021xhya68", + "name": "Madan Bhandari University of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.64754, + "lng": 85.16928, + "state": null, + "state_code": null, + "city": "Chitlang", + "geonames_city": { + "id": 7802044, + "city": "Chitlang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mbust.edu.np" + ], + "aliases": [], + "acronyms": [ + "MBUST" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "मदन भण्डारी बिज्ञान तथा प्रबिधि विश्वबिद्यालय", + "iso639": "ne" + } + ], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1449 8855" + ], + "preferred": "0000 0005 1449 8855" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/021z9m619.json b/v1.47/v1/021z9m619.json new file mode 100644 index 000000000..252e53471 --- /dev/null +++ b/v1.47/v1/021z9m619.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/021z9m619", + "name": "Department of Industry, Science and Resources", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Australian National Low Emissions Coal Research and Development", + "type": "Child", + "id": "https://ror.org/00ak1t323" + }, + { + "label": "Australian Nuclear Science and Technology Organisation", + "type": "Child", + "id": "https://ror.org/05j7fep28" + }, + { + "label": "Commonwealth Scientific and Industrial Research Organisation", + "type": "Child", + "id": "https://ror.org/03qn8fb07" + }, + { + "label": "Geoscience Australia", + "type": "Child", + "id": "https://ror.org/04ge02x20" + }, + { + "label": "IP Australia", + "type": "Child", + "id": "https://ror.org/014vqg108" + }, + { + "label": "National Measurement Institute", + "type": "Child", + "id": "https://ror.org/03be3fb73" + }, + { + "label": "Australian Government", + "type": "Parent", + "id": "https://ror.org/0314h5y94" + }, + { + "label": "Department of Industry, Science, Energy and Resources", + "type": "Predecessor", + "id": "https://ror.org/056naxb15" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.industry.gov.au" + ], + "aliases": [], + "acronyms": [ + "DISR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q113826569" + ], + "preferred": "Q113826569" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/022g6pv04.json b/v1.47/v1/022g6pv04.json new file mode 100644 index 000000000..8337b59b7 --- /dev/null +++ b/v1.47/v1/022g6pv04.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/022g6pv04", + "name": "National University of Patagonia San Juan Bosco", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Instituto de Investigaciones Geográficas de la Patagonia", + "type": "Child", + "id": "https://ror.org/01yd28726" + } + ], + "addresses": [ + { + "lat": -43.24895, + "lng": -65.30505, + "state": null, + "state_code": null, + "city": "Trelew", + "geonames_city": { + "id": 3833883, + "city": "Trelew", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unp.edu.ar" + ], + "aliases": [], + "acronyms": [ + "UNPSJB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_University_of_Patagonia_San_Juan_Bosco", + "labels": [ + { + "label": "Universidad Nacional de la Patagonia San Juan Bosco", + "iso639": "es" + } + ], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": { + "GRID": { + "all": "grid.440495.8", + "preferred": "grid.440495.8" + }, + "ISNI": { + "all": [ + "0000 0001 2220 0490" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6979265" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02369cb65.json b/v1.47/v1/02369cb65.json new file mode 100644 index 000000000..25b089e47 --- /dev/null +++ b/v1.47/v1/02369cb65.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02369cb65", + "name": "Presbyterian University, Ghana", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.80004, + "lng": -1.08193, + "state": null, + "state_code": null, + "city": "Agogo", + "geonames_city": { + "id": 2305537, + "city": "Agogo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.presbyuniversity.edu.gh/site/" + ], + "aliases": [ + "Presbyterian University College" + ], + "acronyms": [ + "PUCG", + "PUG" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Presbyterian_University_College", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.460825.d", + "preferred": "grid.460825.d" + }, + "ISNI": { + "all": [ + "0000 0004 0398 6338" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1566634" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0237c2m81.json b/v1.47/v1/0237c2m81.json new file mode 100644 index 000000000..92865d659 --- /dev/null +++ b/v1.47/v1/0237c2m81.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/0237c2m81", + "name": "HCA Healthcare", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Mercy Hospital", + "type": "Child", + "id": "https://ror.org/05rsdqb94" + }, + { + "label": "Menorah Medical Center", + "type": "Related", + "id": "https://ror.org/01w6z0f95" + } + ], + "addresses": [ + { + "lat": 36.16589, + "lng": -86.78444, + "state": null, + "state_code": null, + "city": "Nashville", + "geonames_city": { + "id": 4644585, + "city": "Nashville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hcahealthcare.com" + ], + "aliases": [ + "Hospital Corporation of America" + ], + "acronyms": [ + "HCA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hospital_Corporation_of_America", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.414420.7", + "preferred": "grid.414420.7" + }, + "ISNI": { + "all": [ + "0000 0001 0158 6152" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1630431" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/023n9q531.json b/v1.47/v1/023n9q531.json new file mode 100644 index 000000000..d71f50661 --- /dev/null +++ b/v1.47/v1/023n9q531.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/023n9q531", + "name": "Laboratoire Interdisciplinaire de Physique", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 45.1787, + "lng": 5.76281, + "state": null, + "state_code": null, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 2978317, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://liphy.univ-grenoble-alpes.fr" + ], + "aliases": [], + "acronyms": [ + "LIPhy" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Interdisciplinary Physics Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462689.7", + "preferred": "grid.462689.7" + }, + "ISNI": { + "all": [ + "0000 0000 9272 9931" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261528" + ], + "preferred": "Q30261528" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/023vkeb66.json b/v1.47/v1/023vkeb66.json new file mode 100644 index 000000000..bc706c90e --- /dev/null +++ b/v1.47/v1/023vkeb66.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/023vkeb66", + "name": "Délégation Centre Limousin Poitou-Charentes", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre de Recherche Interdisciplinaire en Histoire, Histoire de l’art et Musicologie", + "type": "Child", + "id": "https://ror.org/05vjwz959" + }, + { + "label": "Interfaces, Confinement, Matériaux et Nanostructures", + "type": "Child", + "id": "https://ror.org/008h1f725" + }, + { + "label": "Laboratoire d’Économie d’Orléans", + "type": "Child", + "id": "https://ror.org/03hp7bq97" + }, + { + "label": "Laboratory of Computer Science and Automatic Control for Systems", + "type": "Child", + "id": "https://ror.org/02b5vq778" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 47.90289, + "lng": 1.90389, + "state": null, + "state_code": null, + "city": "Orléans", + "geonames_city": { + "id": 2989317, + "city": "Orléans", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.centre-limousin-poitou-charente.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR08" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457028.c", + "preferred": "grid.457028.c" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/024779x77.json b/v1.47/v1/024779x77.json new file mode 100644 index 000000000..67751d433 --- /dev/null +++ b/v1.47/v1/024779x77.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/024779x77", + "name": "Cambridge Quantum Computing (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Quantinuum (United Kingdom)", + "type": "Successor", + "id": "https://ror.org/0507j3z22" + } + ], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://cambridgequantum.com/" + ], + "aliases": [], + "acronyms": [ + "CQC" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cambridge_Quantum_Computing", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.510530.2", + "preferred": "grid.510530.2" + }, + "Wikidata": { + "all": [ + "Q65072145" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02495e989.json b/v1.47/v1/02495e989.json new file mode 100644 index 000000000..b4713bc84 --- /dev/null +++ b/v1.47/v1/02495e989.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/02495e989", + "name": "UCLouvain", + "email_address": null, + "ip_addresses": [], + "established": 1425, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "UCLouvain Saint-Louis Brussels", + "type": "Child", + "id": "https://ror.org/02ygek028" + }, + { + "label": "CHU Dinant Godinne UCL Namur", + "type": "Related", + "id": "https://ror.org/00ntbvq76" + }, + { + "label": "Cliniques Universitaires Saint-Luc", + "type": "Related", + "id": "https://ror.org/03s4khd80" + } + ], + "addresses": [ + { + "lat": 50.66829, + "lng": 4.61443, + "state": null, + "state_code": null, + "city": "Louvain-la-Neuve", + "geonames_city": { + "id": 2792073, + "city": "Louvain-la-Neuve", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uclouvain.be" + ], + "aliases": [ + "Université catholique de Belgique", + "Université catholique de Louvain" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Universit%C3%A9_catholique_de_Louvain", + "labels": [ + { + "label": "Catholic University of Louvain", + "iso639": "en" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "GRID": { + "all": "grid.7942.8", + "preferred": "grid.7942.8" + }, + "ISNI": { + "all": [ + "0000 0001 2294 713X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q378134" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/024ws6f80.json b/v1.47/v1/024ws6f80.json new file mode 100644 index 000000000..b615952de --- /dev/null +++ b/v1.47/v1/024ws6f80.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/024ws6f80", + "name": "Queensland Department of Transport and Main Roads", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Queensland Government", + "type": "Parent", + "id": "https://ror.org/037405308" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.tmr.qld.gov.au/" + ], + "aliases": [ + "Department of Transport and Main Roads" + ], + "acronyms": [ + "TMR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Transport_and_Main_Roads", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.474139.c", + "preferred": "grid.474139.c" + }, + "ISNI": { + "all": [ + "0000 0004 0631 2339" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1191482" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/024ye7w89.json b/v1.47/v1/024ye7w89.json new file mode 100644 index 000000000..58747a65c --- /dev/null +++ b/v1.47/v1/024ye7w89.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/024ye7w89", + "name": "National Research Council - Institute of Methodologies for Environmental Analysis", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Research Council", + "type": "Parent", + "id": "https://ror.org/04zaypm56" + } + ], + "addresses": [ + { + "lat": 40.5837, + "lng": 15.67621, + "state": null, + "state_code": null, + "city": "Tito", + "geonames_city": { + "id": 3165627, + "city": "Tito", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.imaa.cnr.it" + ], + "aliases": [ + "Institute of Methodologies for Environmental Analysis", + "Istituto di Metodologie per l’Analisi Ambientale" + ], + "acronyms": [ + "CNR-IMAA", + "IMAA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Consiglio Nazionale delle Ricerche - Istituto di Metodologie per l’Analisi Ambientale", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.466609.b", + "preferred": "grid.466609.b" + }, + "ISNI": { + "all": [ + "0000 0004 1774 5906" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30263758" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02521wj37.json b/v1.47/v1/02521wj37.json new file mode 100644 index 000000000..7fe94703d --- /dev/null +++ b/v1.47/v1/02521wj37.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02521wj37", + "name": "Dr Hila Liman Technical University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.06069, + "lng": -2.50192, + "state": null, + "state_code": null, + "city": "Wa", + "geonames_city": { + "id": 2294206, + "city": "Wa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dhltu.edu.gh" + ], + "aliases": [], + "acronyms": [ + "DHLTU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/025er3q23.json b/v1.47/v1/025er3q23.json new file mode 100644 index 000000000..b6e107874 --- /dev/null +++ b/v1.47/v1/025er3q23.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/025er3q23", + "name": "Ministère des Armées", + "email_address": null, + "ip_addresses": [], + "established": 1589, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Hôpital d'instruction des Armées Desgenettes", + "type": "Child", + "id": "https://ror.org/03m8r7k33" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "Child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "Histoire et Archéologie Maritimes", + "type": "Child", + "id": "https://ror.org/011mac819" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.defense.gouv.fr" + ], + "aliases": [ + "Ministry of the Armed Forces", + "Ministère de la Défense" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Minister_of_the_Armed_Forces_(France)", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418221.c", + "preferred": "grid.418221.c" + }, + "Wikidata": { + "all": [ + "Q75706" + ], + "preferred": "Q75706" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/025f3dm06.json b/v1.47/v1/025f3dm06.json new file mode 100644 index 000000000..742d8221b --- /dev/null +++ b/v1.47/v1/025f3dm06.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/025f3dm06", + "name": "European Network of Logistics Competence Centres", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.openenlocc.net" + ], + "aliases": [ + "Open ENLoCC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/025vngs54.json b/v1.47/v1/025vngs54.json new file mode 100644 index 000000000..ed33cff8d --- /dev/null +++ b/v1.47/v1/025vngs54.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/025vngs54", + "name": "Greifswald University Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1456, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Klinik und Poliklinik für Hautkrankheiten", + "type": "Child", + "id": "https://ror.org/00za3wc71" + }, + { + "label": "University of Greifswald", + "type": "Related", + "id": "https://ror.org/00r1edq15" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.medizin.uni-greifswald.de" + ], + "aliases": [ + "University Medicine Greifswald" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Greifswald_University_Hospital", + "labels": [ + { + "label": "Universitätsklinikum Greifswald", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.412469.c", + "preferred": "grid.412469.c" + }, + "ISNI": { + "all": [ + "0000 0000 9116 8976" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2496421" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0262j1008.json b/v1.47/v1/0262j1008.json new file mode 100644 index 000000000..5038ad551 --- /dev/null +++ b/v1.47/v1/0262j1008.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/0262j1008", + "name": "Wojewódzki Szpital Specjalistyczny im. J. Gromkowskiego we Wrocławiu", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.1, + "lng": 17.03333, + "state": null, + "state_code": null, + "city": "Wroclaw", + "geonames_city": { + "id": 3081368, + "city": "Wroclaw", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.szpital.wroc.pl" + ], + "aliases": [ + "Provincial Specialist Hospital named after J. Gromkowski", + "WSS im. J. Gromkowskiego" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/02689mz67.json b/v1.47/v1/02689mz67.json new file mode 100644 index 000000000..9138f8bea --- /dev/null +++ b/v1.47/v1/02689mz67.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/02689mz67", + "name": "Linguistique et lexicographie latines et romanes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Rome et ses renaissances", + "type": "Successor", + "id": "https://ror.org/011hja523" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/026p10446.json b/v1.47/v1/026p10446.json new file mode 100644 index 000000000..ef6a97423 --- /dev/null +++ b/v1.47/v1/026p10446.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/026p10446", + "name": "Droit, religion, entreprise et société", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dres.unistra.fr" + ], + "aliases": [ + "Laboratoire DRES", + "Laboratoire Droit, religion, entreprise et société" + ], + "acronyms": [ + "DRES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9634 7746" + ], + "preferred": "0000 0000 9634 7746" + }, + "Wikidata": { + "all": [ + "Q51781198" + ], + "preferred": "Q51781198" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/026vm4649.json b/v1.47/v1/026vm4649.json new file mode 100644 index 000000000..218550ec0 --- /dev/null +++ b/v1.47/v1/026vm4649.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/026vm4649", + "name": "Agricultural Research Institute Kromeriz", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Agrotest Fyto (Czechia)", + "type": "Child", + "id": "https://ror.org/04rrs1z45" + } + ], + "addresses": [ + { + "lat": 49.29785, + "lng": 17.39312, + "state": null, + "state_code": null, + "city": "Kroměříž", + "geonames_city": { + "id": 3072649, + "city": "Kroměříž", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vukrom.cz/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Zemědělský Výzkumný Ustav Kroměříž", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.447802.d", + "preferred": "grid.447802.d" + }, + "ISNI": { + "all": [ + "0000 0001 2177 1646" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30258475" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0273t3w24.json b/v1.47/v1/0273t3w24.json new file mode 100644 index 000000000..eb30699e4 --- /dev/null +++ b/v1.47/v1/0273t3w24.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/0273t3w24", + "name": "Universidad Tecnológica del Cibao Oriental", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.05272, + "lng": -70.14939, + "state": null, + "state_code": null, + "city": "Cotuí", + "geonames_city": { + "id": 3509207, + "city": "Cotuí", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uteco.edu.do" + ], + "aliases": [], + "acronyms": [ + "ITECO", + "UTECO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Dominican Republic", + "country_code": "DO" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/0278h4n28.json b/v1.47/v1/0278h4n28.json new file mode 100644 index 000000000..63cad6109 --- /dev/null +++ b/v1.47/v1/0278h4n28.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0278h4n28", + "name": "Naval Hospital Bremerton", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 47.56732, + "lng": -122.63264, + "state": null, + "state_code": null, + "city": "Bremerton", + "geonames_city": { + "id": 5788054, + "city": "Bremerton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.med.navy.mil/sites/nhbrem" + ], + "aliases": [], + "acronyms": [ + "NHB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naval_Hospital_Bremerton", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.415891.0", + "preferred": "grid.415891.0" + }, + "ISNI": { + "all": [ + "0000 0004 0419 1123" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q27628542" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0286my572.json b/v1.47/v1/0286my572.json new file mode 100644 index 000000000..54e61cc15 --- /dev/null +++ b/v1.47/v1/0286my572.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/0286my572", + "name": "Sekolah Tinggi Pembangunan Masyarakat Desa APMD", + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://stpmd.apmd.ac.id" + ], + "aliases": [], + "acronyms": [ + "APMD", + "STPMD APMD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0366 7685" + ], + "preferred": "0000 0001 0366 7685" + }, + "Wikidata": { + "all": [ + "Q109913049" + ], + "preferred": "Q109913049" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02899vv07.json b/v1.47/v1/02899vv07.json new file mode 100644 index 000000000..daa53db6f --- /dev/null +++ b/v1.47/v1/02899vv07.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02899vv07", + "name": "Polyclinic Medical University", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Centre universitaire de médecine générale et santé publique, Lausanne", + "type": "Successor", + "id": "https://ror.org/04mcdza51" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pmu-lausanne.ch/" + ], + "aliases": [], + "acronyms": [ + "PMU" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [ + { + "label": "La Policlinique médicale universitaire", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.420499.2", + "preferred": "grid.420499.2" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/028nbcm46.json b/v1.47/v1/028nbcm46.json new file mode 100644 index 000000000..11eacf586 --- /dev/null +++ b/v1.47/v1/028nbcm46.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/028nbcm46", + "name": "Swiss Institute for Art Research", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + } + ], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sik-isea.ch/en-us/" + ], + "aliases": [ + "Institut Suisse pour l'Étude de l'Art" + ], + "acronyms": [ + "SIK-ISEA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Schweizerisches Institut für Kunstwissenschaft", + "iso639": "de" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.469492.4", + "preferred": "grid.469492.4" + }, + "ISNI": { + "all": [ + "0000 0004 0520 0060" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0290eg024.json b/v1.47/v1/0290eg024.json new file mode 100644 index 000000000..46f595269 --- /dev/null +++ b/v1.47/v1/0290eg024.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0290eg024", + "name": "Hradec Králové Region", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Hradec Králové City Library", + "type": "Related", + "id": "https://ror.org/048kmjm50" + } + ], + "addresses": [ + { + "lat": 50.20923, + "lng": 15.83277, + "state": null, + "state_code": null, + "city": "Hradec Králové", + "geonames_city": { + "id": 3074967, + "city": "Hradec Králové", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kr-kralovehradecky.cz" + ], + "aliases": [ + "Hradec Králové Region of the Czech Republic" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Kr%C3%A1lov%C3%A9hradeck%C3%BD_kraj", + "labels": [ + { + "label": "Královéhradecký kraj", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0611 2345" + ], + "preferred": "0000 0004 0611 2345" + }, + "Wikidata": { + "all": [ + "Q193295" + ], + "preferred": "Q193295" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/029hkd614.json b/v1.47/v1/029hkd614.json new file mode 100644 index 000000000..dd2c01ab8 --- /dev/null +++ b/v1.47/v1/029hkd614.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/029hkd614", + "name": "Laboratoire Navier", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Gustave Eiffel", + "type": "Parent", + "id": "https://ror.org/03x42jk29" + }, + { + "label": "École des Ponts ParisTech", + "type": "Parent", + "id": "https://ror.org/02nwvxz07" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.85, + "lng": 2.6, + "state": null, + "state_code": null, + "city": "Champs-sur-Marne", + "geonames_city": { + "id": 3027014, + "city": "Champs-sur-Marne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://navier-lab.fr" + ], + "aliases": [ + "Navier Laboratory" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463987.7", + "preferred": "grid.463987.7" + }, + "ISNI": { + "all": [ + "0000 0004 0382 1533" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262357" + ], + "preferred": "Q30262357" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/029m96t80.json b/v1.47/v1/029m96t80.json new file mode 100644 index 000000000..d215051c0 --- /dev/null +++ b/v1.47/v1/029m96t80.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/029m96t80", + "name": "Ministère de l'Agriculture et de la Souveraineté alimentaire", + "email_address": null, + "ip_addresses": [], + "established": 1836, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Interaction Hôtes Agents Pathogènes", + "type": "Child", + "id": "https://ror.org/041yk0b68" + }, + { + "label": "École Nationale Vétérinaire de Toulouse", + "type": "Child", + "id": "https://ror.org/03m3gzv89" + }, + { + "label": "Office Français de la Biodiversité", + "type": "Child", + "id": "https://ror.org/04f5ctv63" + }, + { + "label": "GEVES", + "type": "Child", + "id": "https://ror.org/056ms9a36" + }, + { + "label": "L'Institut Agro", + "type": "Child", + "id": "https://ror.org/01dkyve95" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://agriculture.gouv.fr/" + ], + "aliases": [ + "Ministry of Agriculture", + "Ministry of Agriculture, Food, Fisheries, Rural Affairs and Spatial Planning", + "Ministère de l'Agriculture, de l'Alimentation, de la Pêche, de la Ruralité et de l'Aménagement du territoire" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Agriculture_(France)", + "labels": [ + { + "label": "Ministère de l'Agriculture, de l'Agroalimentaire et de la Forêt", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.425727.1", + "preferred": "grid.425727.1" + }, + "ISNI": { + "all": [ + "0000 0001 1954 9050" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3315187" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02ab4cq13.json b/v1.47/v1/02ab4cq13.json new file mode 100644 index 000000000..b3a4eef87 --- /dev/null +++ b/v1.47/v1/02ab4cq13.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02ab4cq13", + "name": "Nile University of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 2.03711, + "lng": 45.34375, + "state": null, + "state_code": null, + "city": "Mogadishu", + "geonames_city": { + "id": 53654, + "city": "Mogadishu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nust.edu.so" + ], + "aliases": [ + "Jaamacadda Nile University of Science and Technology", + "Nile University of Science and Technology" + ], + "acronyms": [ + "NUST" + ], + "status": "active", + "wikipedia_url": "https://so.wikipedia.org/wiki/Jaamacadda_Nile_university_of_science_and_technology", + "labels": [], + "country": { + "country_name": "Somalia", + "country_code": "SO" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q125522674" + ], + "preferred": "Q125522674" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02as5yg64.json b/v1.47/v1/02as5yg64.json new file mode 100644 index 000000000..8a22250cb --- /dev/null +++ b/v1.47/v1/02as5yg64.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/02as5yg64", + "name": "Shanghai Polytechnic University", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.22222, + "lng": 121.45806, + "state": null, + "state_code": null, + "city": "Shanghai", + "geonames_city": { + "id": 1796236, + "city": "Shanghai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sspu.edu.cn" + ], + "aliases": [ + "Shanghai Second Polytechnic University", + "上海第二工業大學" + ], + "acronyms": [ + "SSPU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Shanghai_Second_Polytechnic_University", + "labels": [ + { + "label": "Shanghai Second Polytechnic University", + "iso639": "en" + }, + { + "label": "上海第二工业大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.412535.4", + "preferred": "grid.412535.4" + }, + "ISNI": { + "all": [ + "0000 0000 9194 7697" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q17013222" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02b7jh107.json b/v1.47/v1/02b7jh107.json new file mode 100644 index 000000000..fb1aa120c --- /dev/null +++ b/v1.47/v1/02b7jh107.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02b7jh107", + "name": "Innopolis University", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.74982, + "lng": 48.74754, + "state": null, + "state_code": null, + "city": "Innopolis", + "geonames_city": { + "id": 11280178, + "city": "Innopolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://innopolis.university" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Автономная некоммерческая организация высшего образования Университет Иннополис", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.465471.5", + "preferred": "grid.465471.5" + }, + "ISNI": { + "all": [ + "0000 0004 4910 8311" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q18786156" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02b948n83.json b/v1.47/v1/02b948n83.json new file mode 100644 index 000000000..763064c55 --- /dev/null +++ b/v1.47/v1/02b948n83.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/02b948n83", + "name": "LG (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "LG (South Korea)", + "type": "Parent", + "id": "https://ror.org/03ddh2c27" + } + ], + "addresses": [ + { + "lat": 40.88538, + "lng": -73.95236, + "state": null, + "state_code": null, + "city": "Englewood Cliffs", + "geonames_city": { + "id": 5097677, + "city": "Englewood Cliffs", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lg.com/us" + ], + "aliases": [ + "LG Electronics" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/LG_Electronics", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.454259.b", + "preferred": "grid.454259.b" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02c37bg49.json b/v1.47/v1/02c37bg49.json new file mode 100644 index 000000000..7951d3d04 --- /dev/null +++ b/v1.47/v1/02c37bg49.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/02c37bg49", + "name": "Naval History and Heritage Command", + "email_address": null, + "ip_addresses": [], + "established": 1944, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.history.navy.mil/" + ], + "aliases": [ + "Naval Historical Center" + ], + "acronyms": [ + "NHHC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naval_History_and_Heritage_Command", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.482843.1", + "preferred": "grid.482843.1" + }, + "ISNI": { + "all": [ + "0000 0001 2192 6193" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3250126" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02c3vyb44.json b/v1.47/v1/02c3vyb44.json new file mode 100644 index 000000000..a5aeea0bb --- /dev/null +++ b/v1.47/v1/02c3vyb44.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02c3vyb44", + "name": "Al-Qalam University College", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.46806, + "lng": 44.39222, + "state": null, + "state_code": null, + "city": "Kirkuk", + "geonames_city": { + "id": 94787, + "city": "Kirkuk", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://alqalam.edu.iq" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "كلية القلم الجامعة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1316 2655" + ], + "preferred": "0000 0005 1316 2655" + }, + "Wikidata": { + "all": [ + "Q126075532" + ], + "preferred": "Q126075532" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02d887280.json b/v1.47/v1/02d887280.json new file mode 100644 index 000000000..6f4c0be04 --- /dev/null +++ b/v1.47/v1/02d887280.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02d887280", + "name": "4TU.ResearchData", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "4TU", + "type": "Parent", + "id": "https://ror.org/03rsncr94" + } + ], + "addresses": [ + { + "lat": 52.00667, + "lng": 4.35556, + "state": null, + "state_code": null, + "city": "Delft", + "geonames_city": { + "id": 2757345, + "city": "Delft", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://data.4tu.nl" + ], + "aliases": [], + "acronyms": [ + "4TU.RD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q50668811" + ], + "preferred": "Q50668811" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02ddybj40.json b/v1.47/v1/02ddybj40.json new file mode 100644 index 000000000..e5f31da66 --- /dev/null +++ b/v1.47/v1/02ddybj40.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02ddybj40", + "name": "G. Venkataswamy Naidu College", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Manonmaniam Sundaranar University", + "type": "Related", + "id": "https://ror.org/02qgw5c67" + } + ], + "addresses": [ + { + "lat": 9.17167, + "lng": 77.86989, + "state": null, + "state_code": null, + "city": "Kovilpatti", + "geonames_city": { + "id": 1265891, + "city": "Kovilpatti", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gvncollege.org" + ], + "aliases": [ + "G.Venkataswamy Naidu College (Autonomous)", + "GVN College" + ], + "acronyms": [ + "GVNC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/G.Venkataswamy_Naidu_College%2C_Kovilpatti", + "labels": [ + { + "label": "ஜி. வெங்கடசாமி நாயுடு கல்லூரி", + "iso639": "ta" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q48725521" + ], + "preferred": "Q48725521" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02e7r0h80.json b/v1.47/v1/02e7r0h80.json new file mode 100644 index 000000000..a61c22249 --- /dev/null +++ b/v1.47/v1/02e7r0h80.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02e7r0h80", + "name": "Harare Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -17.82772, + "lng": 31.05337, + "state": null, + "state_code": null, + "city": "Harare", + "geonames_city": { + "id": 890299, + "city": "Harare", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.hit.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "HIT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Harare_Institute_of_Technology", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.462301.2", + "preferred": "grid.462301.2" + }, + "ISNI": { + "all": [ + "0000 0004 0367 8378" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5654201" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02eaafc18.json b/v1.47/v1/02eaafc18.json new file mode 100644 index 000000000..69e580b0b --- /dev/null +++ b/v1.47/v1/02eaafc18.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/02eaafc18", + "name": "Ege University", + "email_address": null, + "ip_addresses": [], + "established": 1955, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ege Üniversitesi Tıp Fakültesi Hastanesi", + "type": "Related", + "id": "https://ror.org/05xv0p989" + } + ], + "addresses": [ + { + "lat": 38.41273, + "lng": 27.13838, + "state": null, + "state_code": null, + "city": "Izmir", + "geonames_city": { + "id": 311046, + "city": "Izmir", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ege.edu.tr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ege_University", + "labels": [ + { + "label": "Ege Universiteti", + "iso639": "az" + }, + { + "label": "Ege Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "GRID": { + "all": "grid.8302.9", + "preferred": "grid.8302.9" + }, + "ISNI": { + "all": [ + "0000 0001 1092 2592" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1297001" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02egw6w85.json b/v1.47/v1/02egw6w85.json new file mode 100644 index 000000000..64cd2f7a6 --- /dev/null +++ b/v1.47/v1/02egw6w85.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/02egw6w85", + "name": "Wiener Krankenanstaltenverbund", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Donauspital", + "type": "Child", + "id": "https://ror.org/02cm3s998" + }, + { + "label": "Klinik Hietzing", + "type": "Child", + "id": "https://ror.org/00621wh10" + }, + { + "label": "Kaiser-Franz-Josef-Spital", + "type": "Child", + "id": "https://ror.org/02p47pe37" + }, + { + "label": "Krankenanstalt Rudolfstiftung der Stadt Wien", + "type": "Child", + "id": "https://ror.org/019myg640" + }, + { + "label": "Otto Wagner Hospital", + "type": "Child", + "id": "https://ror.org/041jk5w53" + }, + { + "label": "Wilhelminen Hospital", + "type": "Child", + "id": "https://ror.org/00qcsrr17" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.wienkav.at/kav/ZeigeText.asp?ID=40683" + ], + "aliases": [ + "Wien KAV" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Vienna Hospital Association", + "iso639": "en" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "GRID": { + "all": "grid.420072.3", + "preferred": "grid.420072.3" + }, + "ISNI": { + "all": [ + "0000 0000 8779 6726" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02eq60031.json b/v1.47/v1/02eq60031.json new file mode 100644 index 000000000..1e40bbe31 --- /dev/null +++ b/v1.47/v1/02eq60031.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02eq60031", + "name": "Piri Reis University", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.01384, + "lng": 28.94966, + "state": null, + "state_code": null, + "city": "Istanbul", + "geonames_city": { + "id": 745044, + "city": "Istanbul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pirireis.edu.tr/" + ], + "aliases": [ + "Piri Reis Maritime University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Piri_Reis_University", + "labels": [ + { + "label": "Pîrî Reis Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "GRID": { + "all": "grid.449269.4", + "preferred": "grid.449269.4" + }, + "ISNI": { + "all": [ + "0000 0004 0399 635X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1186326" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02f3v7194.json b/v1.47/v1/02f3v7194.json new file mode 100644 index 000000000..d67bf3405 --- /dev/null +++ b/v1.47/v1/02f3v7194.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02f3v7194", + "name": "Constructor Institute", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.69732, + "lng": 8.63493, + "state": null, + "state_code": null, + "city": "Schaffhausen", + "geonames_city": { + "id": 2658761, + "city": "Schaffhausen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://institute.constructor.org" + ], + "aliases": [ + "Schaffhausen Institute of Technology" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Constructor_Institute", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q107223245" + ], + "preferred": "Q107223245" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02f4cyy89.json b/v1.47/v1/02f4cyy89.json new file mode 100644 index 000000000..05de0919e --- /dev/null +++ b/v1.47/v1/02f4cyy89.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02f4cyy89", + "name": "Hospital General Docente de Calderón", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Ministerio de Salud Pública", + "type": "Parent", + "id": "https://ror.org/02t46gq94" + } + ], + "addresses": [ + { + "lat": -0.22985, + "lng": -78.52495, + "state": null, + "state_code": null, + "city": "Quito", + "geonames_city": { + "id": 3652462, + "city": "Quito", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hgdc.gob.ec" + ], + "aliases": [ + "Hospital Docente de Calderón" + ], + "acronyms": [ + "HGDC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ecuador", + "country_code": "EC" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1337 5941" + ], + "preferred": "0000 0005 1337 5941" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02feahw73.json b/v1.47/v1/02feahw73.json new file mode 100644 index 000000000..417f9026e --- /dev/null +++ b/v1.47/v1/02feahw73.json @@ -0,0 +1,1945 @@ +{ + "id": "https://ror.org/02feahw73", + "name": "French National Centre for Scientific Research", + "email_address": null, + "ip_addresses": [], + "established": 1939, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Cancer Research Center of Toulouse", + "type": "Child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Centre Max Weber", + "type": "Child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "Child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "Child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Child", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Direction Générale Déléguée à la Science", + "type": "Child", + "id": "https://ror.org/043nepn57" + }, + { + "label": "Délégation Bretagne et Pays de la Loire", + "type": "Child", + "id": "https://ror.org/02t220m45" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "Child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Image and Pervasive Access Laboratory", + "type": "Child", + "id": "https://ror.org/00m3mb357" + }, + { + "label": "Institut Clément Ader", + "type": "Child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Institut Français d'Études Anatoliennes", + "type": "Child", + "id": "https://ror.org/0331qyx19" + }, + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Child", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Child", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "Child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Chimie", + "type": "Child", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Institut de Physique", + "type": "Child", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "Child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Child", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Child", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Child", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "CNRS Ingénierie", + "type": "Child", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Child", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Aménagement Économie Transports", + "type": "Child", + "id": "https://ror.org/01yw97595" + }, + { + "label": "Laboratoire d'Annecy-le-Vieux de Physique Théorique", + "type": "Child", + "id": "https://ror.org/010hz2d37" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "Child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "Child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Low Noise Inter-Disciplinary Underground Science & Technology", + "type": "Child", + "id": "https://ror.org/05gscwg02" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Research Network on Electrochemical Energy Storage", + "type": "Child", + "id": "https://ror.org/00190j002" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Soleil Synchrotron", + "type": "Child", + "id": "https://ror.org/01ydb3330" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + }, + { + "label": "Nançay Radio Observatory", + "type": "Child", + "id": "https://ror.org/01vqrde47" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "Child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Histoire Judiciaire", + "type": "Child", + "id": "https://ror.org/00g32ep81" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "Child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "AERIS/ICARE Data and Services Center", + "type": "Child", + "id": "https://ror.org/013z99a51" + }, + { + "label": "Institut de Recherche sur les Composants logiciels et matériels pour l'Information et la Communication Avancée", + "type": "Child", + "id": "https://ror.org/010nk4c68" + }, + { + "label": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "type": "Child", + "id": "https://ror.org/04f5rw142" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Arènes: politique, santé publique, environnement, médias", + "type": "Child", + "id": "https://ror.org/00m4rxj18" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "Child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "Littoral, Environnement, Télédétection, Géomatique", + "type": "Child", + "id": "https://ror.org/05sat2s07" + }, + { + "label": "Institut de génétique et de développement de Rennes", + "type": "Child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Ecosystèmes, Biodiversité, Evolution", + "type": "Child", + "id": "https://ror.org/005fjj927" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "Child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "Child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "Child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Ethologie animale et humaine", + "type": "Child", + "id": "https://ror.org/02evk6c51" + }, + { + "label": "Laboratoire d'études de genre et de sexualité", + "type": "Child", + "id": "https://ror.org/005w2mm89" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "Child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Institut de l'Ouest : Droit et Europe", + "type": "Child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Maison des Sciences de l'Homme Mondes", + "type": "Child", + "id": "https://ror.org/00wx1mx58" + }, + { + "label": "Laboratoire de Physique et Chimie de l’Environnement et de l’Espace", + "type": "Child", + "id": "https://ror.org/049k66y27" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Centre Émile Durkheim", + "type": "Child", + "id": "https://ror.org/01k7w0p97" + }, + { + "label": "Laboratoire de Mathématiques de Besançon", + "type": "Child", + "id": "https://ror.org/04nrhwg12" + }, + { + "label": "Laboratoire architecture anthropologie", + "type": "Child", + "id": "https://ror.org/05wy2cj05" + }, + { + "label": "Biologie du Développement et Cellules Souches", + "type": "Child", + "id": "https://ror.org/02af93v77" + }, + { + "label": "Centre de recherche sur les Inégalités Sociales", + "type": "Child", + "id": "https://ror.org/02a4c5q78" + }, + { + "label": "Centre International de Rencontres Mathématiques", + "type": "Child", + "id": "https://ror.org/04e3d6y73" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Musée Curie", + "type": "Child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Architecture, Milieu, Paysage", + "type": "Child", + "id": "https://ror.org/048289s82" + }, + { + "label": "Géographie de l'environnement", + "type": "Child", + "id": "https://ror.org/01p4g5p84" + }, + { + "label": "Geo-Ocean", + "type": "Child", + "id": "https://ror.org/007dbrz84" + }, + { + "label": "Centre d'Études et de Recherches sur le Développement International", + "type": "Child", + "id": "https://ror.org/01hg13988" + }, + { + "label": "Laboratoire d'Acoustique de l'Université du Mans", + "type": "Child", + "id": "https://ror.org/001aevc89" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "Child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Laboratoire de Médiévistique Occidentale de Paris", + "type": "Child", + "id": "https://ror.org/00z0af360" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "Child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Laboratoire d'Ecologie des Hydrosystèmes Naturels et Anthropisés", + "type": "Child", + "id": "https://ror.org/05pny1q12" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Centre de droit comparé du travail et de la sécurité sociale", + "type": "Child", + "id": "https://ror.org/041ctrc20" + }, + { + "label": "Enzyme and Cell Engineering - Molecular Recognition and Biocatalysis", + "type": "Child", + "id": "https://ror.org/001tmq304" + }, + { + "label": "Sciences pour l'Environnement", + "type": "Child", + "id": "https://ror.org/016nwev19" + }, + { + "label": "Laboratoire Morphodynamique Continentale et Côtière", + "type": "Child", + "id": "https://ror.org/05k1a6w82" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "Child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Langues et Civilisations à Tradition Orale", + "type": "Child", + "id": "https://ror.org/025esck76" + }, + { + "label": "Laboratoire de Mathématiques Nicolas Oresme", + "type": "Child", + "id": "https://ror.org/03jm2hc44" + }, + { + "label": "Centre d'études sociologiques et politiques Raymond-Aron", + "type": "Child", + "id": "https://ror.org/04aq4ab28" + }, + { + "label": "Laboratoire Caribéen de Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00srrcb42" + }, + { + "label": "Laboratoire de Physique Théorique et Modélisation", + "type": "Child", + "id": "https://ror.org/05nhcdk38" + }, + { + "label": "Institut des sciences juridique et philosophique de la Sorbonne", + "type": "Child", + "id": "https://ror.org/0041am420" + }, + { + "label": "RIATE - Centre pour l'analyse spatiale et la géovisualisation", + "type": "Child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "France, Amériques, Espagne, Sociétés, Pouvoirs, Acteurs", + "type": "Child", + "id": "https://ror.org/04daj8721" + }, + { + "label": "Laboratoire des Fluides Complexes et leurs Réservoirs", + "type": "Child", + "id": "https://ror.org/03dg47v24" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "Child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Maison des Sciences de l'Homme et de la Société Sud-Est", + "type": "Child", + "id": "https://ror.org/02ygac863" + }, + { + "label": "Maison Asie Pacifique", + "type": "Child", + "id": "https://ror.org/03e2syc87" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "Child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "Center for Mathematical Modeling", + "type": "Child", + "id": "https://ror.org/00wz2vk41" + }, + { + "label": "Service des Avions Français Instrumentés pour la Recherche en Environnement", + "type": "Child", + "id": "https://ror.org/02qdgbw61" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "Child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "Child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Archéologie des Sociétés Méditerranéennes", + "type": "Child", + "id": "https://ror.org/04n9eyw42" + }, + { + "label": "Laboratoire de Microbiologie Fondamentale et Pathogénicité", + "type": "Child", + "id": "https://ror.org/03e4tg734" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Praxiling", + "type": "Child", + "id": "https://ror.org/03ym2w748" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "Child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Centre d'études franco-russe de Moscou", + "type": "Child", + "id": "https://ror.org/00zmdjj30" + }, + { + "label": "Centre d'Études et de Documentation Économiques, Juridiques et sociales", + "type": "Child", + "id": "https://ror.org/008bf9746" + }, + { + "label": "Maison Française d'Oxford", + "type": "Child", + "id": "https://ror.org/022psxk94" + }, + { + "label": "Centre de recherche français à Jérusalem", + "type": "Child", + "id": "https://ror.org/04ahb2147" + }, + { + "label": "Centre d'études Alexandrines", + "type": "Child", + "id": "https://ror.org/02km70587" + }, + { + "label": "Institut français du Proche-Orient", + "type": "Child", + "id": "https://ror.org/02t9nm044" + }, + { + "label": "Institut français d'études sur l'Asie centrale", + "type": "Child", + "id": "https://ror.org/026t9b832" + }, + { + "label": "Lieux, Identités, eSpaces, Activités", + "type": "Child", + "id": "https://ror.org/00nbhg292" + }, + { + "label": "Ecology and Conservation Science for Sustainable Seas", + "type": "Child", + "id": "https://ror.org/021zcv334" + }, + { + "label": "AMURE - Centre de droit et d'économie de la mer", + "type": "Child", + "id": "https://ror.org/00ss0a232" + }, + { + "label": "Maison méditerranéenne des sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/01ejp3f31" + }, + { + "label": "Centre Franco-Égyptien d’Étude des Temples de Karnak", + "type": "Child", + "id": "https://ror.org/0502mw613" + }, + { + "label": "Centre de Recherche sur la Conservation", + "type": "Child", + "id": "https://ror.org/05q3pap39" + }, + { + "label": "Institut d'Histoire du Droit Jean Gaudemet", + "type": "Child", + "id": "https://ror.org/04j9ztm78" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "Child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "Child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Savoirs et Mondes Indiens", + "type": "Child", + "id": "https://ror.org/04gxn9h90" + }, + { + "label": "Laboratoire de Mathématiques de Reims", + "type": "Child", + "id": "https://ror.org/01xkfnd03" + }, + { + "label": "Centre Michel de Boüard", + "type": "Child", + "id": "https://ror.org/03rnz7p05" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "Child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "Child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Sommeil, Addiction et Neuropsychiatrie", + "type": "Child", + "id": "https://ror.org/04k8wt746" + }, + { + "label": "Plateforme d'Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/05r25mc45" + }, + { + "label": "TBM-Core", + "type": "Child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Génomique évolutive, modélisation et santé", + "type": "Child", + "id": "https://ror.org/026ddbz68" + }, + { + "label": "Takuvik Joint International Laboratory", + "type": "Child", + "id": "https://ror.org/04bzgtz06" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Bordeaux Imaging Center", + "type": "Child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "Child", + "id": "https://ror.org/034bena10" + }, + { + "label": "CEPN - Centre d'Economie de l'Université Paris Nord", + "type": "Child", + "id": "https://ror.org/03k32n603" + }, + { + "label": "Chimie, Structures et Propriétés de Biomatériaux et d'Agents Thérapeutiques", + "type": "Child", + "id": "https://ror.org/0343fpq57" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "Child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Laboratoire écologie, évolution, interactions des systèmes amazoniens", + "type": "Child", + "id": "https://ror.org/00gj7r351" + }, + { + "label": "STELLA MARE", + "type": "Child", + "id": "https://ror.org/040r8ry56" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "Child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Bases de données sur la Biodiversité, Ecologie, Environnement et Sociétés", + "type": "Child", + "id": "https://ror.org/034gk7456" + }, + { + "label": "DMEX Centre for X-ray Imaging", + "type": "Child", + "id": "https://ror.org/0213f8g15" + }, + { + "label": "Unité en Sciences Biologiques et Biotechnologies de Nantes", + "type": "Child", + "id": "https://ror.org/05ef4v550" + }, + { + "label": "Matrice Extracellulaire et Dynamique Cellulaire MEDyC", + "type": "Child", + "id": "https://ror.org/017p6sq53" + }, + { + "label": "Institut des Sciences de la Terre d'Orléans", + "type": "Child", + "id": "https://ror.org/02t2hg116" + }, + { + "label": "Institut de Recherche sur la Biologie de l'Insecte UMR 7261", + "type": "Child", + "id": "https://ror.org/04rp2mn26" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "Child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "Laboratoire Ligérien de Linguistique", + "type": "Child", + "id": "https://ror.org/04s6f1186" + }, + { + "label": "Droit International Comparé et Européen", + "type": "Child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Lasers, Plasmas et Procédés Photoniques", + "type": "Child", + "id": "https://ror.org/01qfjp710" + }, + { + "label": "Centre universitaire de recherches sur l'Action Publique et le Politique Épistémologie & Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00rxdng69" + }, + { + "label": "Centre Gilles-Gaston Granger", + "type": "Child", + "id": "https://ror.org/00axatv03" + }, + { + "label": "Irasia Recherche", + "type": "Child", + "id": "https://ror.org/03bcyhr16" + }, + { + "label": "Institut de Recherches et d'Etudes sur les Mondes Arabes et Musulmans", + "type": "Child", + "id": "https://ror.org/037f3ga09" + }, + { + "label": "Laboratoire d'Archéologie Médiévale et Moderne en Méditerranée", + "type": "Child", + "id": "https://ror.org/05tb4mb78" + }, + { + "label": "Institut d'ethnologie méditerranéenne européenne et comparative", + "type": "Child", + "id": "https://ror.org/050gdsq06" + }, + { + "label": "Temps, espaces, langages, Europe méridionale, Méditerranée", + "type": "Child", + "id": "https://ror.org/010bhn875" + }, + { + "label": "Matériaux Divisés, Interfaces, Réactivité, Electrochimie", + "type": "Child", + "id": "https://ror.org/00m587853" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Macromoléculaires", + "type": "Child", + "id": "https://ror.org/02hwc1z56" + }, + { + "label": "Centre d'études supérieures de civilisation médiévale", + "type": "Child", + "id": "https://ror.org/005hw9085" + }, + { + "label": "Laboratoire de Mathématiques et Applications", + "type": "Child", + "id": "https://ror.org/02p2rk609" + }, + { + "label": "Laboratoire Interdisciplinaire de Recherches \"Sociétés, Sensibilités, Soin\"", + "type": "Child", + "id": "https://ror.org/01rb31945" + }, + { + "label": "Centre d’études en sciences sociales du religieux", + "type": "Child", + "id": "https://ror.org/01kysxr05" + }, + { + "label": "Trajectoires. De la sédentarisation à l’État", + "type": "Child", + "id": "https://ror.org/03wdx6c48" + }, + { + "label": "Structure et Dynamique des Langues", + "type": "Child", + "id": "https://ror.org/019df2r84" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "Child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Laboratoire Information Génomique et Structurale", + "type": "Child", + "id": "https://ror.org/05v0fms67" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Chimie Biologique pour le Vivant", + "type": "Child", + "id": "https://ror.org/03cjyj977" + }, + { + "label": "Biologie Moléculaire Structurale et Processus Infectieux", + "type": "Child", + "id": "https://ror.org/009b91528" + }, + { + "label": "Centre de Recherche d'Albi en génie des Procédés, des SOlides Divisés, de l'Énergie et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03cxnrt47" + }, + { + "label": "Acquisition et Analyse de Données pour l'Histoire naturelle", + "type": "Child", + "id": "https://ror.org/05qhnf349" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "Child", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "Child", + "id": "https://ror.org/00t7axd27" + }, + { + "label": "Chronobiotron", + "type": "Child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Observatoire pour la Conservation de la Mégafaune Marine", + "type": "Child", + "id": "https://ror.org/04wbg2z51" + }, + { + "label": "Architecture Histoire Technique Territoire Patrimoine", + "type": "Child", + "id": "https://ror.org/05j8sgr10" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "Child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Maison des Sciences de l'Homme Val de Loire", + "type": "Child", + "id": "https://ror.org/03v4gsj38" + }, + { + "label": "GeoRessources", + "type": "Child", + "id": "https://ror.org/04mq2px33" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Observatoire Terre et environnement de Lorraine", + "type": "Child", + "id": "https://ror.org/02cyw3861" + }, + { + "label": "Huma-Num", + "type": "Child", + "id": "https://ror.org/04ces3204" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "Child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Laboratoire de Mathématiques et Modélisation d'Évry", + "type": "Child", + "id": "https://ror.org/03jca6281" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie Biologie Innovation", + "type": "Child", + "id": "https://ror.org/04bgzse17" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "Child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "Child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "Child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "Child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "CALMIP", + "type": "Child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Plateforme de chimie biologique intégrative de Strasbourg", + "type": "Child", + "id": "https://ror.org/052pqt102" + }, + { + "label": "LINK - Laboratory for Innovative Key Materials and Structures", + "type": "Child", + "id": "https://ror.org/03qt6f440" + }, + { + "label": "OpenEdition Center", + "type": "Child", + "id": "https://ror.org/02aja8v82" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Laboratoire de Chimie-Physique Macromoléculaire", + "type": "Child", + "id": "https://ror.org/0371yc337" + }, + { + "label": "Centre pour les humanités numériques et l'histoire de la justice", + "type": "Child", + "id": "https://ror.org/02yvha224" + }, + { + "label": "AlgoSolis", + "type": "Child", + "id": "https://ror.org/05481me13" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "Child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Passages", + "type": "Child", + "id": "https://ror.org/00s40r567" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "Child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "Child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Climat, Environnement, Couplages et Incertitudes", + "type": "Child", + "id": "https://ror.org/05t8ct211" + }, + { + "label": "Laboratoire de Linguistique de Nantes", + "type": "Child", + "id": "https://ror.org/0009eec40" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "Child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "Child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "Child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "Child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "ScanMAT", + "type": "Child", + "id": "https://ror.org/04fsxy317" + }, + { + "label": "PatriNat", + "type": "Child", + "id": "https://ror.org/037eda396" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "Child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Institut Denis Poisson", + "type": "Child", + "id": "https://ror.org/05djhd259" + }, + { + "label": "Temps, Mondes, Sociétés", + "type": "Child", + "id": "https://ror.org/01nhp3z94" + }, + { + "label": "Laboratoire Lorrain de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/020azc393" + }, + { + "label": "Laboratoire de Physique et Chimie Théoriques", + "type": "Child", + "id": "https://ror.org/02atkd403" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Vision pour la Robotique", + "type": "Child", + "id": "https://ror.org/02v6phz91" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Epigenetics, Data, Politics", + "type": "Child", + "id": "https://ror.org/00rg8bd79" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Integrative Neuroscience and Cognition Center", + "type": "Child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "Child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "Child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire interdisciplinaire d’études sur les réflexivités - Fonds Yan Thomas", + "type": "Child", + "id": "https://ror.org/046dap961" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "Child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Light, nanomaterials, nanotechnologies", + "type": "Child", + "id": "https://ror.org/01waxag60" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "Child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Centre de recherche sur le monde iranien", + "type": "Child", + "id": "https://ror.org/0302qeq32" + }, + { + "label": "RESTORE", + "type": "Child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "Child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "Child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "Child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Transitions Energétiques et Environnementales", + "type": "Child", + "id": "https://ror.org/04cms1b08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "Child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "Child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Bordeaux Sciences Économiques", + "type": "Child", + "id": "https://ror.org/014vz2d20" + }, + { + "label": "Microscopies, imageries et ressources analytiques en région Centre-Val de Loire", + "type": "Child", + "id": "https://ror.org/050x42563" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "Child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Catalyse, Polymérisation, Procédés et Matériaux", + "type": "Child", + "id": "https://ror.org/02f6tst70" + }, + { + "label": "Fédération de recherche Matière et Interactions", + "type": "Child", + "id": "https://ror.org/02wq1s711" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "Child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "Child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "Child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "Child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "Child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "Child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "Child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "Child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "Child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "Child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "Child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "Child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Archéologie, Terre, Histoire, Sociétés", + "type": "Child", + "id": "https://ror.org/011hdpx94" + }, + { + "label": "Institut de Chimie Moléculaire de l'Université de Bourgogne", + "type": "Child", + "id": "https://ror.org/011ygpb73" + }, + { + "label": "Institut Chevreul", + "type": "Child", + "id": "https://ror.org/048k52v18" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "Child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "Laboratoire Ondes et Milieux Complexes", + "type": "Child", + "id": "https://ror.org/02sb3b652" + }, + { + "label": "Centre for Nanoscience and Nanotechnology", + "type": "Child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Département de mathématiques et applications", + "type": "Child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "Child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "Child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Genome Integrity, RNA and Cancer", + "type": "Child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "Child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "Child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "Child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "Child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "Child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "Child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "Child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "Child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "Child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratory of Theoretical Physics and Statistical Models", + "type": "Child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "Child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "Child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "Child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratoire Leprince-Ringuet", + "type": "Child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "Centre de recherche droit Dauphine", + "type": "Child", + "id": "https://ror.org/01ag91m47" + }, + { + "label": "Laboratoire de Recherche sur la Croissance Cellulaire, la Réparation et la Régénération Tissulaires", + "type": "Child", + "id": "https://ror.org/041dsyz88" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Laboratoire interdisciplinaire en études culturelles", + "type": "Child", + "id": "https://ror.org/03820wq39" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "Child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Centre de Recherche en Économie et Management", + "type": "Child", + "id": "https://ror.org/0047rmf80" + }, + { + "label": "Institut de Physique de Rennes", + "type": "Child", + "id": "https://ror.org/022b0h879" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "Child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Pacte", + "type": "Child", + "id": "https://ror.org/026j45x50" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "Child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "UMR Géographie-cités", + "type": "Related", + "id": "https://ror.org/05yqfzf35" + }, + { + "label": "Campus Condorcet", + "type": "Related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "Institut Montpelliérain Alexander Grothendieck", + "type": "Related", + "id": "https://ror.org/044kxby82" + }, + { + "label": "Institut Carnot PolyNat", + "type": "Child", + "id": "https://ror.org/047p7mf25" + }, + { + "label": "Centre de Recherche et de Documentation sur l'Océanie (CREDO)", + "type": "Child", + "id": "https://ror.org/00jj62164" + }, + { + "label": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "type": "Child", + "id": "https://ror.org/005yfhm28" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Laboratoire Interdisciplinaire de Physique", + "type": "Child", + "id": "https://ror.org/023n9q531" + }, + { + "label": "Centre d'études sud-asiatiques et himalayennes", + "type": "Child", + "id": "https://ror.org/039bex249" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "Child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Techniques, Territoires et Sociétés", + "type": "Child", + "id": "https://ror.org/05fc1hn07" + }, + { + "label": "Laboratoire Navier", + "type": "Child", + "id": "https://ror.org/029hkd614" + }, + { + "label": "Imagerie et Stratégies Thérapeutiques pour les Cancers et Tissus cérébraux", + "type": "Child", + "id": "https://ror.org/04b9vs620" + }, + { + "label": "Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scène", + "type": "Child", + "id": "https://ror.org/055q9jt53" + }, + { + "label": "Laboratory of Pathogens and Host Immunity", + "type": "Child", + "id": "https://ror.org/00rt27171" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CNRS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Centre_national_de_la_recherche_scientifique", + "labels": [ + { + "label": "Centre National de la Recherche Scientifique", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.4444.0", + "preferred": "grid.4444.0" + }, + "ISNI": { + "all": [ + "0000 0001 2259 7504" + ], + "preferred": "0000 0001 2259 7504" + }, + "Wikidata": { + "all": [ + "Q280413", + "Q39411466" + ], + "preferred": "Q280413" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02ft5tp06.json b/v1.47/v1/02ft5tp06.json new file mode 100644 index 000000000..87d6021be --- /dev/null +++ b/v1.47/v1/02ft5tp06.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02ft5tp06", + "name": "Délégation Ile-de-France Ouest et Nord", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre de recherches sociologiques et politiques de Paris", + "type": "Child", + "id": "https://ror.org/04jb47e97" + }, + { + "label": "Division Technique de I'INSU", + "type": "Child", + "id": "https://ror.org/01s48fc08" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 48.81381, + "lng": 2.235, + "state": null, + "state_code": null, + "city": "Meudon", + "geonames_city": { + "id": 2994144, + "city": "Meudon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iledefrance-meudon.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR5" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.433123.4", + "preferred": "grid.433123.4" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02g6ksr28.json b/v1.47/v1/02g6ksr28.json new file mode 100644 index 000000000..3d42beed2 --- /dev/null +++ b/v1.47/v1/02g6ksr28.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/02g6ksr28", + "name": "ResearchConcepts io GmbH (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.9959, + "lng": 7.85222, + "state": null, + "state_code": null, + "city": "Freiburg im Breisgau", + "geonames_city": { + "id": 2925177, + "city": "Freiburg im Breisgau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.researchconcepts.io" + ], + "aliases": [ + "ResearchConcepts io" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "ResearchConcepts io GmbH", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/02gam0808.json b/v1.47/v1/02gam0808.json new file mode 100644 index 000000000..2bfeb8826 --- /dev/null +++ b/v1.47/v1/02gam0808.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02gam0808", + "name": "Centre d'Etudes et de Recherche en Gestion d'Aix-Marseille", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Toulon", + "type": "Parent", + "id": "https://ror.org/02m9kbe37" + } + ], + "addresses": [ + { + "lat": 43.12442, + "lng": 5.92836, + "state": null, + "state_code": null, + "city": "Toulon", + "geonames_city": { + "id": 2972328, + "city": "Toulon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cergam.univ-amu.fr" + ], + "aliases": [], + "acronyms": [ + "CERGAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784656" + ], + "preferred": "Q51784656" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02gv1gw80.json b/v1.47/v1/02gv1gw80.json new file mode 100644 index 000000000..8a635e01e --- /dev/null +++ b/v1.47/v1/02gv1gw80.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02gv1gw80", + "name": "Midlands State University", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -19.45, + "lng": 29.81667, + "state": null, + "state_code": null, + "city": "Gweru", + "geonames_city": { + "id": 890422, + "city": "Gweru", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ww5.msu.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "MSU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Midlands_State_University", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.442709.c", + "preferred": "grid.442709.c" + }, + "ISNI": { + "all": [ + "0000 0000 9894 9740" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6842554" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02h1jtt91.json b/v1.47/v1/02h1jtt91.json new file mode 100644 index 000000000..bc7a5c50d --- /dev/null +++ b/v1.47/v1/02h1jtt91.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02h1jtt91", + "name": "Japan Private School Promotion Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [ + { + "label": "Promotion and Mutual Aid Corporation for Private Schools of Japan", + "type": "Successor", + "id": "https://ror.org/05h2t6865" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [ + { + "label": "日本私立学校振興財団", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q110618673" + ], + "preferred": "Q110618673" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02hrqje66.json b/v1.47/v1/02hrqje66.json new file mode 100644 index 000000000..232139b04 --- /dev/null +++ b/v1.47/v1/02hrqje66.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02hrqje66", + "name": "University of Koudougou", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.25263, + "lng": -2.36272, + "state": null, + "state_code": null, + "city": "Koudougou", + "geonames_city": { + "id": 2358946, + "city": "Koudougou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unz.bf" + ], + "aliases": [], + "acronyms": [ + "UNZ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Koudougou", + "labels": [ + { + "label": "Université Norbert Zongo", + "iso639": "fr" + } + ], + "country": { + "country_name": "Burkina Faso", + "country_code": "BF" + }, + "external_ids": { + "GRID": { + "all": "grid.442669.b", + "preferred": "grid.442669.b" + }, + "Wikidata": { + "all": [ + "Q3551610" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02hvzvg02.json b/v1.47/v1/02hvzvg02.json new file mode 100644 index 000000000..07c048def --- /dev/null +++ b/v1.47/v1/02hvzvg02.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/02hvzvg02", + "name": "Modern College of Business and Science", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.58413, + "lng": 58.40778, + "state": null, + "state_code": null, + "city": "Muscat", + "geonames_city": { + "id": 287286, + "city": "Muscat", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://mcbs.edu.om/en/" + ], + "aliases": [], + "acronyms": [ + "MCBS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Oman", + "country_code": "OM" + }, + "external_ids": { + "GRID": { + "all": "grid.501970.a", + "preferred": "grid.501970.a" + }, + "ISNI": { + "all": [ + "0000 0004 0418 6164" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02hwjhx76.json b/v1.47/v1/02hwjhx76.json new file mode 100644 index 000000000..3d8809e12 --- /dev/null +++ b/v1.47/v1/02hwjhx76.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/02hwjhx76", + "name": "Universities Norway", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.91273, + "lng": 10.74609, + "state": null, + "state_code": null, + "city": "Oslo", + "geonames_city": { + "id": 3143244, + "city": "Oslo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uhr.no" + ], + "aliases": [ + "Norwegian Association of Higher Education Institutions" + ], + "acronyms": [ + "UHR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Universitets- og høgskolerådet", + "iso639": "no" + } + ], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "GRID": { + "all": "grid.459139.3", + "preferred": "grid.459139.3" + }, + "ISNI": { + "all": [ + "0000 0004 0612 2201" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q12008500" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02jfvys57.json b/v1.47/v1/02jfvys57.json new file mode 100644 index 000000000..8a9c218fe --- /dev/null +++ b/v1.47/v1/02jfvys57.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02jfvys57", + "name": "Siemens Gamesa Renewable Energy (Spain)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Gamesa (Spain)", + "type": "Predecessor", + "id": "https://ror.org/007kf2g74" + } + ], + "addresses": [ + { + "lat": 43.286, + "lng": -2.87, + "state": null, + "state_code": null, + "city": "Zamudio", + "geonames_city": { + "id": 3104339, + "city": "Zamudio", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.siemensgamesa.com" + ], + "aliases": [ + "Siemens Gamesa", + "Siemens Gamesa Renewable Energy, S.A.", + "Siemens Gamesa Renewable Energy, S.A.U." + ], + "acronyms": [ + "SGRE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Siemens_Gamesa", + "labels": [ + { + "label": "Siemens Gamesa Renewable Energy", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6094 2905" + ], + "preferred": "0000 0004 6094 2905" + }, + "Wikidata": { + "all": [ + "Q820588" + ], + "preferred": "Q820588" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02jj0ar17.json b/v1.47/v1/02jj0ar17.json new file mode 100644 index 000000000..d19cbcf18 --- /dev/null +++ b/v1.47/v1/02jj0ar17.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02jj0ar17", + "name": "União das Faculdades Católicas de Mato Grosso", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Faculdade Católica de Mato Grosso", + "type": "Child", + "id": "https://ror.org/05s4t4n85" + }, + { + "label": "Faculdade Católica de Cuiabá", + "type": "Child", + "id": "https://ror.org/05s056h84" + }, + { + "label": "Faculdade Católica de Várzea Grande", + "type": "Child", + "id": "https://ror.org/004vxz697" + } + ], + "addresses": [ + { + "lat": -15.59611, + "lng": -56.09667, + "state": null, + "state_code": null, + "city": "Cuiabá", + "geonames_city": { + "id": 3465038, + "city": "Cuiabá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unifacc.com.br" + ], + "aliases": [], + "acronyms": [ + "UNIFACC-MT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/02k239e36.json b/v1.47/v1/02k239e36.json new file mode 100644 index 000000000..7883f34da --- /dev/null +++ b/v1.47/v1/02k239e36.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/02k239e36", + "name": "Universidad del Gran Rosario", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -32.94682, + "lng": -60.63932, + "state": null, + "state_code": null, + "city": "Rosario", + "geonames_city": { + "id": 3838583, + "city": "Rosario", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ugr.edu.ar" + ], + "aliases": [ + "University of Gran Rosario" + ], + "acronyms": [ + "UGR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/02k65yv07.json b/v1.47/v1/02k65yv07.json new file mode 100644 index 000000000..73b8c39fa --- /dev/null +++ b/v1.47/v1/02k65yv07.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02k65yv07", + "name": "Eachtra Archaeological Projects (Ireland)", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.89797, + "lng": -8.47061, + "state": null, + "state_code": null, + "city": "Cork", + "geonames_city": { + "id": 2965140, + "city": "Cork", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://eachtra.ie" + ], + "aliases": [], + "acronyms": [ + "EACHTRA", + "EAP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Eachtra Archaeological Projects", + "iso639": "en" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/02k6qnd34.json b/v1.47/v1/02k6qnd34.json new file mode 100644 index 000000000..e09059472 --- /dev/null +++ b/v1.47/v1/02k6qnd34.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02k6qnd34", + "name": "Politeknik Negeri Jember", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -8.17211, + "lng": 113.69953, + "state": null, + "state_code": null, + "city": "Jember", + "geonames_city": { + "id": 1642588, + "city": "Jember", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://polije.ac.id" + ], + "aliases": [ + "State Polytechnic Jember" + ], + "acronyms": [ + "POLIJE" + ], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Politeknik_Negeri_Jember", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0375 2371" + ], + "preferred": "0000 0004 0375 2371" + }, + "Wikidata": { + "all": [ + "Q12506027" + ], + "preferred": "Q12506027" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02k949197.json b/v1.47/v1/02k949197.json new file mode 100644 index 000000000..abf30f631 --- /dev/null +++ b/v1.47/v1/02k949197.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02k949197", + "name": "Koneru Lakshmaiah Education Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 16.50745, + "lng": 80.6466, + "state": null, + "state_code": null, + "city": "Vijayawada", + "geonames_city": { + "id": 1253184, + "city": "Vijayawada", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.kluniversity.in/" + ], + "aliases": [ + "KL Deemed to be University", + "KL University", + "KLEF Deemed to be University" + ], + "acronyms": [ + "KLU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/K_L_University", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.449504.8", + "preferred": "grid.449504.8" + }, + "ISNI": { + "all": [ + "0000 0004 1766 2457" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6342915" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02kesvt12.json b/v1.47/v1/02kesvt12.json new file mode 100644 index 000000000..ad08209f4 --- /dev/null +++ b/v1.47/v1/02kesvt12.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02kesvt12", + "name": "National University of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -20.15, + "lng": 28.58333, + "state": null, + "state_code": null, + "city": "Bulawayo", + "geonames_city": { + "id": 894701, + "city": "Bulawayo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nust.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "NUST" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_University_of_Science_and_Technology,_Zimbabwe", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.440812.b", + "preferred": "grid.440812.b" + }, + "Wikidata": { + "all": [ + "Q6979267" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02kjy3s76.json b/v1.47/v1/02kjy3s76.json new file mode 100644 index 000000000..8ed5a9d04 --- /dev/null +++ b/v1.47/v1/02kjy3s76.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/02kjy3s76", + "name": "Daiko Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 35.17886, + "lng": 136.92604, + "state": null, + "state_code": null, + "city": "Higashi", + "geonames_city": { + "id": 1862790, + "city": "Higashi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www1.s3.starcat.ne.jp/daiko-f" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8306 6928" + ], + "preferred": "0000 0004 8306 6928" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02kpeqv85.json b/v1.47/v1/02kpeqv85.json new file mode 100644 index 000000000..04232891e --- /dev/null +++ b/v1.47/v1/02kpeqv85.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/02kpeqv85", + "name": "Kyoto University", + "email_address": null, + "ip_addresses": [], + "established": 1897, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Kyoto University Hospital", + "type": "Related", + "id": "https://ror.org/04k6gr834" + }, + { + "label": "Kyoto University Institute for Chemical Research", + "type": "Child", + "id": "https://ror.org/0349bbg69" + }, + { + "label": "Yukawa Institute for Theoretical Physics", + "type": "Child", + "id": "https://ror.org/0589kgd85" + } + ], + "addresses": [ + { + "lat": 35.02107, + "lng": 135.75385, + "state": null, + "state_code": null, + "city": "Kyoto", + "geonames_city": { + "id": 1857910, + "city": "Kyoto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.kyoto-u.ac.jp/en" + ], + "aliases": [ + "Kyōto daigaku" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Kyoto_University", + "labels": [ + { + "label": "京都大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.258799.8", + "preferred": "grid.258799.8" + }, + "ISNI": { + "all": [ + "0000 0004 0372 2033" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q336264" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02kvxyf05.json b/v1.47/v1/02kvxyf05.json new file mode 100644 index 000000000..201c373e0 --- /dev/null +++ b/v1.47/v1/02kvxyf05.json @@ -0,0 +1,312 @@ +{ + "id": "https://ror.org/02kvxyf05", + "name": "French Institute for Research in Computer Science and Automation", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Biometry and Evolutionary Biology Laboratory", + "type": "Child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Centre de Mathématiques Appliquées", + "type": "Child", + "id": "https://ror.org/012e1xn46" + }, + { + "label": "Cognition Behaviour Technology", + "type": "Child", + "id": "https://ror.org/04d9wv909" + }, + { + "label": "Computer Science Laboratory of the École Polytechnique", + "type": "Child", + "id": "https://ror.org/04afed728" + }, + { + "label": "Département d'Informatique", + "type": "Child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Grenoble Computer Science Laboratory", + "type": "Child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Inria Bordeaux - Sud-Ouest Research Centre", + "type": "Child", + "id": "https://ror.org/03tjcj052" + }, + { + "label": "Centre Inria de l'Université Grenoble Alpes", + "type": "Child", + "id": "https://ror.org/00n8d6z93" + }, + { + "label": "Centre Inria de l'Université de Lorraine", + "type": "Child", + "id": "https://ror.org/03fcjvn64" + }, + { + "label": "Inria Rennes - Bretagne Atlantique Research Centre", + "type": "Child", + "id": "https://ror.org/04040yw90" + }, + { + "label": "Inria Saclay - Île-de-France Research Centre", + "type": "Child", + "id": "https://ror.org/0315e5x55" + }, + { + "label": "Inria research centre Lille - Nord Europe", + "type": "Child", + "id": "https://ror.org/04eej9726" + }, + { + "label": "Institut de Mathématiques de Bordeaux", + "type": "Child", + "id": "https://ror.org/05m3r1b84" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "Child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut Élie Cartan de Lorraine", + "type": "Child", + "id": "https://ror.org/04rvw8791" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "Child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Paul Painlevé", + "type": "Child", + "id": "https://ror.org/043n4fm24" + }, + { + "label": "Laboratoire d'Informatique, Signaux et Systèmes de Sophia Antipolis", + "type": "Child", + "id": "https://ror.org/01215r597" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "Child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "Child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory of Mathematics and their Applications", + "type": "Child", + "id": "https://ror.org/00g669j87" + }, + { + "label": "Lorraine Research Laboratory in Computer Science and its Applications", + "type": "Child", + "id": "https://ror.org/02vnf0c38" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "type": "Child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Research Centre Inria Sophia Antipolis - Méditerranée", + "type": "Child", + "id": "https://ror.org/01nzkaw91" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Unit of Mathematics, Pure and Applied", + "type": "Child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Wave Propagation Mathematical Study and Simulation", + "type": "Child", + "id": "https://ror.org/03gvm2667" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "InBio: Experimental and Computational Methods for Modeling Cellular Processes", + "type": "Child", + "id": "https://ror.org/01tnxwc41" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Inria Lyon Centre", + "type": "Child", + "id": "https://ror.org/022gakr41" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + } + ], + "addresses": [ + { + "lat": 48.8205, + "lng": 2.1311, + "state": null, + "state_code": null, + "city": "Le Chesnay-Rocquencourt", + "geonames_city": { + "id": 6455402, + "city": "Le Chesnay-Rocquencourt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.inria.fr/en/" + ], + "aliases": [ + "Institut de recherche en informatique et en automatique" + ], + "acronyms": [ + "INRIA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/French_Institute_for_Research_in_Computer_Science_and_Automation", + "labels": [ + { + "label": "Institut national de recherche en informatique et en automatique", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.5328.c", + "preferred": "grid.5328.c" + }, + "ISNI": { + "all": [ + "0000 0001 2186 3954", + "0000 0001 2164 1438" + ], + "preferred": "0000 0001 2164 1438" + }, + "Wikidata": { + "all": [ + "Q1146208" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02m44sp53.json b/v1.47/v1/02m44sp53.json new file mode 100644 index 000000000..d47d2d5aa --- /dev/null +++ b/v1.47/v1/02m44sp53.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/02m44sp53", + "name": "Woman Online University", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.73915, + "lng": -1.31093, + "state": null, + "state_code": null, + "city": "Northwood", + "geonames_city": { + "id": 7291791, + "city": "Northwood", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://womenonlineuniversity.com" + ], + "aliases": [ + "Online Women University", + "Woman Online Academy", + "Woman's Online University", + "Women Online University", + "Women's Online University", + "Zan Online University" + ], + "acronyms": [], + "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.47/v1/02m9kbe37.json b/v1.47/v1/02m9kbe37.json new file mode 100644 index 000000000..60482b239 --- /dev/null +++ b/v1.47/v1/02m9kbe37.json @@ -0,0 +1,183 @@ +{ + "id": "https://ror.org/02m9kbe37", + "name": "Université de Toulon", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Physique Théorique", + "type": "Child", + "id": "https://ror.org/052bbtn31" + }, + { + "label": "Institut des Matériaux, de Microélectronique et des Nanosciences de Provence", + "type": "Child", + "id": "https://ror.org/0238zyh04" + }, + { + "label": "Laboratoire Motricité Humaine Éducation Sport Santé", + "type": "Child", + "id": "https://ror.org/03fd87035" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "Child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Mediterranean Institute of Oceanography", + "type": "Child", + "id": "https://ror.org/05258q350" + }, + { + "label": "Institut Méditerranéen des Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/00c62kq26" + }, + { + "label": "Droit International Comparé et Européen", + "type": "Child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Institut de Mathématiques de Toulon", + "type": "Child", + "id": "https://ror.org/038a20b58" + }, + { + "label": "Laboratoire d'économie appliquée au développement", + "type": "Child", + "id": "https://ror.org/04wdvc711" + }, + { + "label": "Conception de Systèmes Mécaniques et Robotiques", + "type": "Child", + "id": "https://ror.org/03jc88607" + }, + { + "label": "Laboratoire Babel", + "type": "Child", + "id": "https://ror.org/00sg8gh54" + }, + { + "label": "Centre d'études et de recherche sur les contentieux", + "type": "Child", + "id": "https://ror.org/03rvwhn52" + }, + { + "label": "Jeunesse - Activité Physique et Sportive, santé", + "type": "Child", + "id": "https://ror.org/05d95p271" + }, + { + "label": "Centre d'Etudes et de Recherche en Gestion d'Aix-Marseille", + "type": "Child", + "id": "https://ror.org/02gam0808" + }, + { + "label": "Matériaux Polymères Interfaces - Environnement Marin", + "type": "Child", + "id": "https://ror.org/03jqp8097" + } + ], + "addresses": [ + { + "lat": 43.12468, + "lng": 6.01033, + "state": null, + "state_code": null, + "city": "La Garde", + "geonames_city": { + "id": 3009223, + "city": "La Garde", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-tln.fr/" + ], + "aliases": [], + "acronyms": [ + "UTLN" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_the_South,_Toulon-Var", + "labels": [ + { + "label": "Universitat de Tolon", + "iso639": "ca" + }, + { + "label": "University of Toulon", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.12611.35", + "preferred": "grid.12611.35" + }, + "ISNI": { + "all": [ + "0000 0000 8843 7055" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1816857" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02mvzme44.json b/v1.47/v1/02mvzme44.json new file mode 100644 index 000000000..a0cd5e1f3 --- /dev/null +++ b/v1.47/v1/02mvzme44.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02mvzme44", + "name": "Výzkumný Ústav Mlékárenský", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.vumlekarensky.cz/" + ], + "aliases": [ + "Dairy Research Institute", + "Dairy Research Institute Ltd.", + "VÚM s.r.o.", + "Výzkumný ústav mlékárenský s.r.o." + ], + "acronyms": [ + "VÚM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.493275.e", + "preferred": "grid.493275.e" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02n14ez29.json b/v1.47/v1/02n14ez29.json new file mode 100644 index 000000000..e91fede67 --- /dev/null +++ b/v1.47/v1/02n14ez29.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02n14ez29", + "name": "Naval Medical Center San Diego", + "email_address": null, + "ip_addresses": [], + "established": 1917, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 32.71571, + "lng": -117.16472, + "state": null, + "state_code": null, + "city": "San Diego", + "geonames_city": { + "id": 5391811, + "city": "San Diego", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.med.navy.mil/sites/nmcsd/Pages/default.aspx" + ], + "aliases": [ + "Balboa Hospital", + "Bob Wilson Naval Hospital" + ], + "acronyms": [ + "NMCSD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naval_Medical_Center_San_Diego", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.415879.6", + "preferred": "grid.415879.6" + }, + "ISNI": { + "all": [ + "0000 0001 0639 7318" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6981860" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02nmt1x06.json b/v1.47/v1/02nmt1x06.json new file mode 100644 index 000000000..e5000faea --- /dev/null +++ b/v1.47/v1/02nmt1x06.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02nmt1x06", + "name": "MEDAV (Germany)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Siemens (Germany)", + "type": "Successor", + "id": "https://ror.org/059mq0909" + }, + { + "label": "Saab (Sweden)", + "type": "Successor", + "id": "https://ror.org/05kyy7d06" + } + ], + "addresses": [ + { + "lat": 49.59675, + "lng": 11.07216, + "state": null, + "state_code": null, + "city": "Uttenreuth", + "geonames_city": { + "id": 2818027, + "city": "Uttenreuth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.435958.6", + "preferred": "grid.435958.6" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02q1v5910.json b/v1.47/v1/02q1v5910.json new file mode 100644 index 000000000..9d033a4f3 --- /dev/null +++ b/v1.47/v1/02q1v5910.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02q1v5910", + "name": "State Key Laboratory of Millimeter Waves", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Southeast University", + "type": "Parent", + "id": "https://ror.org/04ct4d772" + } + ], + "addresses": [ + { + "lat": 32.06167, + "lng": 118.77778, + "state": null, + "state_code": null, + "city": "Nanjing", + "geonames_city": { + "id": 1799962, + "city": "Nanjing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mmw.seu.edu.cn" + ], + "aliases": [ + "State Key Lab of Millimeter Waves" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "毫米波国家重点实验室", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7872 3225" + ], + "preferred": "0000 0004 7872 3225" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02qgw5c67.json b/v1.47/v1/02qgw5c67.json new file mode 100644 index 000000000..b40842736 --- /dev/null +++ b/v1.47/v1/02qgw5c67.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02qgw5c67", + "name": "Manonmaniam Sundaranar University", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "G. Venkataswamy Naidu College", + "type": "Related", + "id": "https://ror.org/02ddybj40" + } + ], + "addresses": [ + { + "lat": 8.72742, + "lng": 77.6838, + "state": null, + "state_code": null, + "city": "Tirunelveli", + "geonames_city": { + "id": 1254361, + "city": "Tirunelveli", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.msuniv.ac.in/" + ], + "aliases": [], + "acronyms": [ + "MSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Manonmaniam_Sundaranar_University", + "labels": [ + { + "label": "மனோன்மணியம் சுந்தரனார் பல்கலைக்கழகம்", + "iso639": "ta" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.411780.b", + "preferred": "grid.411780.b" + }, + "ISNI": { + "all": [ + "0000 0001 0683 3327" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q12987221" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02qsmb048.json b/v1.47/v1/02qsmb048.json new file mode 100644 index 000000000..f5acd4389 --- /dev/null +++ b/v1.47/v1/02qsmb048.json @@ -0,0 +1,156 @@ +{ + "id": "https://ror.org/02qsmb048", + "name": "University of Belgrade", + "email_address": null, + "ip_addresses": [], + "established": 1808, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre of Research Excellence in Nutrition and Metabolism", + "type": "Child", + "id": "https://ror.org/01wg8sb33" + }, + { + "label": "Institut Mihajlo Pupin", + "type": "Child", + "id": "https://ror.org/00jk2b778" + }, + { + "label": "Institute of Physics Belgrade", + "type": "Child", + "id": "https://ror.org/04h3h5b09" + }, + { + "label": "The Nikola Tesla Institute of Electrical Engineering", + "type": "Child", + "id": "https://ror.org/04gvjds60" + }, + { + "label": "Institute of Molecular Genetics and Genetic Engineering", + "type": "Child", + "id": "https://ror.org/026ynmk26" + }, + { + "label": "Vinča Institute of Nuclear Sciences", + "type": "Child", + "id": "https://ror.org/04wecwh56" + }, + { + "label": "University Children's Hospital, Belgrade", + "type": "Related", + "id": "https://ror.org/05422jd13" + }, + { + "label": "University Hospital Center Dr Dragiša Mišović", + "type": "Related", + "id": "https://ror.org/01b8wwr26" + }, + { + "label": "University of Belgrade - Faculty of Physical Chemistry", + "type": "Child", + "id": "https://ror.org/04mqtta86" + }, + { + "label": "University of Belgrade – Faculty of Pharmacy", + "type": "Child", + "id": "https://ror.org/00vgscq55" + }, + { + "label": "University of Belgrade - Faculty of Geography", + "type": "Child", + "id": "https://ror.org/05xn4js35" + }, + { + "label": "University of Belgrade - Faculty of Civil Engineering", + "type": "Child", + "id": "https://ror.org/0391a8v61" + } + ], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.bg.ac.rs/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Belgrade", + "labels": [ + { + "label": "Univerzitet u Beogradu", + "iso639": "bs" + }, + { + "label": "Универзитет у Београду", + "iso639": "sr" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": { + "GRID": { + "all": "grid.7149.b", + "preferred": "grid.7149.b" + }, + "ISNI": { + "all": [ + "0000 0001 2166 9385" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q240631" + ], + "preferred": "Q240631" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02r1pzn16.json b/v1.47/v1/02r1pzn16.json new file mode 100644 index 000000000..8bdd686e3 --- /dev/null +++ b/v1.47/v1/02r1pzn16.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02r1pzn16", + "name": "Hôpital Saint-François d'Assise", + "email_address": null, + "ip_addresses": [], + "established": 1912, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Centre hospitalier universitaire de Québec", + "type": "Parent", + "id": "https://ror.org/006a7pj43" + } + ], + "addresses": [ + { + "lat": 46.81228, + "lng": -71.21454, + "state": null, + "state_code": null, + "city": "Québec", + "geonames_city": { + "id": 6325494, + "city": "Québec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.chuq.qc.ca/fr/le_chuq/nos_etablissements/hsfa/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/H%C3%B4pital_Saint-Fran%C3%A7ois_d'Assise", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.414378.d", + "preferred": "grid.414378.d" + }, + "ISNI": { + "all": [ + "0000 0001 0681 2024" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5964498" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02rg1r889.json b/v1.47/v1/02rg1r889.json new file mode 100644 index 000000000..2e790962a --- /dev/null +++ b/v1.47/v1/02rg1r889.json @@ -0,0 +1,129 @@ +{ + "id": "https://ror.org/02rg1r889", + "name": "Tribhuvan University", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institute of Engineering", + "type": "Child", + "id": "https://ror.org/03ny67e60" + }, + { + "label": "Bir Hospital", + "type": "Related", + "id": "https://ror.org/0024qhz65" + }, + { + "label": "Manmohan Memorial Institute of Health Sciences", + "type": "Related", + "id": "https://ror.org/04636qj46" + }, + { + "label": "Sai Krishna Medical College & Hospital", + "type": "Related", + "id": "https://ror.org/00737wk38" + }, + { + "label": "Tribhuvan University Teaching Hospital", + "type": "Related", + "id": "https://ror.org/02me73n88" + }, + { + "label": "Kantipur Engineering College", + "type": "Related", + "id": "https://ror.org/00xw9d516" + }, + { + "label": "Janaki Medical College", + "type": "Related", + "id": "https://ror.org/00bmp7042" + }, + { + "label": "Institute of Science and Technology", + "type": "Child", + "id": "https://ror.org/02wxm3f24" + } + ], + "addresses": [ + { + "lat": 27.70169, + "lng": 85.3206, + "state": null, + "state_code": null, + "city": "Kathmandu", + "geonames_city": { + "id": 1283240, + "city": "Kathmandu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://tribhuvan-university.edu.np/" + ], + "aliases": [], + "acronyms": [ + "TU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Tribhuvan_University", + "labels": [], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": { + "GRID": { + "all": "grid.80817.36", + "preferred": "grid.80817.36" + }, + "ISNI": { + "all": [ + "0000 0001 2114 6728" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q588239" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02rvbpq83.json b/v1.47/v1/02rvbpq83.json new file mode 100644 index 000000000..7c76b953c --- /dev/null +++ b/v1.47/v1/02rvbpq83.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02rvbpq83", + "name": "Takhar University", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.73605, + "lng": 69.53451, + "state": null, + "state_code": null, + "city": "Taloqan", + "geonames_city": { + "id": 1123004, + "city": "Taloqan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tu.edu.af" + ], + "aliases": [ + "University of Abdullah Ibn Massoud" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Takhar_University", + "labels": [ + { + "label": "دانشگاه تخار", + "iso639": "fa" + } + ], + "country": { + "country_name": "Afghanistan", + "country_code": "AF" + }, + "external_ids": { + "GRID": { + "all": "grid.440444.4", + "preferred": "grid.440444.4" + }, + "Wikidata": { + "all": [ + "Q7678191" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02rx3b187.json b/v1.47/v1/02rx3b187.json new file mode 100644 index 000000000..6ea7bde55 --- /dev/null +++ b/v1.47/v1/02rx3b187.json @@ -0,0 +1,333 @@ +{ + "id": "https://ror.org/02rx3b187", + "name": "Université Grenoble Alpes", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Interuniversitaire de MicroElectronique et Nanotechnologies", + "type": "Child", + "id": "https://ror.org/000tdrn36" + }, + { + "label": "Grenoble Applied Economics Lab", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Grenoble Institute of Technology", + "type": "Child", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut Néel", + "type": "Child", + "id": "https://ror.org/04dbzz632" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Interdisciplinaire de Physique", + "type": "Child", + "id": "https://ror.org/023n9q531" + }, + { + "label": "Laboratoire de Linguistique et Didactique des Langues Etrangères et Maternelles", + "type": "Child", + "id": "https://ror.org/05588ks88" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Langages, Littératures, Sociétés. Études Transfrontalières et Internationales", + "type": "Child", + "id": "https://ror.org/0157h5t87" + }, + { + "label": "Pierre Mendès-France University", + "type": "Child", + "id": "https://ror.org/02f7wz369" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "Child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "Institut Carnot PolyNat", + "type": "Child", + "id": "https://ror.org/047p7mf25" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Laboratoire de Recherche sur les Apprentissages en Contexte", + "type": "Child", + "id": "https://ror.org/05c99vk74" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Laboratoire Inter-universitaire de Psychologie: Personnalité, Cognition, Changement Social", + "type": "Child", + "id": "https://ror.org/03jrb0276" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "Child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Laboratoire Modélisation et Exploration des Matériaux", + "type": "Child", + "id": "https://ror.org/00ndvqf03" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "Child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "Child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Centre d'Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique", + "type": "Child", + "id": "https://ror.org/04ndt7n58" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Centre d'Etudes et de Recherches Appliquées à la Gestion", + "type": "Child", + "id": "https://ror.org/0509qp208" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Grenoble Computer Science Laboratory", + "type": "Child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "Child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Pacte", + "type": "Child", + "id": "https://ror.org/026j45x50" + }, + { + "label": "Laboratoire de Conception et d'Intégration des Systèmes", + "type": "Child", + "id": "https://ror.org/04eg25g76" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "Child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Centre Hospitalier Universitaire de Grenoble", + "type": "Related", + "id": "https://ror.org/041rhpw39" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Related", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scène", + "type": "Child", + "id": "https://ror.org/055q9jt53" + } + ], + "addresses": [ + { + "lat": 45.1787, + "lng": 5.76281, + "state": null, + "state_code": null, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 2978317, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-grenoble-alpes.fr" + ], + "aliases": [], + "acronyms": [ + "UGA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Grenoble_Alpes_University", + "labels": [ + { + "label": "Grenoble Alpes University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.450307.5", + "preferred": "grid.450307.5" + }, + "Wikidata": { + "all": [ + "Q945876" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02rycsd19.json b/v1.47/v1/02rycsd19.json new file mode 100644 index 000000000..72a38ba83 --- /dev/null +++ b/v1.47/v1/02rycsd19.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02rycsd19", + "name": "Institute for Work and Health", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre universitaire de médecine générale et santé publique, Lausanne", + "type": "Successor", + "id": "https://ror.org/04mcdza51" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.i-s-t.ch/accueil/" + ], + "aliases": [ + "Institut universitaire romand de Santé au Travail" + ], + "acronyms": [ + "IST" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.9976.1", + "preferred": "grid.9976.1" + }, + "ISNI": { + "all": [ + "0000 0000 9512 660X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02s47w807.json b/v1.47/v1/02s47w807.json new file mode 100644 index 000000000..1b6bacf6f --- /dev/null +++ b/v1.47/v1/02s47w807.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02s47w807", + "name": "WinnMed", + "email_address": null, + "ip_addresses": [], + "established": 1914, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.30331, + "lng": -91.78571, + "state": null, + "state_code": null, + "city": "Decorah", + "geonames_city": { + "id": 4853608, + "city": "Decorah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://winnmed.org" + ], + "aliases": [ + "Winneshiek County Memorial Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Winneshiek_Medical_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.492551.e", + "preferred": "grid.492551.e" + }, + "ISNI": { + "all": [ + "0000 0004 0436 9585" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q28450485" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02s5cdn70.json b/v1.47/v1/02s5cdn70.json new file mode 100644 index 000000000..e54a3470e --- /dev/null +++ b/v1.47/v1/02s5cdn70.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02s5cdn70", + "name": "Gwanda State University", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -20.93622, + "lng": 29.00698, + "state": null, + "state_code": null, + "city": "Gwanda", + "geonames_city": { + "id": 890516, + "city": "Gwanda", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.gsu.ac.zw/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gwanda_State_University", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.448948.d", + "preferred": "grid.448948.d" + }, + "ISNI": { + "all": [ + "0000 0004 9281 3083" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5623285" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02t220m45.json b/v1.47/v1/02t220m45.json new file mode 100644 index 000000000..319a128f3 --- /dev/null +++ b/v1.47/v1/02t220m45.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/02t220m45", + "name": "Délégation Bretagne et Pays de la Loire", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Child", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Institut de Recherche Dupuy de Lôme", + "type": "Child", + "id": "https://ror.org/03011gg73" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "Child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bretagne-pays-de-la-loire.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR17" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457022.6", + "preferred": "grid.457022.6" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02t46gq94.json b/v1.47/v1/02t46gq94.json new file mode 100644 index 000000000..ece9040a5 --- /dev/null +++ b/v1.47/v1/02t46gq94.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02t46gq94", + "name": "Ministerio de Salud Pública", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Hospital General Docente de Calderón", + "type": "Child", + "id": "https://ror.org/02f4cyy89" + } + ], + "addresses": [ + { + "lat": -0.22985, + "lng": -78.52495, + "state": null, + "state_code": null, + "city": "Quito", + "geonames_city": { + "id": 3652462, + "city": "Quito", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.salud.gob.ec/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ecuador", + "country_code": "EC" + }, + "external_ids": { + "GRID": { + "all": "grid.511900.c", + "preferred": "grid.511900.c" + }, + "ISNI": { + "all": [ + "0000 0004 1762 5226" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02tjqwz24.json b/v1.47/v1/02tjqwz24.json new file mode 100644 index 000000000..10bf92004 --- /dev/null +++ b/v1.47/v1/02tjqwz24.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02tjqwz24", + "name": "Research Institute for Fodder Crops (Czechia)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Agricultural Research, Ltd. (Czechia)", + "type": "Child", + "id": "https://ror.org/05eq3gw79" + } + ], + "addresses": [ + { + "lat": 49.16951, + "lng": 16.51078, + "state": null, + "state_code": null, + "city": "Troubsko", + "geonames_city": { + "id": 3063938, + "city": "Troubsko", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.vupt.cz/en/english/basic-information/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "výzkumný ústav pícninářský spol. s r.o", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448148.5", + "preferred": "grid.448148.5" + }, + "ISNI": { + "all": [ + "0000 0001 2222 6009" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02tnxpn14.json b/v1.47/v1/02tnxpn14.json new file mode 100644 index 000000000..306066c69 --- /dev/null +++ b/v1.47/v1/02tnxpn14.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02tnxpn14", + "name": "Advanced Digital Imaging Research", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Soft Imaging LLC (United States)", + "type": "Successor", + "id": "https://ror.org/01y4fs673" + } + ], + "addresses": [ + { + "lat": 29.50745, + "lng": -95.09493, + "state": null, + "state_code": null, + "city": "League City", + "geonames_city": { + "id": 4705692, + "city": "League City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.286580.1", + "preferred": "grid.286580.1" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02tt2zf29.json b/v1.47/v1/02tt2zf29.json new file mode 100644 index 000000000..1056a6e9f --- /dev/null +++ b/v1.47/v1/02tt2zf29.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02tt2zf29", + "name": "Forest Science and Technology Centre of Catalonia", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CERCA Institution", + "type": "Parent", + "id": "https://ror.org/01bkbaq61" + } + ], + "addresses": [ + { + "lat": 41.99395, + "lng": 1.51706, + "state": null, + "state_code": null, + "city": "Solsona", + "geonames_city": { + "id": 3108747, + "city": "Solsona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ctfc.cat/" + ], + "aliases": [ + "Centre Tecnològic Forestal de Catalunya" + ], + "acronyms": [ + "CTFC", + "CTFC-CERCA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de Ciència i Tecnologia Forestal de Catalunya", + "iso639": "ca" + }, + { + "label": "Centre des Sciences et des Technologies Forestières de Catalogne", + "iso639": "fr" + }, + { + "label": "Centro de Ciencia y Tecnología Forestal de Cataluña", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.423822.d", + "preferred": "grid.423822.d" + }, + "ISNI": { + "all": [ + "0000 0000 9161 2635" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02vnd0e65.json b/v1.47/v1/02vnd0e65.json new file mode 100644 index 000000000..57058a868 --- /dev/null +++ b/v1.47/v1/02vnd0e65.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02vnd0e65", + "name": "Laboratoire de Probabilités, Statistique et Modélisation", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Laboratoire de Probabilités et Modèles Aléatoires", + "type": "Predecessor", + "id": "https://ror.org/04hjc7403" + }, + { + "label": "Laboratoire de Statistique Théorique et Appliquée", + "type": "Predecessor", + "id": "https://ror.org/01vnn4t89" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lpsm.paris" + ], + "aliases": [], + "acronyms": [ + "LPSM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52605327" + ], + "preferred": "Q52605327" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02w7ezv91.json b/v1.47/v1/02w7ezv91.json new file mode 100644 index 000000000..82423efb4 --- /dev/null +++ b/v1.47/v1/02w7ezv91.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02w7ezv91", + "name": "Pathologies Pulmonaires et Plasticité Cellulaire", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-reims.fr/p3cell/accueil/bienvenue-sur-le-site-de-l-unite-inserm-umr-s-903,9902,17693.html" + ], + "aliases": [], + "acronyms": [ + "P3CELL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783291" + ], + "preferred": "Q51783291" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02wj62e51.json b/v1.47/v1/02wj62e51.json new file mode 100644 index 000000000..36c340c6d --- /dev/null +++ b/v1.47/v1/02wj62e51.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02wj62e51", + "name": "Diabète et thérapie cellulaire", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unistra.fr/recherche-1/vie-et-sante-1/diabete-et-therapeutique-diathec-ur-7294" + ], + "aliases": [], + "acronyms": [ + "DIATHEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/02wxm3f24.json b/v1.47/v1/02wxm3f24.json new file mode 100644 index 000000000..4d02a7df4 --- /dev/null +++ b/v1.47/v1/02wxm3f24.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/02wxm3f24", + "name": "Institute of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tribhuvan University", + "type": "Parent", + "id": "https://ror.org/02rg1r889" + } + ], + "addresses": [ + { + "lat": 27.70169, + "lng": 85.3206, + "state": null, + "state_code": null, + "city": "Kathmandu", + "geonames_city": { + "id": 1283240, + "city": "Kathmandu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iost.tu.edu.np" + ], + "aliases": [], + "acronyms": [ + "IOST" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_of_Science_and_Technology%2C_TU", + "labels": [ + { + "label": "विज्ञान तथा प्रविधि अध्ययन संस्थान", + "iso639": "ne" + } + ], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 5904 3574" + ], + "preferred": "0000 0004 5904 3574" + }, + "Wikidata": { + "all": [ + "Q28183913" + ], + "preferred": "Q28183913" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02wy4ac67.json b/v1.47/v1/02wy4ac67.json new file mode 100644 index 000000000..162956f68 --- /dev/null +++ b/v1.47/v1/02wy4ac67.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02wy4ac67", + "name": "Délégation Alsace", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", + "type": "Child", + "id": "https://ror.org/008pt4x48" + }, + { + "label": "Mitochondrie, stress oxydant et protection musculaire", + "type": "Child", + "id": "https://ror.org/05sc3hd12" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.alsace.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR10" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457027.3", + "preferred": "grid.457027.3" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02ypept83.json b/v1.47/v1/02ypept83.json new file mode 100644 index 000000000..d5beb8e3c --- /dev/null +++ b/v1.47/v1/02ypept83.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02ypept83", + "name": "United States Space Force", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Air Force Space Command", + "type": "Predecessor", + "id": "https://ror.org/00714tm23" + }, + { + "label": "United States Department of the Air Force", + "type": "Parent", + "id": "https://ror.org/01973x930" + } + ], + "addresses": [ + { + "lat": 38.88101, + "lng": -77.10428, + "state": null, + "state_code": null, + "city": "Arlington", + "geonames_city": { + "id": 4744709, + "city": "Arlington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.spaceforce.mil" + ], + "aliases": [ + "U.S. Space Force" + ], + "acronyms": [ + "USSF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_States_Space_Force", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q55088961" + ], + "preferred": "Q55088961" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02yy8x990.json b/v1.47/v1/02yy8x990.json new file mode 100644 index 000000000..469146a70 --- /dev/null +++ b/v1.47/v1/02yy8x990.json @@ -0,0 +1,125 @@ +{ + "id": "https://ror.org/02yy8x990", + "name": "Swedish University of Agricultural Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Umeå Plant Science Centre", + "type": "Child", + "id": "https://ror.org/02ehp0f77" + }, + { + "label": "National Bioinformatics Infrastructure Sweden", + "type": "Related", + "id": "https://ror.org/00enajs79" + }, + { + "label": "Swedish National Data Service", + "type": "Related", + "id": "https://ror.org/00ancw882" + }, + { + "label": "Swedish Biodiversity Data Infrastructure", + "type": "Related", + "id": "https://ror.org/0221pcv84" + }, + { + "label": "Swedish Infrastructure for Ecosystem Science", + "type": "Child", + "id": "https://ror.org/009b9n257" + } + ], + "addresses": [ + { + "lat": 59.85882, + "lng": 17.63889, + "state": null, + "state_code": null, + "city": "Uppsala", + "geonames_city": { + "id": 2666199, + "city": "Uppsala", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.slu.se/en/" + ], + "aliases": [ + "Sveriges Lantbruksuniversitet" + ], + "acronyms": [ + "SLU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Swedish_University_of_Agricultural_Sciences", + "labels": [ + { + "label": "Ruotsin maatalousyliopisto", + "iso639": "fi" + }, + { + "label": "Sveriges lantbruksuniversitet", + "iso639": "sv" + } + ], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "GRID": { + "all": "grid.6341.0", + "preferred": "grid.6341.0" + }, + "ISNI": { + "all": [ + "0000 0000 8578 2742" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1312762" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02z8bdw71.json b/v1.47/v1/02z8bdw71.json new file mode 100644 index 000000000..4fdfe79e7 --- /dev/null +++ b/v1.47/v1/02z8bdw71.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02z8bdw71", + "name": "College of Regional Development and Banking Institute - AMBIS", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ambis.cz" + ], + "aliases": [], + "acronyms": [ + "AMBIS" + ], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/AMBIS_vysok%C3%A1_%C5%A1kola", + "labels": [ + { + "label": "AMBIS vysoká škola, a.s.", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8337 7742" + ], + "preferred": "0000 0004 8337 7742" + }, + "Wikidata": { + "all": [ + "Q11046731" + ], + "preferred": "Q11046731" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02zpvhb36.json b/v1.47/v1/02zpvhb36.json new file mode 100644 index 000000000..2ed2e360a --- /dev/null +++ b/v1.47/v1/02zpvhb36.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02zpvhb36", + "name": "Universidad Tecnológica de Jalisco", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.66682, + "lng": -103.39182, + "state": null, + "state_code": null, + "city": "Guadalajara", + "geonames_city": { + "id": 4005539, + "city": "Guadalajara", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utj.edu.mx" + ], + "aliases": [ + "Technological University of Jalisco" + ], + "acronyms": [ + "UTJ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 6018" + ], + "preferred": "0000 0004 1770 6018" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/02zt1gg83.json b/v1.47/v1/02zt1gg83.json new file mode 100644 index 000000000..78e631a85 --- /dev/null +++ b/v1.47/v1/02zt1gg83.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/02zt1gg83", + "name": "International Atomic Energy Agency", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "FAO/IAEA Agriculture and Biotechnology Laboratories", + "type": "Child", + "id": "https://ror.org/02zty9d43" + }, + { + "label": "International Network of Nuclear Reaction Data Centres", + "type": "Child", + "id": "https://ror.org/00e50mf91" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iaea.org/" + ], + "aliases": [], + "acronyms": [ + "IAEA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_Atomic_Energy_Agency", + "labels": [ + { + "label": "Internationale Atomenergie-Organisation", + "iso639": "de" + }, + { + "label": "Mednarodna agencija za jedrsko energijo", + "iso639": "sl" + }, + { + "label": "Međunarodna agencija za atomsku energiju", + "iso639": "hr" + }, + { + "label": "Nemzetközi Atomenergia-ügynökség", + "iso639": "hu" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "GRID": { + "all": "grid.420221.7", + "preferred": "grid.420221.7" + }, + "ISNI": { + "all": [ + "0000 0004 0403 8399" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q41984" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/030ggnb25.json b/v1.47/v1/030ggnb25.json new file mode 100644 index 000000000..e326c6d10 --- /dev/null +++ b/v1.47/v1/030ggnb25.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/030ggnb25", + "name": "Lower Shabelle University", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 1.71594, + "lng": 44.77166, + "state": null, + "state_code": null, + "city": "Merca", + "geonames_city": { + "id": 54225, + "city": "Merca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lowershabelleuniversity.com" + ], + "aliases": [ + "Lower Shabelle University" + ], + "acronyms": [ + "LSU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Somalia", + "country_code": "SO" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/0313ta617.json b/v1.47/v1/0313ta617.json new file mode 100644 index 000000000..5891bbd63 --- /dev/null +++ b/v1.47/v1/0313ta617.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/0313ta617", + "name": "Fonds National de la Recherche et de L'Innovation pour le Développement", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 12.36566, + "lng": -1.53388, + "state": null, + "state_code": null, + "city": "Ouagadougou", + "geonames_city": { + "id": 2357048, + "city": "Ouagadougou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fonrid.com" + ], + "aliases": [], + "acronyms": [ + "FONRID" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Burkina Faso", + "country_code": "BF" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/031gdae85.json b/v1.47/v1/031gdae85.json new file mode 100644 index 000000000..6a37af04c --- /dev/null +++ b/v1.47/v1/031gdae85.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/031gdae85", + "name": "The Royal Swedish Academy of War Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1796, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.32938, + "lng": 18.06871, + "state": null, + "state_code": null, + "city": "Stockholm", + "geonames_city": { + "id": 2673730, + "city": "Stockholm", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kkrva.se" + ], + "aliases": [ + "Royal Swedish Academy of War Sciences" + ], + "acronyms": [ + "KKrVA" + ], + "status": "active", + "wikipedia_url": "https://sv.wikipedia.org/wiki/Kungliga_Krigsvetenskapsakademien", + "labels": [ + { + "label": "Kungliga Krigsvetenskapsakademien", + "iso639": "sv" + } + ], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q3395778" + ], + "preferred": "Q3395778" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/031jcsp55.json b/v1.47/v1/031jcsp55.json new file mode 100644 index 000000000..e1f87fc8c --- /dev/null +++ b/v1.47/v1/031jcsp55.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/031jcsp55", + "name": "Czech Aerospace Research Centre", + "email_address": null, + "ip_addresses": [], + "established": 1922, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vzlu.cz" + ], + "aliases": [ + "Aerospace Research and Test Establishment", + "Výzkumný a zkušební letecký ústav" + ], + "acronyms": [ + "VZLÚ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Výzkumný a zkušební letecký ústav, a. s.", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448101.8", + "preferred": "grid.448101.8" + }, + "ISNI": { + "all": [ + "0000 0001 0720 5912" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/031mgma31.json b/v1.47/v1/031mgma31.json new file mode 100644 index 000000000..87dbc51ea --- /dev/null +++ b/v1.47/v1/031mgma31.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/031mgma31", + "name": "Laserlab Europe", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.laserlab-europe.eu" + ], + "aliases": [], + "acronyms": [], + "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.47/v1/031rekg67.json b/v1.47/v1/031rekg67.json new file mode 100644 index 000000000..c1e8d30d8 --- /dev/null +++ b/v1.47/v1/031rekg67.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/031rekg67", + "name": "Swinburne University of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1908, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Swinburne University of Technology Sarawak Campus", + "type": "Child", + "id": "https://ror.org/014cjmc76" + }, + { + "label": "Stawell Underground Physics Laboratory", + "type": "Related", + "id": "https://ror.org/01az7g189" + } + ], + "addresses": [ + { + "lat": -37.814, + "lng": 144.96332, + "state": null, + "state_code": null, + "city": "Melbourne", + "geonames_city": { + "id": 2158177, + "city": "Melbourne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.swinburne.edu.au/" + ], + "aliases": [ + "Swinburne" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Swinburne_University_of_Technology", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1027.4", + "preferred": "grid.1027.4" + }, + "ISNI": { + "all": [ + "0000 0004 0409 2862" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q787234" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/032a28f65.json b/v1.47/v1/032a28f65.json new file mode 100644 index 000000000..15189c38f --- /dev/null +++ b/v1.47/v1/032a28f65.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/032a28f65", + "name": "European Research Center for Information Systems", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Münster", + "type": "Related", + "id": "https://ror.org/00pd74e08" + } + ], + "addresses": [ + { + "lat": 51.96236, + "lng": 7.62571, + "state": null, + "state_code": null, + "city": "Münster", + "geonames_city": { + "id": 2867543, + "city": "Münster", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ercis.org" + ], + "aliases": [], + "acronyms": [ + "ERCIS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_Research_Center_for_Information_Systems", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0591 256X" + ], + "preferred": "0000 0004 0591 256X" + }, + "Wikidata": { + "all": [ + "Q1376914" + ], + "preferred": "Q1376914" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/032aw4s87.json b/v1.47/v1/032aw4s87.json new file mode 100644 index 000000000..7ede71824 --- /dev/null +++ b/v1.47/v1/032aw4s87.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/032aw4s87", + "name": "Swiss UMEF", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.20222, + "lng": 6.14569, + "state": null, + "state_code": null, + "city": "Geneva", + "geonames_city": { + "id": 2660646, + "city": "Geneva", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.swiss-umef.ch" + ], + "aliases": [ + "Swiss UMEF University of Applied Sciences Institute", + "University of Management, Economics and Finance" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/0331qyx19.json b/v1.47/v1/0331qyx19.json new file mode 100644 index 000000000..5d8cb9bcc --- /dev/null +++ b/v1.47/v1/0331qyx19.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/0331qyx19", + "name": "Institut Français d'Études Anatoliennes", + "email_address": null, + "ip_addresses": [], + "established": 1930, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 41.01384, + "lng": 28.94966, + "state": null, + "state_code": null, + "city": "Istanbul", + "geonames_city": { + "id": 745044, + "city": "Istanbul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ifea-istanbul.net" + ], + "aliases": [ + "Institut Français d'Archéologie de Stamboul" + ], + "acronyms": [ + "IFEA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "GRID": { + "all": "grid.500167.5", + "preferred": "grid.500167.5" + }, + "ISNI": { + "all": [ + "0000 0004 0605 3170" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1246531" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/033fqnp11.json b/v1.47/v1/033fqnp11.json new file mode 100644 index 000000000..56a56013a --- /dev/null +++ b/v1.47/v1/033fqnp11.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/033fqnp11", + "name": "Ankara Bilkent City Hospital", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.91987, + "lng": 32.85427, + "state": null, + "state_code": null, + "city": "Ankara", + "geonames_city": { + "id": 323786, + "city": "Ankara", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ankarasehir.saglik.gov.tr" + ], + "aliases": [], + "acronyms": [ + "AŞH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ankara_Bilkent_City_Hospital", + "labels": [ + { + "label": "Ankara Bilkent Şehir Hastanesi", + "iso639": "tr" + }, + { + "label": "Анкарская Городская Больница", + "iso639": "ru" + }, + { + "label": "مستشفى محافظة انقرة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q12812072" + ], + "preferred": "Q12812072" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/033x0mt18.json b/v1.47/v1/033x0mt18.json new file mode 100644 index 000000000..4be5ed30d --- /dev/null +++ b/v1.47/v1/033x0mt18.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/033x0mt18", + "name": "Tropical and Mediterranean Cropping System Functioning and Management", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "ABSys", + "type": "Successor", + "id": "https://ror.org/00n2c0309" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://umr-system.cirad.fr/en" + ], + "aliases": [ + "UMR System" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [ + { + "label": "Fonctionnement et Conduite des Systèmes de Culture Tropicaux et Méditerranéens", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503398.4", + "preferred": "grid.503398.4" + }, + "Wikidata": { + "all": [ + "Q51780120" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/033yfkj90.json b/v1.47/v1/033yfkj90.json new file mode 100644 index 000000000..dbd34ee64 --- /dev/null +++ b/v1.47/v1/033yfkj90.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/033yfkj90", + "name": "Naval Postgraduate School", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 36.60024, + "lng": -121.89468, + "state": null, + "state_code": null, + "city": "Monterey", + "geonames_city": { + "id": 5374361, + "city": "Monterey", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nps.edu/" + ], + "aliases": [], + "acronyms": [ + "NPS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naval_Postgraduate_School", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.1108.8", + "preferred": "grid.1108.8" + }, + "ISNI": { + "all": [ + "0000 0004 1937 1282" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1515048" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0349bbg69.json b/v1.47/v1/0349bbg69.json new file mode 100644 index 000000000..e06e41258 --- /dev/null +++ b/v1.47/v1/0349bbg69.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0349bbg69", + "name": "Kyoto University Institute for Chemical Research", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Kyoto University", + "type": "Parent", + "id": "https://ror.org/02kpeqv85" + } + ], + "addresses": [ + { + "lat": 35.02107, + "lng": 135.75385, + "state": null, + "state_code": null, + "city": "Kyoto", + "geonames_city": { + "id": 1857910, + "city": "Kyoto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kuicr.kyoto-u.ac.jp" + ], + "aliases": [ + "Institute for Chemical Research, Kyoto University" + ], + "acronyms": [ + "KUICR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "京都大学化学研究所", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0466 8403" + ], + "preferred": "0000 0004 0466 8403" + }, + "Wikidata": { + "all": [ + "Q112085403" + ], + "preferred": "Q112085403" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/034np8920.json b/v1.47/v1/034np8920.json new file mode 100644 index 000000000..729c78478 --- /dev/null +++ b/v1.47/v1/034np8920.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/034np8920", + "name": "Université de Ouahigouya", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 13.58278, + "lng": -2.42158, + "state": null, + "state_code": null, + "city": "Ouahigouya", + "geonames_city": { + "id": 2357043, + "city": "Ouahigouya", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uohg.gov.bf" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Burkina Faso", + "country_code": "BF" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q100452193" + ], + "preferred": "Q100452193" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/035927h47.json b/v1.47/v1/035927h47.json new file mode 100644 index 000000000..0c6975ca6 --- /dev/null +++ b/v1.47/v1/035927h47.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/035927h47", + "name": "El Colegio de Morelos", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 18.9261, + "lng": -99.23075, + "state": null, + "state_code": null, + "city": "Cuernavaca", + "geonames_city": { + "id": 3529947, + "city": "Cuernavaca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://elcolegiodemorelos.edu.mx" + ], + "aliases": [], + "acronyms": [ + "COLMOR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/035agn614.json b/v1.47/v1/035agn614.json new file mode 100644 index 000000000..ae830909a --- /dev/null +++ b/v1.47/v1/035agn614.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/035agn614", + "name": "Navy and Marine Corps Public Health Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 36.83543, + "lng": -76.29827, + "state": null, + "state_code": null, + "city": "Portsmouth", + "geonames_city": { + "id": 4779999, + "city": "Portsmouth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nmcphc.med.navy.mil/" + ], + "aliases": [], + "acronyms": [ + "NMCPHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.415961.e", + "preferred": "grid.415961.e" + }, + "ISNI": { + "all": [ + "0000 0001 2174 5237" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30280714" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/035mqrn57.json b/v1.47/v1/035mqrn57.json new file mode 100644 index 000000000..0e91b005f --- /dev/null +++ b/v1.47/v1/035mqrn57.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/035mqrn57", + "name": "Center for the Sociology of Organizations", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Sciences Po", + "type": "Parent", + "id": "https://ror.org/05fe7ax82" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sciencespo.fr/cso/" + ], + "aliases": [], + "acronyms": [ + "CSO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Center_for_the_Sociology_of_Organizations", + "labels": [ + { + "label": "Centre de Sociologie des Organisations", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.473561.2", + "preferred": "grid.473561.2" + }, + "ISNI": { + "all": [ + "0000 0001 1959 8282" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945496" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/035qedt02.json b/v1.47/v1/035qedt02.json new file mode 100644 index 000000000..44160973d --- /dev/null +++ b/v1.47/v1/035qedt02.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/035qedt02", + "name": "Ministero della cultura", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Biblioteca Universitaria di Napoli", + "type": "Child", + "id": "https://ror.org/058m2zy02" + }, + { + "label": "Governo Italiano", + "type": "Parent", + "id": "https://ror.org/00xqkj280" + }, + { + "label": "Galleria Borghese", + "type": "Child", + "id": "https://ror.org/01beje961" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.beniculturali.it" + ], + "aliases": [ + "Ministry for Cultural Assets and Environments", + "Ministry of Culture" + ], + "acronyms": [ + "MiBACT", + "MiC" + ], + "status": "active", + "wikipedia_url": "https://it.wikipedia.org/wiki/Ministero_della_cultura", + "labels": [ + { + "label": "Ministero dei Beni e delle Attività Culturali e del Turismo", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.425779.a", + "preferred": "grid.425779.a" + }, + "ISNI": { + "all": [ + "0000 0001 1086 7917" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1347047" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/035w1gb98.json b/v1.47/v1/035w1gb98.json new file mode 100644 index 000000000..76cd25682 --- /dev/null +++ b/v1.47/v1/035w1gb98.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/035w1gb98", + "name": "United States Department of the Army", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Defense Forensics and Biometrics Agency", + "type": "Child", + "id": "https://ror.org/00wa40650" + }, + { + "label": "United States Army", + "type": "Child", + "id": "https://ror.org/00afsp483" + }, + { + "label": "Institute for Collaborative Biotechnologies", + "type": "Child", + "id": "https://ror.org/04kz4p343" + }, + { + "label": "United States Department of Defense", + "type": "Parent", + "id": "https://ror.org/0447fe631" + } + ], + "addresses": [ + { + "lat": 38.88101, + "lng": -77.10428, + "state": null, + "state_code": null, + "city": "Arlington", + "geonames_city": { + "id": 4744709, + "city": "Arlington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.army.mil/" + ], + "aliases": [ + "U.S. Department of the Army" + ], + "acronyms": [ + "DA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_States_Department_of_the_Army", + "labels": [ + { + "label": "Departamento del Ejército de los Estados Unidos", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.427904.c", + "preferred": "grid.427904.c" + }, + "ISNI": { + "all": [ + "0000 0001 2315 4051" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1328562" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/036jqmy94.json b/v1.47/v1/036jqmy94.json new file mode 100644 index 000000000..e3f9b3010 --- /dev/null +++ b/v1.47/v1/036jqmy94.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/036jqmy94", + "name": "University of Iowa", + "email_address": null, + "ip_addresses": [], + "established": 1847, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Heartland Center for Occupational Safety and Health", + "type": "Child", + "id": "https://ror.org/05vjz1d16" + }, + { + "label": "University of Iowa Holden Comprehensive Cancer Center", + "type": "Child", + "id": "https://ror.org/01jhe7086" + }, + { + "label": "University of Iowa Health Care", + "type": "Child", + "id": "https://ror.org/0431j1t39" + }, + { + "label": "AIB College of Business", + "type": "Related", + "id": "https://ror.org/03bybmz71" + }, + { + "label": "University of Iowa Stead Family Children’s Hospital", + "type": "Related", + "id": "https://ror.org/0184n5y84" + } + ], + "addresses": [ + { + "lat": 41.66113, + "lng": -91.53017, + "state": null, + "state_code": null, + "city": "Iowa City", + "geonames_city": { + "id": 4862034, + "city": "Iowa City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uiowa.edu/" + ], + "aliases": [], + "acronyms": [ + "UI" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Iowa", + "labels": [ + { + "label": "Universidad de Iowa", + "iso639": "es" + }, + { + "label": "Université de l'iowa", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.214572.7", + "preferred": "grid.214572.7" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8294" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q182973" + ], + "preferred": "Q182973" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/036k0fg31.json b/v1.47/v1/036k0fg31.json new file mode 100644 index 000000000..7842c352b --- /dev/null +++ b/v1.47/v1/036k0fg31.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/036k0fg31", + "name": "Usti Region", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ústí Regional Library", + "type": "Child", + "id": "https://ror.org/039mr5546" + } + ], + "addresses": [ + { + "lat": 50.6607, + "lng": 14.03227, + "state": null, + "state_code": null, + "city": "Ústí nad Labem", + "geonames_city": { + "id": 3063548, + "city": "Ústí nad Labem", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kr-ustecky.cz" + ], + "aliases": [ + "Ustecky Region", + "Usti Region of the Czech Republic", + "Ústecký Region" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/%C3%9Asteck%C3%BD_kraj", + "labels": [ + { + "label": "Ústecký kraj", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0611 3233" + ], + "preferred": "0000 0004 0611 3233" + }, + "Wikidata": { + "all": [ + "Q192702" + ], + "preferred": "Q192702" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/036w0tz95.json b/v1.47/v1/036w0tz95.json new file mode 100644 index 000000000..c37ed6d0c --- /dev/null +++ b/v1.47/v1/036w0tz95.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/036w0tz95", + "name": "RIATE - Centre pour l'analyse spatiale et la géovisualisation", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://riate.cnrs.fr" + ], + "aliases": [ + "RIATE - Center for spatial analysis and geovizualisation", + "Reseau interdisciplinaire pour l'amenagement du territoire europeen", + "Réseau interdisciplinaire pour l'aménagement et la cohésion des territoires de l'Europe et de ses voisinages", + "Réseau interdisciplinaire pour l’aménagement, l’observation et la cohésion des territoires européens" + ], + "acronyms": [ + "RIATE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785374" + ], + "preferred": "Q51785374" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/036wxwe09.json b/v1.47/v1/036wxwe09.json new file mode 100644 index 000000000..76c5cabb4 --- /dev/null +++ b/v1.47/v1/036wxwe09.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/036wxwe09", + "name": "Escuela Normal de Jilotepec", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.95194, + "lng": -99.53278, + "state": null, + "state_code": null, + "city": "Jilotepec de Molina Enríquez", + "geonames_city": { + "id": 3526501, + "city": "Jilotepec de Molina Enríquez", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://normaljilotepec.edomex.gob.mx" + ], + "aliases": [], + "acronyms": [ + "ENJ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/037405308.json b/v1.47/v1/037405308.json new file mode 100644 index 000000000..029dd8251 --- /dev/null +++ b/v1.47/v1/037405308.json @@ -0,0 +1,165 @@ +{ + "id": "https://ror.org/037405308", + "name": "Queensland Government", + "email_address": null, + "ip_addresses": [], + "established": 1859, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Australian e-Health Research Centre", + "type": "Child", + "id": "https://ror.org/04ywhbc61" + }, + { + "label": "Queensland Department of Agriculture and Fisheries", + "type": "Child", + "id": "https://ror.org/05s5aag36" + }, + { + "label": "Queensland Department of Natural Resources, Mines and Energy", + "type": "Child", + "id": "https://ror.org/007zyap28" + }, + { + "label": "Queensland Department of Transport and Main Roads", + "type": "Child", + "id": "https://ror.org/024ws6f80" + }, + { + "label": "Queensland Department of the Premier and Cabinet", + "type": "Child", + "id": "https://ror.org/05sz45x40" + }, + { + "label": "Queensland Academy of Sport", + "type": "Child", + "id": "https://ror.org/04tnw9626" + }, + { + "label": "Queensland Curriculum and Assessment Authority", + "type": "Child", + "id": "https://ror.org/05fvmm618" + }, + { + "label": "Queensland Department of Education", + "type": "Child", + "id": "https://ror.org/043k84p27" + }, + { + "label": "Queensland Department of Environment and Science", + "type": "Child", + "id": "https://ror.org/02wtcj248" + }, + { + "label": "Queensland Health", + "type": "Child", + "id": "https://ror.org/00c1dt378" + }, + { + "label": "Queensland Police Service", + "type": "Child", + "id": "https://ror.org/04p74nw72" + }, + { + "label": "Queensland Rail", + "type": "Child", + "id": "https://ror.org/01fykd523" + }, + { + "label": "Seqwater", + "type": "Child", + "id": "https://ror.org/01vz3ga16" + }, + { + "label": "Advance Queensland", + "type": "Child", + "id": "https://ror.org/05fb23t53" + }, + { + "label": "Australian Tropical Herbarium", + "type": "Related", + "id": "https://ror.org/02bjj9p45" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.qld.gov.au" + ], + "aliases": [ + "Government of Queensland", + "State of Queensland" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Government_of_Queensland", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.453171.5", + "preferred": "grid.453171.5" + }, + "ISNI": { + "all": [ + "0000 0004 0380 0628" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3112627" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0378szg41.json b/v1.47/v1/0378szg41.json new file mode 100644 index 000000000..cebddf9a6 --- /dev/null +++ b/v1.47/v1/0378szg41.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/0378szg41", + "name": "Université Djilali de Sidi Bel Abbès", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.18994, + "lng": -0.63085, + "state": null, + "state_code": null, + "city": "Sidi Bel Abbes", + "geonames_city": { + "id": 2481007, + "city": "Sidi Bel Abbes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-sba.dz" + ], + "aliases": [ + "Djillali Liabes University", + "Université Djillali Liabes", + "Université de Sidi Bel Abbés", + "جامعة جيلالي ليابس-سيدي بلعباس" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Djillali Liabes University Sidi Bel Abbès", + "iso639": "en" + }, + { + "label": "جامعة جيلالي ليابس سيدي بلعباس - جميع الحقوق محفوظة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": { + "GRID": { + "all": "grid.442529.c", + "preferred": "grid.442529.c" + }, + "ISNI": { + "all": [ + "0000 0004 0410 1650" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3551396" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/038esz880.json b/v1.47/v1/038esz880.json new file mode 100644 index 000000000..c25c3b79e --- /dev/null +++ b/v1.47/v1/038esz880.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/038esz880", + "name": "Institute of Social and Preventive Medicine", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University Hospital of Lausanne", + "type": "Parent", + "id": "https://ror.org/05a353079" + }, + { + "label": "University of Lausanne", + "type": "Parent", + "id": "https://ror.org/019whta54" + }, + { + "label": "Centre universitaire de médecine générale et santé publique, Lausanne", + "type": "Successor", + "id": "https://ror.org/04mcdza51" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iumsp.ch/en/" + ], + "aliases": [], + "acronyms": [ + "IUMSP" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.482968.9", + "preferred": "grid.482968.9" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/038f7y939.json b/v1.47/v1/038f7y939.json new file mode 100644 index 000000000..2ef9f983d --- /dev/null +++ b/v1.47/v1/038f7y939.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/038f7y939", + "name": "Universitair Ziekenhuis Brussel", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Vrije Universiteit Brussel", + "type": "Related", + "id": "https://ror.org/006e5kg04" + } + ], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uzbrussel.be" + ], + "aliases": [ + "UZ Brussel" + ], + "acronyms": [ + "UZB", + "UZB VUB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "GRID": { + "all": "grid.411326.3", + "preferred": "grid.411326.3" + }, + "ISNI": { + "all": [ + "0000 0004 0626 3362" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2123187" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/038n03236.json b/v1.47/v1/038n03236.json new file mode 100644 index 000000000..5fa4a3885 --- /dev/null +++ b/v1.47/v1/038n03236.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/038n03236", + "name": "Idlib University", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.93062, + "lng": 36.63393, + "state": null, + "state_code": null, + "city": "Idlib", + "geonames_city": { + "id": 169389, + "city": "Idlib", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://idlib.university" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Idlib_University", + "labels": [ + { + "label": "جامعة إدلب", + "iso639": "ar" + } + ], + "country": { + "country_name": "Syria", + "country_code": "SY" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q30314718" + ], + "preferred": "Q30314718" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/038tahs86.json b/v1.47/v1/038tahs86.json new file mode 100644 index 000000000..13e74c07a --- /dev/null +++ b/v1.47/v1/038tahs86.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/038tahs86", + "name": "Consejería de Educación, Universidades, Ciencia y Portavocía", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Comunidad de Madrid", + "type": "Parent", + "id": "https://ror.org/040scgh75" + }, + { + "label": "Dirección General de Universidades e Investigación", + "type": "Child", + "id": "https://ror.org/03mnxvp33" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.comunidad.madrid/centros/consejeria-educacion-universidades-ciencia-portavocia" + ], + "aliases": [ + "Consejería de Educación, Juventud y Deporte" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.483724.e", + "preferred": "grid.483724.e" + }, + "ISNI": { + "all": [ + "0000 0001 0720 1209" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q33121610" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0391a8v61.json b/v1.47/v1/0391a8v61.json new file mode 100644 index 000000000..67332e1a8 --- /dev/null +++ b/v1.47/v1/0391a8v61.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/0391a8v61", + "name": "University of Belgrade - Faculty of Civil Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1846, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Belgrade", + "type": "Parent", + "id": "https://ror.org/02qsmb048" + } + ], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.grf.bg.ac.rs" + ], + "aliases": [ + "Univerzitet u Beogradu - Građevinski fakultet", + "Универзитет у Београду – Грађевински факултет" + ], + "acronyms": [ + "GRF" + ], + "status": "active", + "wikipedia_url": "https://sh.wikipedia.org/wiki/Gra%C4%91evinski_fakultet_Univerziteta_u_Beogradu", + "labels": [], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/039bex249.json b/v1.47/v1/039bex249.json new file mode 100644 index 000000000..5a9d05297 --- /dev/null +++ b/v1.47/v1/039bex249.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/039bex249", + "name": "Centre d'études sud-asiatiques et himalayennes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "School for Advanced Studies in the Social Sciences", + "type": "Parent", + "id": "https://ror.org/02d9dg697" + }, + { + "label": "Center for South Asian Studies", + "type": "Predecessor", + "id": "https://ror.org/03m8ekn10" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ehess.fr/fr/centre-d%C3%A9tudes-sud-asiatiques-et-himalayennes-cesah" + ], + "aliases": [], + "acronyms": [ + "CESAH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/039fjjj43.json b/v1.47/v1/039fjjj43.json new file mode 100644 index 000000000..85e59c516 --- /dev/null +++ b/v1.47/v1/039fjjj43.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/039fjjj43", + "name": "Zlín Region", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "František Bartoš Regional Library in Zlín", + "type": "Child", + "id": "https://ror.org/0020fz961" + } + ], + "addresses": [ + { + "lat": 49.22645, + "lng": 17.67065, + "state": null, + "state_code": null, + "city": "Zlín", + "geonames_city": { + "id": 3061370, + "city": "Zlín", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kr-zlinsky.cz" + ], + "aliases": [ + "Zlin Region", + "Zlin Region of the Czech Republic" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Zl%C3%ADnsk%C3%BD_kraj", + "labels": [ + { + "label": "Zlínský kraj", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0397 5700" + ], + "preferred": "0000 0004 0397 5700" + }, + "Wikidata": { + "all": [ + "Q192536" + ], + "preferred": "Q192536" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/039mr5546.json b/v1.47/v1/039mr5546.json new file mode 100644 index 000000000..cbb2e4ee5 --- /dev/null +++ b/v1.47/v1/039mr5546.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/039mr5546", + "name": "Ústí Regional Library", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Usti Region", + "type": "Parent", + "id": "https://ror.org/036k0fg31" + } + ], + "addresses": [ + { + "lat": 50.6607, + "lng": 14.03227, + "state": null, + "state_code": null, + "city": "Ústí nad Labem", + "geonames_city": { + "id": 3063548, + "city": "Ústí nad Labem", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.knihovnauk.cz" + ], + "aliases": [], + "acronyms": [ + "KUK" + ], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Knihovna_%C3%9Asteck%C3%A9ho_kraje", + "labels": [ + { + "label": "Knihovna Ústeckého kraje, příspěvková organizace", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q15613838" + ], + "preferred": "Q15613838" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/039nk8734.json b/v1.47/v1/039nk8734.json new file mode 100644 index 000000000..146ed937a --- /dev/null +++ b/v1.47/v1/039nk8734.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/039nk8734", + "name": "Ada College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.77416, + "lng": 0.63377, + "state": null, + "state_code": null, + "city": "Ada", + "geonames_city": { + "id": 2306019, + "city": "Ada", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://adacoe.edu.gh" + ], + "aliases": [ + "Ada Teacher Training College" + ], + "acronyms": [ + "AdaCo", + "AdaCoE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ada_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0262 624X" + ], + "preferred": "0000 0005 0262 624X" + }, + "Wikidata": { + "all": [ + "Q46996955" + ], + "preferred": "Q46996955" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03a7m8962.json b/v1.47/v1/03a7m8962.json new file mode 100644 index 000000000..7177f93c2 --- /dev/null +++ b/v1.47/v1/03a7m8962.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/03a7m8962", + "name": "Tokyo Ohka Foundation for The Promotion of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 35.57467, + "lng": 139.65292, + "state": null, + "state_code": null, + "city": "Nakahara Ku", + "geonames_city": { + "id": 7470874, + "city": "Nakahara Ku", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tok-foundation.or.jp" + ], + "aliases": [ + "Tokyo Foundation for Science Technology Foundation", + "Tokyo Foundation for Science Technology Promotion Foundation", + "Tokyo Oka Science and Technology Foundation", + "Tokyo Oka Science and Technology Promotion Foundation", + "Tokyo Research Foundation for Science Technology", + "Tokyo Research Foundation for Science Technology Foundation", + "Tokyo Research Institute for Science and Technology Foundation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/03ar0mv07.json b/v1.47/v1/03ar0mv07.json new file mode 100644 index 000000000..5a13961aa --- /dev/null +++ b/v1.47/v1/03ar0mv07.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/03ar0mv07", + "name": "United States Department of the Navy", + "email_address": null, + "ip_addresses": [], + "established": 1798, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Marine Corps", + "type": "Child", + "id": "https://ror.org/05av6m066" + }, + { + "label": "United States Department of Defense", + "type": "Parent", + "id": "https://ror.org/0447fe631" + }, + { + "label": "United States Navy", + "type": "Child", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 38.88101, + "lng": -77.10428, + "state": null, + "state_code": null, + "city": "Arlington", + "geonames_city": { + "id": 4744709, + "city": "Arlington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.navy.mil" + ], + "aliases": [ + "U.S. Department of the Navy" + ], + "acronyms": [ + "DON" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_States_Department_of_the_Navy", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.420434.5", + "preferred": "grid.420434.5" + }, + "ISNI": { + "all": [ + "0000 0004 0480 9616", + "0000 0001 1087 3903" + ], + "preferred": "0000 0004 0480 9616" + }, + "Wikidata": { + "all": [ + "Q742787" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03be73j71.json b/v1.47/v1/03be73j71.json new file mode 100644 index 000000000..832c492a6 --- /dev/null +++ b/v1.47/v1/03be73j71.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03be73j71", + "name": "St. John Bosco College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.89557, + "lng": -1.0921, + "state": null, + "state_code": null, + "city": "Navrongo", + "geonames_city": { + "id": 2297505, + "city": "Navrongo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bosco.edu.gh" + ], + "aliases": [ + "Bosco's College of Education", + "Saint John Bosco College of Education", + "St. John Bosco's College of Education" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._John_Bosco%27s_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996985" + ], + "preferred": "Q46996985" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03bvg6e09.json b/v1.47/v1/03bvg6e09.json new file mode 100644 index 000000000..1c66bd842 --- /dev/null +++ b/v1.47/v1/03bvg6e09.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/03bvg6e09", + "name": "Youth Peer Education Network", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 8.40207, + "lng": 48.48284, + "state": null, + "state_code": null, + "city": "Garoowe", + "geonames_city": { + "id": 58933, + "city": "Garoowe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ypeerso.org" + ], + "aliases": [ + "Puntland Youth Peer Network", + "Y-PEER Somalia" + ], + "acronyms": [ + "PYPN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Somalia", + "country_code": "SO" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/03c0nx407.json b/v1.47/v1/03c0nx407.json new file mode 100644 index 000000000..20adc0188 --- /dev/null +++ b/v1.47/v1/03c0nx407.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03c0nx407", + "name": "Institute of Molecular Chemistry Reims", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-reims.fr/site/laboratoire-labellise/icmr/presentation,9938,17756.html?" + ], + "aliases": [], + "acronyms": [ + "ICMR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut de Chimie Moléculaire de Reims", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462453.2", + "preferred": "grid.462453.2" + }, + "ISNI": { + "all": [ + "0000 0004 0385 6736" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03c241w53.json b/v1.47/v1/03c241w53.json new file mode 100644 index 000000000..da621311f --- /dev/null +++ b/v1.47/v1/03c241w53.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03c241w53", + "name": "Universitäts- und Landesbibliothek Sachsen-Anhalt", + "email_address": null, + "ip_addresses": [], + "established": 1696, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Martin Luther University Halle-Wittenberg", + "type": "Parent", + "id": "https://ror.org/05gqaka33" + } + ], + "addresses": [ + { + "lat": 51.48139, + "lng": 11.98556, + "state": null, + "state_code": null, + "city": "Kreisfreie Stadt Halle", + "geonames_city": { + "id": 2911516, + "city": "Kreisfreie Stadt Halle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bibliothek.uni-halle.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Universit%C3%A4ts-_und_Landesbibliothek_Sachsen-Anhalt", + "labels": [ + { + "label": "University and State Library of Saxony-Anhalt", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2192 3902" + ], + "preferred": "0000 0001 2192 3902" + }, + "Wikidata": { + "all": [ + "Q1600777" + ], + "preferred": "Q1600777" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03cs53d16.json b/v1.47/v1/03cs53d16.json new file mode 100644 index 000000000..22780ee40 --- /dev/null +++ b/v1.47/v1/03cs53d16.json @@ -0,0 +1,195 @@ +{ + "id": "https://ror.org/03cs53d16", + "name": "United States Navy", + "email_address": null, + "ip_addresses": [], + "established": 1775, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Department of the Navy", + "type": "Parent", + "id": "https://ror.org/03ar0mv07" + }, + { + "label": "Military Sealift Command", + "type": "Child", + "id": "https://ror.org/004tay810" + }, + { + "label": "Naval Aerospace Medical Institute", + "type": "Child", + "id": "https://ror.org/04rm24644" + }, + { + "label": "Naval Aerospace Medical Research Laboratory", + "type": "Child", + "id": "https://ror.org/01gsy1c54" + }, + { + "label": "Naval Facilities Engineering Command", + "type": "Child", + "id": "https://ror.org/0539h2w52" + }, + { + "label": "Naval History and Heritage Command", + "type": "Child", + "id": "https://ror.org/02c37bg49" + }, + { + "label": "Naval Hospital Bremerton", + "type": "Child", + "id": "https://ror.org/0278h4n28" + }, + { + "label": "Naval Medical Center Portsmouth", + "type": "Child", + "id": "https://ror.org/04vxq1969" + }, + { + "label": "Naval Medical Center San Diego", + "type": "Child", + "id": "https://ror.org/02n14ez29" + }, + { + "label": "Naval Medical Research Command", + "type": "Child", + "id": "https://ror.org/05f421b09" + }, + { + "label": "Naval Postgraduate School", + "type": "Child", + "id": "https://ror.org/033yfkj90" + }, + { + "label": "Naval Sea Systems Command", + "type": "Child", + "id": "https://ror.org/03dm1p143" + }, + { + "label": "Naval Undersea Warfare Center", + "type": "Child", + "id": "https://ror.org/04bnxa153" + }, + { + "label": "Navy and Marine Corps Public Health Center", + "type": "Child", + "id": "https://ror.org/035agn614" + }, + { + "label": "Office of Naval Intelligence", + "type": "Child", + "id": "https://ror.org/01dh9vr61" + }, + { + "label": "Office of Naval Research", + "type": "Child", + "id": "https://ror.org/00rk2pe57" + }, + { + "label": "Naval Information Warfare Systems Command", + "type": "Child", + "id": "https://ror.org/000ztjy10" + }, + { + "label": "United States Naval Academy", + "type": "Child", + "id": "https://ror.org/00znex860" + }, + { + "label": "United States Naval Hospital Okinawa", + "type": "Child", + "id": "https://ror.org/05xde4j27" + }, + { + "label": "Naval Air Systems Command", + "type": "Child", + "id": "https://ror.org/054ajk512" + }, + { + "label": "United States Fleet Forces Command", + "type": "Child", + "id": "https://ror.org/04w46c814" + }, + { + "label": "Bureau of Medicine and Surgery", + "type": "Child", + "id": "https://ror.org/01e2k1j30" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.navy.mil" + ], + "aliases": [ + "U.S. Navy" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_States_Navy", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2155 5249" + ], + "preferred": "0000 0001 2155 5249" + }, + "Wikidata": { + "all": [ + "Q11220" + ], + "preferred": "Q11220" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03ddh2c27.json b/v1.47/v1/03ddh2c27.json new file mode 100644 index 000000000..be8ac3f38 --- /dev/null +++ b/v1.47/v1/03ddh2c27.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/03ddh2c27", + "name": "LG (South Korea)", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "LG Chem (South Korea)", + "type": "Child", + "id": "https://ror.org/04pjzv747" + }, + { + "label": "LG (China)", + "type": "Child", + "id": "https://ror.org/043h32y24" + }, + { + "label": "LG (United States)", + "type": "Child", + "id": "https://ror.org/02b948n83" + } + ], + "addresses": [ + { + "lat": 37.566, + "lng": 126.9784, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835848, + "city": "Seoul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lge.co.kr" + ], + "aliases": [ + "GoldStar", + "LG Corporation", + "Lucky Goldstar" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/LG_Corporation", + "labels": [], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "GRID": { + "all": "grid.464630.3", + "preferred": "grid.464630.3" + }, + "ISNI": { + "all": [ + "0000 0001 0696 9566" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q136778", + "Q486976", + "Q483006" + ], + "preferred": "Q136778" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03dm1p143.json b/v1.47/v1/03dm1p143.json new file mode 100644 index 000000000..5ea1167c6 --- /dev/null +++ b/v1.47/v1/03dm1p143.json @@ -0,0 +1,154 @@ +{ + "id": "https://ror.org/03dm1p143", + "name": "Naval Sea Systems Command", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Naval Surface Warfare Center", + "type": "Child", + "id": "https://ror.org/03d4ecn10" + }, + { + "label": "NSWC Carderock Division", + "type": "Child", + "id": "https://ror.org/03jsbvj12" + }, + { + "label": "NSWC Corona Division", + "type": "Child", + "id": "https://ror.org/04q54n515" + }, + { + "label": "NSWC Crane Division", + "type": "Child", + "id": "https://ror.org/04mfmy854" + }, + { + "label": "NSWC Dahlgren Division", + "type": "Child", + "id": "https://ror.org/04yrq0159" + }, + { + "label": "NSWC Indian Head", + "type": "Child", + "id": "https://ror.org/012ba0982" + }, + { + "label": "NSWC Panama City Division", + "type": "Child", + "id": "https://ror.org/03tbm7598" + }, + { + "label": "NSWC Philadelphia Division", + "type": "Child", + "id": "https://ror.org/0502xk698" + }, + { + "label": "NSWC Port Hueneme Division", + "type": "Child", + "id": "https://ror.org/00sxf8635" + }, + { + "label": "NUWC Keyport Division", + "type": "Child", + "id": "https://ror.org/029519s87" + }, + { + "label": "NUWC Newport Division", + "type": "Child", + "id": "https://ror.org/00zqysk61" + }, + { + "label": "Naval Ordnance Laboratory", + "type": "Predecessor", + "id": "https://ror.org/02kpw3v28" + }, + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.navsea.navy.mil/" + ], + "aliases": [], + "acronyms": [ + "NAVSEA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naval_Sea_Systems_Command", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.462643.1", + "preferred": "grid.462643.1" + }, + "ISNI": { + "all": [ + "0000 0004 0618 7179" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6981916" + ], + "preferred": "Q6981916" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03dy4eg44.json b/v1.47/v1/03dy4eg44.json new file mode 100644 index 000000000..d5eb083cf --- /dev/null +++ b/v1.47/v1/03dy4eg44.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/03dy4eg44", + "name": "Korea Semiconductor Research Consortium", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 37.41875, + "lng": 127.12877, + "state": null, + "state_code": null, + "city": "Seongnam-si", + "geonames_city": { + "id": 1836091, + "city": "Seongnam-si", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "KSRC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1089 7138" + ], + "preferred": "0000 0005 1089 7138" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03eere626.json b/v1.47/v1/03eere626.json new file mode 100644 index 000000000..f3bfc68d4 --- /dev/null +++ b/v1.47/v1/03eere626.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03eere626", + "name": "Brocher Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + } + ], + "addresses": [ + { + "lat": 46.20222, + "lng": 6.14569, + "state": null, + "state_code": null, + "city": "Geneva", + "geonames_city": { + "id": 2660646, + "city": "Geneva", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.brocher.ch/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fondation Brocher", + "iso639": "de" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.479698.d", + "preferred": "grid.479698.d" + }, + "ISNI": { + "all": [ + "0000 0000 9026 5256" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03eh6fk59.json b/v1.47/v1/03eh6fk59.json new file mode 100644 index 000000000..334d9f2d4 --- /dev/null +++ b/v1.47/v1/03eh6fk59.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03eh6fk59", + "name": "Mater Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -27.45314, + "lng": 153.04183, + "state": null, + "state_code": null, + "city": "Newstead", + "geonames_city": { + "id": 2155398, + "city": "Newstead", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.materfoundation.org.au" + ], + "aliases": [ + "Mater", + "Mater Foundation Brisbane", + "The Mater Foundation" + ], + "acronyms": [ + "MF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6489 3223" + ], + "preferred": "0000 0004 6489 3223" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03enb1k33.json b/v1.47/v1/03enb1k33.json new file mode 100644 index 000000000..25c6bb8b1 --- /dev/null +++ b/v1.47/v1/03enb1k33.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03enb1k33", + "name": "Cambodian University for Specialties", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 11.56245, + "lng": 104.91601, + "state": null, + "state_code": null, + "city": "Phnom Penh", + "geonames_city": { + "id": 1821306, + "city": "Phnom Penh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cus.edu.kh/" + ], + "aliases": [], + "acronyms": [ + "CUS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cambodia_University_of_Specialties", + "labels": [ + { + "label": "សកលវិទ្យាល័យឯកទេសកម្ពុជា", + "iso639": "km" + } + ], + "country": { + "country_name": "Cambodia", + "country_code": "KH" + }, + "external_ids": { + "GRID": { + "all": "grid.443141.7", + "preferred": "grid.443141.7" + }, + "Wikidata": { + "all": [ + "Q16256278" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03fbv3w59.json b/v1.47/v1/03fbv3w59.json new file mode 100644 index 000000000..c3613d7b1 --- /dev/null +++ b/v1.47/v1/03fbv3w59.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/03fbv3w59", + "name": "National Forensic Sciences University", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.21667, + "lng": 72.68333, + "state": null, + "state_code": null, + "city": "Gandhinagar", + "geonames_city": { + "id": 1271715, + "city": "Gandhinagar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nfsu.ac.in" + ], + "aliases": [ + "Gujarat Forensic Sciences University" + ], + "acronyms": [ + "GFSU", + "NFSU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gujarat_Forensic_Sciences_University", + "labels": [ + { + "label": "राष्ट्रीय न्यायालयिक विज्ञान विश्वविद्यालय", + "iso639": "hi" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.464573.7", + "preferred": "grid.464573.7" + }, + "ISNI": { + "all": [ + "0000 0004 1781 318X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q18130891" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03fcjvn64.json b/v1.47/v1/03fcjvn64.json new file mode 100644 index 000000000..54312493c --- /dev/null +++ b/v1.47/v1/03fcjvn64.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03fcjvn64", + "name": "Centre Inria de l'Université de Lorraine", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French Institute for Research in Computer Science and Automation", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + } + ], + "addresses": [ + { + "lat": 48.67333, + "lng": 6.15283, + "state": null, + "state_code": null, + "city": "Villers-lès-Nancy", + "geonames_city": { + "id": 2968368, + "city": "Villers-lès-Nancy", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inria.fr/fr/centre-inria-universite-lorraine" + ], + "aliases": [ + "Inria Nancy - Grand-Est research centre" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457353.3", + "preferred": "grid.457353.3" + }, + "ISNI": { + "all": [ + "0000 0001 1411 3805" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q38908536", + "Q30299483" + ], + "preferred": "Q30299483" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03fsckq75.json b/v1.47/v1/03fsckq75.json new file mode 100644 index 000000000..ec5eb526c --- /dev/null +++ b/v1.47/v1/03fsckq75.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/03fsckq75", + "name": "Ho Chi Minh University of Banking", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.82302, + "lng": 106.62965, + "state": null, + "state_code": null, + "city": "Ho Chi Minh City", + "geonames_city": { + "id": 1566083, + "city": "Ho Chi Minh City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hub.edu.vn" + ], + "aliases": [ + "Banking University of Ho Chi Minh City", + "Đại học Ngân hàng TP.HCM" + ], + "acronyms": [ + "BUH", + "HUB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Banking_University_of_Ho_Chi_Minh_City", + "labels": [ + { + "label": "Trường Đại học Ngân hàng Thành phố Hồ Chí Minh", + "iso639": "vi" + } + ], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": { + "GRID": { + "all": "grid.444834.b", + "preferred": "grid.444834.b" + }, + "ISNI": { + "all": [ + "0000 0004 4660 2058" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4856328" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03g98ap29.json b/v1.47/v1/03g98ap29.json new file mode 100644 index 000000000..0ce5a8138 --- /dev/null +++ b/v1.47/v1/03g98ap29.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03g98ap29", + "name": "Korea Medical Device Development Fund", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.55986, + "lng": 126.99398, + "state": null, + "state_code": null, + "city": "Jung-gu", + "geonames_city": { + "id": 1845068, + "city": "Jung-gu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kmdf.org" + ], + "aliases": [ + "Pan-Ministry New Drug Development Project Group" + ], + "acronyms": [ + "KMDF" + ], + "status": "active", + "wikipedia_url": "https://ko.wikipedia.org/wiki/%EB%B2%94%EB%B6%80%EC%B2%98%EC%8B%A0%EC%95%BD%EA%B0%9C%EB%B0%9C%EC%82%AC%EC%97%85%EB%8B%A8", + "labels": [ + { + "label": "범부처신약개발사업단", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0743 1118" + ], + "preferred": "0000 0005 0743 1118" + }, + "Wikidata": { + "all": [ + "Q16180143" + ], + "preferred": "Q16180143" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03ge26363.json b/v1.47/v1/03ge26363.json new file mode 100644 index 000000000..405146dfa --- /dev/null +++ b/v1.47/v1/03ge26363.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03ge26363", + "name": "Okinaka Memorial Institute for Medical Research", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://okiken.tokyo" + ], + "aliases": [ + "Okinaka Memorial Institute" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://ja.wikipedia.org/wiki/%E5%86%B2%E4%B8%AD%E8%A8%98%E5%BF%B5%E6%88%90%E4%BA%BA%E7%97%85%E7%A0%94%E7%A9%B6%E6%89%80", + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7690 2553" + ], + "preferred": "0000 0004 7690 2553" + }, + "Wikidata": { + "all": [ + "Q30267729" + ], + "preferred": "Q30267729" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03gnr7b55.json b/v1.47/v1/03gnr7b55.json new file mode 100644 index 000000000..ad9fd9d2e --- /dev/null +++ b/v1.47/v1/03gnr7b55.json @@ -0,0 +1,370 @@ +{ + "id": "https://ror.org/03gnr7b55", + "name": "Nantes Université", + "email_address": null, + "ip_addresses": [], + "established": 1460, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Nantais de Sociologie", + "type": "Child", + "id": "https://ror.org/04v837171" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "Child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Chemistry And Interdisciplinarité, Synthesis, Analyze, Modeling", + "type": "Child", + "id": "https://ror.org/04ysg2a58" + }, + { + "label": "Droit et changement social", + "type": "Child", + "id": "https://ror.org/014nzh720" + }, + { + "label": "Federative Institute of Behavioral Addictions", + "type": "Child", + "id": "https://ror.org/05qq96959" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Gene Therapy Laboratory", + "type": "Child", + "id": "https://ror.org/008rwh029" + }, + { + "label": "Institut de Recherche en Génie Civil et Mécanique", + "type": "Child", + "id": "https://ror.org/03x30hb31" + }, + { + "label": "Institut des Matériaux Jean Rouxel", + "type": "Child", + "id": "https://ror.org/00cqpd580" + }, + { + "label": "Institut du Thorax", + "type": "Child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "Child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire de Mathématiques Jean Leray", + "type": "Child", + "id": "https://ror.org/04g1hjn96" + }, + { + "label": "Laboratoire de Physique Subatomique et des Technologies Associées", + "type": "Child", + "id": "https://ror.org/01kxesq83" + }, + { + "label": "Laboratoire de Planétologie et Géosciences", + "type": "Child", + "id": "https://ror.org/04fm0sh33" + }, + { + "label": "Laboratoire de Psychologie des Pays de la Loire", + "type": "Child", + "id": "https://ror.org/007hrfm61" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "Child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Laboratoire de Thermique et Energie de Nantes", + "type": "Child", + "id": "https://ror.org/021fdyt09" + }, + { + "label": "PhysioPathologie des Adaptations Nutritionnelles", + "type": "Child", + "id": "https://ror.org/05vb5nm66" + }, + { + "label": "Process Engineering for Environment and Food", + "type": "Child", + "id": "https://ror.org/05ngxmx20" + }, + { + "label": "IRT Jules Verne", + "type": "Child", + "id": "https://ror.org/00qxv3c44" + }, + { + "label": "École Centrale de Nantes", + "type": "Child", + "id": "https://ror.org/03nh7d505" + }, + { + "label": "École Nationale Supérieure d'Architecture de Nantes", + "type": "Child", + "id": "https://ror.org/01jq57122" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "Child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "Littoral, Environnement, Télédétection, Géomatique", + "type": "Child", + "id": "https://ror.org/05sat2s07" + }, + { + "label": "Centre Atlantique de Philosophie", + "type": "Child", + "id": "https://ror.org/059ynac98" + }, + { + "label": "Centre François Viète", + "type": "Child", + "id": "https://ror.org/03mcrfa90" + }, + { + "label": "Centre de Recherche en Éducation de Nantes", + "type": "Child", + "id": "https://ror.org/00b1crx81" + }, + { + "label": "Unité en Sciences Biologiques et Biotechnologies de Nantes", + "type": "Child", + "id": "https://ror.org/05ef4v550" + }, + { + "label": "AlgoSolis", + "type": "Child", + "id": "https://ror.org/05481me13" + }, + { + "label": "Laboratoire de Linguistique de Nantes", + "type": "Child", + "id": "https://ror.org/0009eec40" + }, + { + "label": "Centre de Recherche sur les Identités, les Nations et l'Interculturalité", + "type": "Child", + "id": "https://ror.org/0290yjn87" + }, + { + "label": "LAMO - Littératures Antiques et Modernes", + "type": "Child", + "id": "https://ror.org/05w4vzs78" + }, + { + "label": "Cibles et Médicaments des Infections et de l'Immunité", + "type": "Child", + "id": "https://ror.org/01cqd9q31" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Laboratoire d'Economie et de Management de Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/04k51bq24" + }, + { + "label": "Institut de Recherche en Energie Electrique de Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/00z2bca79" + }, + { + "label": "Center for Research in Transplantation and Translational Immunology", + "type": "Child", + "id": "https://ror.org/01165k395" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "Laboratoire Motricité, Interactions, Performance", + "type": "Child", + "id": "https://ror.org/04q2ax456" + }, + { + "label": "Institut Des Substances et Organismes de la Mer", + "type": "Child", + "id": "https://ror.org/05601z471" + }, + { + "label": "methodS in Patient-centered outcomes and HEalth ResEarch", + "type": "Child", + "id": "https://ror.org/013m8h627" + }, + { + "label": "Translational Research in Gene Therapy", + "type": "Child", + "id": "https://ror.org/02tg88m31" + }, + { + "label": "Centre de Droit Maritime et Océanique", + "type": "Child", + "id": "https://ror.org/008qsjm14" + }, + { + "label": "Institut de recherche en droit privé", + "type": "Child", + "id": "https://ror.org/0269yh980" + }, + { + "label": "Groupement Ligérien pour le Calcul Intensif Distribué", + "type": "Child", + "id": "https://ror.org/02mhxg157" + }, + { + "label": "Centre Hospitalier Universitaire de Nantes", + "type": "Related", + "id": "https://ror.org/05c1qsg97" + }, + { + "label": "The Enteric Nervous System in Gut and Brain Disorders", + "type": "Related", + "id": "https://ror.org/01kbkse74" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Related", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Centre de recherches en histoire internationale et atlantique", + "type": "Child", + "id": "https://ror.org/058qdtv35" + } + ], + "addresses": [ + { + "lat": 47.21725, + "lng": -1.55336, + "state": null, + "state_code": null, + "city": "Nantes", + "geonames_city": { + "id": 2990969, + "city": "Nantes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-nantes.fr" + ], + "aliases": [ + "University of Nantes", + "Université de Nantes" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Nantes", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.4817.a", + "preferred": "grid.4817.a" + }, + "ISNI": { + "all": [ + "0000 0001 2189 0784" + ], + "preferred": "0000 0001 2189 0784" + }, + "Wikidata": { + "all": [ + "Q259388" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03hxmas11.json b/v1.47/v1/03hxmas11.json new file mode 100644 index 000000000..46024725d --- /dev/null +++ b/v1.47/v1/03hxmas11.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03hxmas11", + "name": "Research Institute for Cattle Breeding (Czechia)", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Agrovyzkum Rapotin (Czechia)", + "type": "Child", + "id": "https://ror.org/0552dh385" + } + ], + "addresses": [ + { + "lat": 49.97792, + "lng": 17.01234, + "state": null, + "state_code": null, + "city": "Vikýřovice", + "geonames_city": { + "id": 3062909, + "city": "Vikýřovice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vuchs.cz/agrovyzkum-rapotin/index.php" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Výzkumný Ustav pro Chov Skotu", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448164.b", + "preferred": "grid.448164.b" + }, + "ISNI": { + "all": [ + "0000 0004 0483 7297" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03hypw319.json b/v1.47/v1/03hypw319.json new file mode 100644 index 000000000..9c96e00f8 --- /dev/null +++ b/v1.47/v1/03hypw319.json @@ -0,0 +1,157 @@ +{ + "id": "https://ror.org/03hypw319", + "name": "Université de Reims Champagne-Ardenne", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Fractionnation of AgroResources and Environment", + "type": "Child", + "id": "https://ror.org/00136g547" + }, + { + "label": "Institute of Molecular Chemistry Reims", + "type": "Child", + "id": "https://ror.org/03c0nx407" + }, + { + "label": "Molecular and Atmospheric Spectrometry Group", + "type": "Child", + "id": "https://ror.org/03vyzg221" + }, + { + "label": "STIC Research Centre", + "type": "Child", + "id": "https://ror.org/016wdna72" + }, + { + "label": "Stress Environnementaux et Biosurveillance des Milieux Aquatiques", + "type": "Child", + "id": "https://ror.org/046cwyy43" + }, + { + "label": "Pathologies Pulmonaires et Plasticité Cellulaire", + "type": "Child", + "id": "https://ror.org/02w7ezv91" + }, + { + "label": "Laboratoire de Mathématiques de Reims", + "type": "Child", + "id": "https://ror.org/01xkfnd03" + }, + { + "label": "Matrice Extracellulaire et Dynamique Cellulaire MEDyC", + "type": "Child", + "id": "https://ror.org/017p6sq53" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Epidémiosurveillance et circulation des parasites dans les environnements", + "type": "Child", + "id": "https://ror.org/01dthb180" + }, + { + "label": "Centre Interdisciplinaire de Recherches sur les Langues Et la Pensée", + "type": "Child", + "id": "https://ror.org/04j8jrf09" + }, + { + "label": "Centre Hospitalier Universitaire de Reims", + "type": "Related", + "id": "https://ror.org/01jbb3w63" + }, + { + "label": "Centre de recherche interdisciplinaire sur les modèles esthétiques et littéraires", + "type": "Child", + "id": "https://ror.org/01x1mwt32" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-reims.fr" + ], + "aliases": [ + "University of Reims", + "University of Reims Champagne-Ardenne" + ], + "acronyms": [ + "URCA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Reims_Champagne-Ardenne", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.11667.37", + "preferred": "grid.11667.37" + }, + "ISNI": { + "all": [ + "0000 0004 1937 0618" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2496149" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03j1z6h17.json b/v1.47/v1/03j1z6h17.json new file mode 100644 index 000000000..8ce685939 --- /dev/null +++ b/v1.47/v1/03j1z6h17.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03j1z6h17", + "name": "Vysočina Regional Library", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Vysočina Region", + "type": "Parent", + "id": "https://ror.org/01cbd4k69" + } + ], + "addresses": [ + { + "lat": 49.6069, + "lng": 15.57937, + "state": null, + "state_code": null, + "city": "Havlíčkův Brod", + "geonames_city": { + "id": 3075919, + "city": "Havlíčkův Brod", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kkvysociny.cz" + ], + "aliases": [], + "acronyms": [ + "KKVYSOCINY" + ], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Krajsk%C3%A1_knihovna_Vyso%C4%8Diny", + "labels": [ + { + "label": "Krajská knihovna Vysočiny", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0478 5378" + ], + "preferred": "0000 0004 0478 5378" + }, + "Wikidata": { + "all": [ + "Q19825064" + ], + "preferred": "Q19825064" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03j656z92.json b/v1.47/v1/03j656z92.json new file mode 100644 index 000000000..04f189bd0 --- /dev/null +++ b/v1.47/v1/03j656z92.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03j656z92", + "name": "Centre National de Semences Forestières", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.36566, + "lng": -1.53388, + "state": null, + "state_code": null, + "city": "Ouagadougou", + "geonames_city": { + "id": 2357048, + "city": "Ouagadougou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnsf.bf/" + ], + "aliases": [], + "acronyms": [ + "CNSF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Burkina Faso", + "country_code": "BF" + }, + "external_ids": { + "GRID": { + "all": "grid.433136.0", + "preferred": "grid.433136.0" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03j65n394.json b/v1.47/v1/03j65n394.json new file mode 100644 index 000000000..f962295f2 --- /dev/null +++ b/v1.47/v1/03j65n394.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/03j65n394", + "name": "Laboratoire d'Excellence TULIP", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "École Nationale Supérieure Agronomique de Toulouse", + "type": "Parent", + "id": "https://ror.org/03d5w9863" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "University of Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Université de Toulouse", + "type": "Parent", + "id": "https://ror.org/004raaa70" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 43.5159, + "lng": 1.4986, + "state": null, + "state_code": null, + "city": "Castanet-Tolosan", + "geonames_city": { + "id": 3028409, + "city": "Castanet-Tolosan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.labex-tulip.fr" + ], + "aliases": [ + "Labex TULIP", + "Laboratory of Excellence TULIP", + "TULIP LabEx" + ], + "acronyms": [ + "TULIP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0389 9194" + ], + "preferred": "0000 0005 0389 9194" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03jc88607.json b/v1.47/v1/03jc88607.json new file mode 100644 index 000000000..d4822febe --- /dev/null +++ b/v1.47/v1/03jc88607.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03jc88607", + "name": "Conception de Systèmes Mécaniques et Robotiques", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Toulon", + "type": "Parent", + "id": "https://ror.org/02m9kbe37" + } + ], + "addresses": [ + { + "lat": 43.12442, + "lng": 5.92836, + "state": null, + "state_code": null, + "city": "Toulon", + "geonames_city": { + "id": 2972328, + "city": "Toulon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cosmer.univ-tln.fr" + ], + "aliases": [ + "Laboratoire COSMER" + ], + "acronyms": [ + "COSMER" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782160" + ], + "preferred": "Q51782160" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03jms8710.json b/v1.47/v1/03jms8710.json new file mode 100644 index 000000000..dc253d533 --- /dev/null +++ b/v1.47/v1/03jms8710.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03jms8710", + "name": "Centre Gabriel Naudé", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "École nationale supérieure des sciences de l'information et des bibliothèques", + "type": "Parent", + "id": "https://ror.org/059qr5h87" + } + ], + "addresses": [ + { + "lat": 45.76601, + "lng": 4.8795, + "state": null, + "state_code": null, + "city": "Villeurbanne", + "geonames_city": { + "id": 2968254, + "city": "Villeurbanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cgn.enssib.fr" + ], + "aliases": [ + "Gabriel Naudé Research Centre" + ], + "acronyms": [ + "CGN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780523" + ], + "preferred": "Q51780523" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03jqp8097.json b/v1.47/v1/03jqp8097.json new file mode 100644 index 000000000..7d0d18e76 --- /dev/null +++ b/v1.47/v1/03jqp8097.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/03jqp8097", + "name": "Matériaux Polymères Interfaces - Environnement Marin", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Toulon", + "type": "Parent", + "id": "https://ror.org/02m9kbe37" + } + ], + "addresses": [ + { + "lat": 43.12442, + "lng": 5.92836, + "state": null, + "state_code": null, + "city": "Toulon", + "geonames_city": { + "id": 2972328, + "city": "Toulon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mapiem.univ-tln.fr" + ], + "aliases": [ + "Laboratoire MAPIEM" + ], + "acronyms": [ + "MAPIEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/03jv6w209.json b/v1.47/v1/03jv6w209.json new file mode 100644 index 000000000..736935a45 --- /dev/null +++ b/v1.47/v1/03jv6w209.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/03jv6w209", + "name": "Maison de la Simulation", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "French Institute for Research in Computer Science and Automation", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "University of Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.7326, + "lng": 2.16923, + "state": null, + "state_code": null, + "city": "Saclay", + "geonames_city": { + "id": 2982043, + "city": "Saclay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mdls.fr" + ], + "aliases": [], + "acronyms": [ + "MdlS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503017.0", + "preferred": "grid.503017.0" + }, + "Wikidata": { + "all": [ + "Q51780617" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03m8r7k33.json b/v1.47/v1/03m8r7k33.json new file mode 100644 index 000000000..07d595081 --- /dev/null +++ b/v1.47/v1/03m8r7k33.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03m8r7k33", + "name": "Hôpital d'instruction des Armées Desgenettes", + "email_address": null, + "ip_addresses": [], + "established": 1708, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Ministère des Armées", + "type": "Parent", + "id": "https://ror.org/025er3q23" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.defense.gouv.fr/english/sante" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.414010.0", + "preferred": "grid.414010.0" + }, + "ISNI": { + "all": [ + "0000 0000 8943 5457" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03mc0m715.json b/v1.47/v1/03mc0m715.json new file mode 100644 index 000000000..63812f386 --- /dev/null +++ b/v1.47/v1/03mc0m715.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03mc0m715", + "name": "Colegiul Consultativ pentru Cercetare-Dezvoltare şi Inovare", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of Education", + "type": "Parent", + "id": "https://ror.org/00dh5gw98" + } + ], + "addresses": [ + { + "lat": 44.5, + "lng": 26.08333, + "state": null, + "state_code": null, + "city": "București", + "geonames_city": { + "id": 683504, + "city": "București", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.old.research.gov.ro/ro/articol/4600/sistemul-de-cercetare-colegiul-consultativ-pentru-cercetare-dezvoltare-si-inovare-cccdi" + ], + "aliases": [], + "acronyms": [ + "CCCDI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Advisory Board for Research, Development and Innovation", + "iso639": "en" + } + ], + "country": { + "country_name": "Romania", + "country_code": "RO" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/03mnxvp33.json b/v1.47/v1/03mnxvp33.json new file mode 100644 index 000000000..a68b35762 --- /dev/null +++ b/v1.47/v1/03mnxvp33.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03mnxvp33", + "name": "Dirección General de Universidades e Investigación", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Consejería de Educación, Universidades, Ciencia y Portavocía", + "type": "Parent", + "id": "https://ror.org/038tahs86" + } + ], + "addresses": [ + { + "lat": 40.40225, + "lng": -3.71029, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 6355233, + "city": "Madrid", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Dirección General de Universidades e Investigación de la Comunidad de Madrid" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "General Directorate of Universities and Research", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/03nawhv43.json b/v1.47/v1/03nawhv43.json new file mode 100644 index 000000000..c1fe845e7 --- /dev/null +++ b/v1.47/v1/03nawhv43.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/03nawhv43", + "name": "University of California, Riverside", + "email_address": null, + "ip_addresses": [], + "established": 1954, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Materials Science in Extreme Environments University Research Alliance", + "type": "Related", + "id": "https://ror.org/04n07f274" + } + ], + "addresses": [ + { + "lat": 33.95335, + "lng": -117.39616, + "state": null, + "state_code": null, + "city": "Riverside", + "geonames_city": { + "id": 5387877, + "city": "Riverside", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ucr.edu" + ], + "aliases": [ + "UC Riverside" + ], + "acronyms": [ + "UCR" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_California,_Riverside", + "labels": [ + { + "label": "Universidad de California en Riverside", + "iso639": "es" + }, + { + "label": "Université de Californie à Riverside", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.266097.c", + "preferred": "grid.266097.c" + }, + "ISNI": { + "all": [ + "0000 0001 2222 1582" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1075148" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03nw3dq29.json b/v1.47/v1/03nw3dq29.json new file mode 100644 index 000000000..676fdbd4c --- /dev/null +++ b/v1.47/v1/03nw3dq29.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/03nw3dq29", + "name": "Royal Botanic Garden Sydney", + "email_address": null, + "ip_addresses": [], + "established": 1816, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Australian Institute of Botanical Science", + "type": "Child", + "id": "https://ror.org/01d02zv78" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rbgsyd.nsw.gov.au/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Royal_Botanic_Garden,_Sydney", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.474185.b", + "preferred": "grid.474185.b" + }, + "ISNI": { + "all": [ + "0000 0001 0729 7490" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q54489" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03ny67e60.json b/v1.47/v1/03ny67e60.json new file mode 100644 index 000000000..7c38aad97 --- /dev/null +++ b/v1.47/v1/03ny67e60.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03ny67e60", + "name": "Institute of Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tribhuvan University", + "type": "Parent", + "id": "https://ror.org/02rg1r889" + } + ], + "addresses": [ + { + "lat": 27.67824, + "lng": 85.31685, + "state": null, + "state_code": null, + "city": "Pulchowk", + "geonames_city": { + "id": 8740352, + "city": "Pulchowk", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ioe.tu.edu.np" + ], + "aliases": [], + "acronyms": [ + "IOE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_of_Engineering", + "labels": [ + { + "label": "ईन्जिनियरिङ अध्ययन संस्थान", + "iso639": "ne" + } + ], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": { + "GRID": { + "all": "grid.509296.1", + "preferred": "grid.509296.1" + }, + "Wikidata": { + "all": [ + "Q16986440" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03nyfz802.json b/v1.47/v1/03nyfz802.json new file mode 100644 index 000000000..4ae7e532f --- /dev/null +++ b/v1.47/v1/03nyfz802.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03nyfz802", + "name": "Accra College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Ghana", + "type": "Related", + "id": "https://ror.org/01r22mr83" + } + ], + "addresses": [ + { + "lat": 5.55602, + "lng": -0.1969, + "state": null, + "state_code": null, + "city": "Accra", + "geonames_city": { + "id": 2306104, + "city": "Accra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://acce.edu.gh" + ], + "aliases": [ + "Accra Teacher Training College" + ], + "acronyms": [ + "ATTRACO", + "AcCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Accra_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996954" + ], + "preferred": "Q46996954" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03pkrdc36.json b/v1.47/v1/03pkrdc36.json new file mode 100644 index 000000000..4148abf8c --- /dev/null +++ b/v1.47/v1/03pkrdc36.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/03pkrdc36", + "name": "PacifiCan", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of Canada", + "type": "Parent", + "id": "https://ror.org/010q4q527" + } + ], + "addresses": [ + { + "lat": 49.24966, + "lng": -123.11934, + "state": null, + "state_code": null, + "city": "Vancouver", + "geonames_city": { + "id": 6173331, + "city": "Vancouver", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.canada.ca/en/pacific-economic-development.html" + ], + "aliases": [ + "Développement économique Canada pour le Pacifique", + "Pacific Economic Development, Canada" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q18093428" + ], + "preferred": "Q18093428" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03pr6rd29.json b/v1.47/v1/03pr6rd29.json new file mode 100644 index 000000000..3a6adf280 --- /dev/null +++ b/v1.47/v1/03pr6rd29.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03pr6rd29", + "name": "Educational and Rehabilitation Institution of Higher Education \"Kamianets-Podilskyi State Institute\"", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.67882, + "lng": 26.58516, + "state": null, + "state_code": null, + "city": "Kamianets-Podilskyi", + "geonames_city": { + "id": 706950, + "city": "Kamianets-Podilskyi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kpdi.edu.ua" + ], + "aliases": [ + "Kamianets-Podilskyi State Institute", + "Кам'янець-Подільський державний інститут" + ], + "acronyms": [ + "KDPI", + "KPSI" + ], + "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.47/v1/03q6t4s11.json b/v1.47/v1/03q6t4s11.json new file mode 100644 index 000000000..504b0a886 --- /dev/null +++ b/v1.47/v1/03q6t4s11.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03q6t4s11", + "name": "Presbyterian Women's College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1928, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.84802, + "lng": -0.17449, + "state": null, + "state_code": null, + "city": "Aburi", + "geonames_city": { + "id": 2306119, + "city": "Aburi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pwce.edu.gh" + ], + "aliases": [ + "Aburi Women's Teacher Training College" + ], + "acronyms": [ + "PWCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Presbyterian_Women%27s_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q28840538" + ], + "preferred": "Q28840538" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03qyv5w70.json b/v1.47/v1/03qyv5w70.json new file mode 100644 index 000000000..39005ce0c --- /dev/null +++ b/v1.47/v1/03qyv5w70.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03qyv5w70", + "name": "Institut de Recherche en Sciences Appliquées et Technologies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.36566, + "lng": -1.53388, + "state": null, + "state_code": null, + "city": "Ouagadougou", + "geonames_city": { + "id": 2357048, + "city": "Ouagadougou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnrst.bf/irsat" + ], + "aliases": [], + "acronyms": [ + "IRSAT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Burkina Faso", + "country_code": "BF" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/03r5zec51.json b/v1.47/v1/03r5zec51.json new file mode 100644 index 000000000..3c2a58096 --- /dev/null +++ b/v1.47/v1/03r5zec51.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/03r5zec51", + "name": "HES-SO Valais-Wallis", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + }, + { + "label": "Institute of Life Sciences", + "type": "Child", + "id": "https://ror.org/00x1rrc95" + } + ], + "addresses": [ + { + "lat": 46.22739, + "lng": 7.35559, + "state": null, + "state_code": null, + "city": "Sion", + "geonames_city": { + "id": 2658576, + "city": "Sion", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hevs.ch/en/" + ], + "aliases": [ + "University of Applied Sciences and Arts Western Switzerland Valais" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fachhochschule Westschweiz - Wallis", + "iso639": "de" + }, + { + "label": "Haute École Spécialisée de Suisse Occidentale - Valais", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.483301.d", + "preferred": "grid.483301.d" + }, + "ISNI": { + "all": [ + "0000 0004 0453 2100" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3128597" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03rc1y976.json b/v1.47/v1/03rc1y976.json new file mode 100644 index 000000000..bede28fb0 --- /dev/null +++ b/v1.47/v1/03rc1y976.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03rc1y976", + "name": "Buildwise", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.buildwise.be" + ], + "aliases": [ + "Belgian Building Research Institute", + "Centre scientifique et technique de la construction" + ], + "acronyms": [ + "BBRI", + "CSTC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "GRID": { + "all": "grid.424014.7", + "preferred": "grid.424014.7" + }, + "ISNI": { + "all": [ + "0000 0004 0371 1705" + ], + "preferred": "0000 0004 0371 1705" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03rhjfh75.json b/v1.47/v1/03rhjfh75.json new file mode 100644 index 000000000..d4cc588d7 --- /dev/null +++ b/v1.47/v1/03rhjfh75.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/03rhjfh75", + "name": "Institut des Sciences des Sociétés", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.36566, + "lng": -1.53388, + "state": null, + "state_code": null, + "city": "Ouagadougou", + "geonames_city": { + "id": 2357048, + "city": "Ouagadougou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.inss.gov.bf" + ], + "aliases": [], + "acronyms": [ + "INSS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Burkina Faso", + "country_code": "BF" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/03rmrcq20.json b/v1.47/v1/03rmrcq20.json new file mode 100644 index 000000000..6ffd393c1 --- /dev/null +++ b/v1.47/v1/03rmrcq20.json @@ -0,0 +1,170 @@ +{ + "id": "https://ror.org/03rmrcq20", + "name": "University of British Columbia", + "email_address": null, + "ip_addresses": [], + "established": 1908, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Bamfield Marine Sciences Centre", + "type": "Child", + "id": "https://ror.org/039cthy03" + }, + { + "label": "Pacific Institute for Climate Solutions", + "type": "Child", + "id": "https://ror.org/00hv6g197" + }, + { + "label": "B.C. Women's Hospital & Health Centre", + "type": "Related", + "id": "https://ror.org/05c4nx247" + }, + { + "label": "British Columbia Children's Hospital", + "type": "Related", + "id": "https://ror.org/04n901w50" + }, + { + "label": "Centre for Health Evaluation and Outcome Sciences", + "type": "Related", + "id": "https://ror.org/04g6gva85" + }, + { + "label": "GF Strong Rehabilitation Centre", + "type": "Related", + "id": "https://ror.org/02d4smc03" + }, + { + "label": "Kelowna General Hospital", + "type": "Related", + "id": "https://ror.org/01j25h453" + }, + { + "label": "Penticton Regional Hospital", + "type": "Related", + "id": "https://ror.org/02g83kd39" + }, + { + "label": "Richmond Hospital", + "type": "Related", + "id": "https://ror.org/01wm3xb93" + }, + { + "label": "Royal Inland Hospital", + "type": "Related", + "id": "https://ror.org/02c1pgm26" + }, + { + "label": "St. Paul's Hospital", + "type": "Related", + "id": "https://ror.org/00wzdr059" + }, + { + "label": "University of British Columbia Hospital", + "type": "Related", + "id": "https://ror.org/00frst980" + }, + { + "label": "Vancouver General Hospital", + "type": "Related", + "id": "https://ror.org/02zg69r60" + }, + { + "label": "Vancouver Hospital and Health Sciences Centre", + "type": "Related", + "id": "https://ror.org/05p83my93" + }, + { + "label": "Vernon Jubilee Hospital", + "type": "Related", + "id": "https://ror.org/05pw47n55" + } + ], + "addresses": [ + { + "lat": 49.24966, + "lng": -123.11934, + "state": null, + "state_code": null, + "city": "Vancouver", + "geonames_city": { + "id": 6173331, + "city": "Vancouver", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ubc.ca/" + ], + "aliases": [], + "acronyms": [ + "UBC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_British_Columbia", + "labels": [ + { + "label": "Université de la colombie-britannique", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.17091.3e", + "preferred": "grid.17091.3e" + }, + "ISNI": { + "all": [ + "0000 0001 2288 9830" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q391028", + "Q3551709" + ], + "preferred": "Q391028" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03rnk6m14.json b/v1.47/v1/03rnk6m14.json new file mode 100644 index 000000000..0cb51c351 --- /dev/null +++ b/v1.47/v1/03rnk6m14.json @@ -0,0 +1,180 @@ +{ + "id": "https://ror.org/03rnk6m14", + "name": "Institut Agro Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1842, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Diversity, Genomes and Insects-Microorganisms Interactions", + "type": "Child", + "id": "https://ror.org/03q1qx424" + }, + { + "label": "Functional Ecology and Biogeochemistry of Soils and Agrosystems", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "Child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "type": "Child", + "id": "https://ror.org/03fte3n86" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Mathématiques, Informatique et Statistique pour l'Environnement et l'Agronomie", + "type": "Child", + "id": "https://ror.org/01pd2sz18" + }, + { + "label": "Sciences pour L’Œnologie", + "type": "Child", + "id": "https://ror.org/04w07sc25" + }, + { + "label": "Tropical and Mediterranean Animal Production Systems", + "type": "Child", + "id": "https://ror.org/05merjr74" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "Child", + "id": "https://ror.org/03kbarg82" + }, + { + "label": "Languedoc-Roussillon Universities", + "type": "Parent", + "id": "https://ror.org/04f6hmf16" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "L'Institut Agro", + "type": "Parent", + "id": "https://ror.org/01dkyve95" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.institut-agro-montpellier.fr" + ], + "aliases": [ + "Montpellier SupAgro", + "SupAgro" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre international d'études supérieures en sciences agronomiques", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.434209.8", + "preferred": "grid.434209.8" + }, + "ISNI": { + "all": [ + "0000 0001 2172 5332" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945808" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03rsncr94.json b/v1.47/v1/03rsncr94.json new file mode 100644 index 000000000..a0977d85e --- /dev/null +++ b/v1.47/v1/03rsncr94.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/03rsncr94", + "name": "4TU", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Delft University of Technology", + "type": "Related", + "id": "https://ror.org/02e2c7k09" + }, + { + "label": "Eindhoven University of Technology", + "type": "Related", + "id": "https://ror.org/02c2kyt77" + }, + { + "label": "University of Twente", + "type": "Related", + "id": "https://ror.org/006hf6230" + }, + { + "label": "Wageningen University & Research", + "type": "Related", + "id": "https://ror.org/04qw24q55" + }, + { + "label": "4TU.ResearchData", + "type": "Child", + "id": "https://ror.org/02d887280" + } + ], + "addresses": [ + { + "lat": 52.00667, + "lng": 4.35556, + "state": null, + "state_code": null, + "city": "Delft", + "geonames_city": { + "id": 2757345, + "city": "Delft", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.4tu.nl" + ], + "aliases": [ + "4TU.Federation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/4TU", + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q2407703" + ], + "preferred": "Q2407703" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03rth4p18.json b/v1.47/v1/03rth4p18.json new file mode 100644 index 000000000..6f253c978 --- /dev/null +++ b/v1.47/v1/03rth4p18.json @@ -0,0 +1,277 @@ +{ + "id": "https://ror.org/03rth4p18", + "name": "Lumière University Lyon 2", + "email_address": null, + "ip_addresses": [], + "established": 1835, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Archéologie et Archéométrie", + "type": "Child", + "id": "https://ror.org/02bq56641" + }, + { + "label": "Archéorient", + "type": "Child", + "id": "https://ror.org/059xs3104" + }, + { + "label": "Center for Research in Psychopathology and Clinical Psychology", + "type": "Child", + "id": "https://ror.org/04bsn3y16" + }, + { + "label": "Centre Max Weber", + "type": "Child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Recherche en Linguistique Appliquée", + "type": "Child", + "id": "https://ror.org/048z48z46" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "Child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Conception de l'Action en Situation", + "type": "Child", + "id": "https://ror.org/0476zq753" + }, + { + "label": "Decision & Information Sciences for Production Systems", + "type": "Child", + "id": "https://ror.org/02stf8w13" + }, + { + "label": "Droits, Contrats et Territoires", + "type": "Child", + "id": "https://ror.org/03cccec37" + }, + { + "label": "Education, Cultures, Politiques", + "type": "Child", + "id": "https://ror.org/037xc1874" + }, + { + "label": "Entrepôts, Représentation et Ingénierie des Connaissances", + "type": "Child", + "id": "https://ror.org/009frb846" + }, + { + "label": "Environment, City, Society", + "type": "Child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Equipe de recherche de Lyon en Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/04y24xj84" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "type": "Child", + "id": "https://ror.org/042fmc481" + }, + { + "label": "Groupe de Recherche en Psychologie Sociale", + "type": "Child", + "id": "https://ror.org/028cp7y71" + }, + { + "label": "Histoire et Sources des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/01yx7av22" + }, + { + "label": "Histoire, Archéologie, Littératures des Mondes Chrétiens et Musulmans Médiévaux", + "type": "Child", + "id": "https://ror.org/05mqwtr17" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "Child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "Child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Interactions, Corpus, Apprentissages, Représentations", + "type": "Child", + "id": "https://ror.org/04mn0nr69" + }, + { + "label": "Laboratoire Aménagement Économie Transports", + "type": "Child", + "id": "https://ror.org/01yw97595" + }, + { + "label": "Laboratoire Dynamique du Langage", + "type": "Child", + "id": "https://ror.org/01fvx3s14" + }, + { + "label": "Laboratoire Passages XX_XXI", + "type": "Child", + "id": "https://ror.org/048ryj409" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratoire d’Étude des Mécanismes Cognitifs", + "type": "Child", + "id": "https://ror.org/0061rmm93" + }, + { + "label": "Laboratory of Rural Studies", + "type": "Child", + "id": "https://ror.org/00rj8cd91" + }, + { + "label": "Langues et Cultures Européennes", + "type": "Child", + "id": "https://ror.org/051br2d77" + }, + { + "label": "Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles", + "type": "Child", + "id": "https://ror.org/04rkh0096" + }, + { + "label": "Lyons Institute of East Asian Studies", + "type": "Child", + "id": "https://ror.org/007dy3y92" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-lyon2.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Lumi%C3%A8re_University_Lyon_2", + "labels": [ + { + "label": "Université Lumière Lyon 2", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.72960.3a", + "preferred": "grid.72960.3a" + }, + "ISNI": { + "all": [ + "0000 0001 2188 0906" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4041" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03rvjk961.json b/v1.47/v1/03rvjk961.json new file mode 100644 index 000000000..ef3117a42 --- /dev/null +++ b/v1.47/v1/03rvjk961.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/03rvjk961", + "name": "Urasoe General Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 26.25106, + "lng": 127.71512, + "state": null, + "state_code": null, + "city": "Urasoe Shi", + "geonames_city": { + "id": 1849184, + "city": "Urasoe Shi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://jin-aikai.com/urasoe/" + ], + "aliases": [ + "Urasoe Sougou Byouin", + "Urasoe Sōgō Byōin", + "うらそえそうごうびょういん", + "ウラソエソウゴウビョウイン", + "浦添総合病院" + ], + "acronyms": [ + "UGH" + ], + "status": "active", + "wikipedia_url": "https://ja.wikipedia.org/wiki/%E6%B5%A6%E6%B7%BB%E7%B7%8F%E5%90%88%E7%97%85%E9%99%A2", + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0642 5624" + ], + "preferred": "0000 0004 0642 5624" + }, + "Wikidata": { + "all": [ + "Q22130232" + ], + "preferred": "Q22130232" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03rvwhn52.json b/v1.47/v1/03rvwhn52.json new file mode 100644 index 000000000..2861e1127 --- /dev/null +++ b/v1.47/v1/03rvwhn52.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/03rvwhn52", + "name": "Centre d'études et de recherche sur les contentieux", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Toulon", + "type": "Parent", + "id": "https://ror.org/02m9kbe37" + } + ], + "addresses": [ + { + "lat": 43.12442, + "lng": 5.92836, + "state": null, + "state_code": null, + "city": "Toulon", + "geonames_city": { + "id": 2972328, + "city": "Toulon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cerc.univ-tln.fr" + ], + "aliases": [], + "acronyms": [ + "CERC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2172 1745" + ], + "preferred": "0000 0001 2172 1745" + }, + "Wikidata": { + "all": [ + "Q51785362" + ], + "preferred": "Q51785362" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03s65by71.json b/v1.47/v1/03s65by71.json new file mode 100644 index 000000000..39d783d00 --- /dev/null +++ b/v1.47/v1/03s65by71.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/03s65by71", + "name": "University of California, Santa Cruz", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "QB3", + "type": "Child", + "id": "https://ror.org/04n1n3n22" + }, + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Moorea Coral Reef Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/017vyhs10" + }, + { + "label": "Northern Gulf of Alaska Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/01csn4944" + } + ], + "addresses": [ + { + "lat": 36.97412, + "lng": -122.0308, + "state": null, + "state_code": null, + "city": "Santa Cruz", + "geonames_city": { + "id": 5393052, + "city": "Santa Cruz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ucsc.edu" + ], + "aliases": [ + "UC Santa Cruz" + ], + "acronyms": [ + "UCSC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_California,_Santa_Cruz", + "labels": [ + { + "label": "Universidad de California en Santa Cruz", + "iso639": "es" + }, + { + "label": "Université de Californie à Santa Cruz", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.205975.c", + "preferred": "grid.205975.c" + }, + "ISNI": { + "all": [ + "0000 0001 0740 6917" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1047293", + "Q7419417" + ], + "preferred": "Q1047293" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03s9yme23.json b/v1.47/v1/03s9yme23.json new file mode 100644 index 000000000..3617c948c --- /dev/null +++ b/v1.47/v1/03s9yme23.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03s9yme23", + "name": "Regional Research Library in Liberec", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Liberec Region", + "type": "Parent", + "id": "https://ror.org/0192yc246" + } + ], + "addresses": [ + { + "lat": 50.76711, + "lng": 15.05619, + "state": null, + "state_code": null, + "city": "Liberec", + "geonames_city": { + "id": 3071961, + "city": "Liberec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kvkli.cz" + ], + "aliases": [], + "acronyms": [ + "KVKLI" + ], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Krajsk%C3%A1_v%C4%9Bdeck%C3%A1_knihovna_v_Liberci", + "labels": [ + { + "label": "Krajská vědecká knihovna v Liberci, příspěvková organizace", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0790 2056" + ], + "preferred": "0000 0001 0790 2056" + }, + "Wikidata": { + "all": [ + "Q2586219" + ], + "preferred": "Q2586219" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03scrf030.json b/v1.47/v1/03scrf030.json new file mode 100644 index 000000000..6f69866d6 --- /dev/null +++ b/v1.47/v1/03scrf030.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03scrf030", + "name": "ProMedica Toledo Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1874, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.66394, + "lng": -83.55521, + "state": null, + "state_code": null, + "city": "Toledo", + "geonames_city": { + "id": 5174035, + "city": "Toledo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.promedica.org/locations-and-doctors/location/hospital/promedica-toledo-hospital" + ], + "aliases": [ + "Toledo Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Toledo_Hospital", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.417156.0", + "preferred": "grid.417156.0" + }, + "ISNI": { + "all": [ + "0000 0000 8533 6777" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7769510" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03svzcs16.json b/v1.47/v1/03svzcs16.json new file mode 100644 index 000000000..98b9cc48f --- /dev/null +++ b/v1.47/v1/03svzcs16.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/03svzcs16", + "name": "Ministry of Economy, Entrepreneurship and Crafts", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of Economy and Sustainable Development", + "type": "Successor", + "id": "https://ror.org/059c5gz18" + } + ], + "addresses": [ + { + "lat": 45.81444, + "lng": 15.97798, + "state": null, + "state_code": null, + "city": "Zagreb", + "geonames_city": { + "id": 3186886, + "city": "Zagreb", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mingo.hr/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Economy,_Entrepreneurship_and_Crafts_(Croatia)", + "labels": [ + { + "label": "Ministarstvo Gospodarstva, Podruzeništva i Obrta", + "iso639": "hr" + } + ], + "country": { + "country_name": "Croatia", + "country_code": "HR" + }, + "external_ids": { + "GRID": { + "all": "grid.494299.b", + "preferred": "grid.494299.b" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03sws5s65.json b/v1.47/v1/03sws5s65.json new file mode 100644 index 000000000..4833bef9a --- /dev/null +++ b/v1.47/v1/03sws5s65.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/03sws5s65", + "name": "Ministry of SMEs and Startups", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.59313, + "lng": 127.29661, + "state": null, + "state_code": null, + "city": "Sejong-Si", + "geonames_city": { + "id": 8659242, + "city": "Sejong-Si", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mss.go.kr" + ], + "aliases": [ + "Ministry of Small and Medium-sized Enterprises (SMEs) and Startups", + "Ministry of Small and Medium-sized Enterprises and Startups" + ], + "acronyms": [ + "MSS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_SMEs_and_Startups", + "labels": [ + { + "label": "중소벤처기업부", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7856 1326" + ], + "preferred": "0000 0004 7856 1326" + }, + "Wikidata": { + "all": [ + "Q33390102" + ], + "preferred": "Q33390102" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03tba1v94.json b/v1.47/v1/03tba1v94.json new file mode 100644 index 000000000..2cb48eb9d --- /dev/null +++ b/v1.47/v1/03tba1v94.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03tba1v94", + "name": "Federal Rostov Agrarian Research Centre", + "email_address": null, + "ip_addresses": [], + "established": 1932, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.25838, + "lng": 39.86675, + "state": null, + "state_code": null, + "city": "Aksay", + "geonames_city": { + "id": 583673, + "city": "Aksay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://xn--80ag4abjdei4b.xn--p1ai" + ], + "aliases": [ + "Don Zonal Scientific Research Institute of Agriculture", + "Донской зональный научно - исследовательский институт сельского хозяйства" + ], + "acronyms": [ + "FGBIU \"DZNIISH\"", + "ФГБНУ «ДЗНИИСХ»" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Федеральный Ростовский Аграрный Научный Центр", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.495127.c", + "preferred": "grid.495127.c" + }, + "Wikidata": { + "all": [ + "Q52843163" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03ts7z477.json b/v1.47/v1/03ts7z477.json new file mode 100644 index 000000000..821cd3070 --- /dev/null +++ b/v1.47/v1/03ts7z477.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03ts7z477", + "name": "Institute of Radiation Physics", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University Hospital of Lausanne", + "type": "Parent", + "id": "https://ror.org/05a353079" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chuv.ch/fr/ira/ira-home/" + ], + "aliases": [ + "CHUV Institut de radiophysique" + ], + "acronyms": [ + "IRA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut de radiophysique", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/03vsc0s28.json b/v1.47/v1/03vsc0s28.json new file mode 100644 index 000000000..c0fe4942d --- /dev/null +++ b/v1.47/v1/03vsc0s28.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/03vsc0s28", + "name": "Fondation CentraleSupélec", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [ + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fondation-centralesupelec.fr" + ], + "aliases": [ + "CentraleSupélec Foundation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/03vyzg221.json b/v1.47/v1/03vyzg221.json new file mode 100644 index 000000000..aa134a64e --- /dev/null +++ b/v1.47/v1/03vyzg221.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03vyzg221", + "name": "Molecular and Atmospheric Spectrometry Group", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-reims.fr/site/laboratoire-labellise/groupe-de-spectrometrie-moleculaire-et-atmospherique-umr-cnrs-6089/actualites,9553.html?" + ], + "aliases": [], + "acronyms": [ + "GSMA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Groupe de Spectrométrie Moléculaire et Atmosphérique", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462314.6", + "preferred": "grid.462314.6" + }, + "ISNI": { + "all": [ + "0000 0004 0385 1361" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03wx0vn75.json b/v1.47/v1/03wx0vn75.json new file mode 100644 index 000000000..a000d3368 --- /dev/null +++ b/v1.47/v1/03wx0vn75.json @@ -0,0 +1,141 @@ +{ + "id": "https://ror.org/03wx0vn75", + "name": "CentrEau - Quebec Water Management Research Centre", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Cegep de Sainte Foy", + "type": "Related", + "id": "https://ror.org/047f73w76" + }, + { + "label": "Cégep de Saint-Laurent", + "type": "Related", + "id": "https://ror.org/01zzvpv85" + }, + { + "label": "Institut National de la Recherche Scientifique", + "type": "Related", + "id": "https://ror.org/04td37d32" + }, + { + "label": "McGill University", + "type": "Related", + "id": "https://ror.org/01pxwe438" + }, + { + "label": "Polytechnique Montréal", + "type": "Related", + "id": "https://ror.org/05f8d4e86" + }, + { + "label": "Université de Montréal", + "type": "Related", + "id": "https://ror.org/0161xgx34" + }, + { + "label": "Université du Québec à Montréal", + "type": "Related", + "id": "https://ror.org/002rjbv21" + }, + { + "label": "Université de Sherbrooke", + "type": "Related", + "id": "https://ror.org/00kybxq39" + }, + { + "label": "Université du Québec à Trois-Rivières", + "type": "Related", + "id": "https://ror.org/02xrw9r68" + }, + { + "label": "École de Technologie Supérieure", + "type": "Related", + "id": "https://ror.org/0020snb74" + }, + { + "label": "Université Laval", + "type": "Parent", + "id": "https://ror.org/04sjchr03" + } + ], + "addresses": [ + { + "lat": 46.81228, + "lng": -71.21454, + "state": null, + "state_code": null, + "city": "Québec", + "geonames_city": { + "id": 6325494, + "city": "Québec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://centreau.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "CentrEau - Centre Québécois de Recherche sur la Gestion de l'Eau", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.510055.4", + "preferred": "grid.510055.4" + }, + "ISNI": { + "all": [ + "0000 0001 2325 4562" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03x57gn41.json b/v1.47/v1/03x57gn41.json new file mode 100644 index 000000000..54a5b9689 --- /dev/null +++ b/v1.47/v1/03x57gn41.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/03x57gn41", + "name": "Australian Institute of Marine Science", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Marine Biodiversity Hub", + "type": "Related", + "id": "https://ror.org/00jwcjd97" + }, + { + "label": "Integrated Marine Observing System", + "type": "Related", + "id": "https://ror.org/010x3gp67" + }, + { + "label": "Department of Climate Change, Energy, the Environment and Water", + "type": "Parent", + "id": "https://ror.org/01db6n192" + } + ], + "addresses": [ + { + "lat": -19.26639, + "lng": 146.80569, + "state": null, + "state_code": null, + "city": "Townsville", + "geonames_city": { + "id": 2146142, + "city": "Townsville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aims.gov.au" + ], + "aliases": [], + "acronyms": [ + "AIMS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Australian_Institute_of_Marine_Science", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1046.3", + "preferred": "grid.1046.3" + }, + "ISNI": { + "all": [ + "0000 0001 0328 1619" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4824311" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03xfh2n14.json b/v1.47/v1/03xfh2n14.json new file mode 100644 index 000000000..ea3a77a9e --- /dev/null +++ b/v1.47/v1/03xfh2n14.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03xfh2n14", + "name": "Språkbanken Text", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Språkbanken", + "type": "Parent", + "id": "https://ror.org/05qhvy459" + } + ], + "addresses": [ + { + "lat": 57.70716, + "lng": 11.96679, + "state": null, + "state_code": null, + "city": "Gothenburg", + "geonames_city": { + "id": 2711537, + "city": "Gothenburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://spraakbanken.gu.se" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://sv.wikipedia.org/wiki/Spr%C3%A5kbanken_Text", + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q10676637" + ], + "preferred": "Q10676637" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03yrm5c26.json b/v1.47/v1/03yrm5c26.json new file mode 100644 index 000000000..eb4df4c32 --- /dev/null +++ b/v1.47/v1/03yrm5c26.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03yrm5c26", + "name": "California Digital Library", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + } + ], + "addresses": [ + { + "lat": 37.80437, + "lng": -122.2708, + "state": null, + "state_code": null, + "city": "Oakland", + "geonames_city": { + "id": 5378538, + "city": "Oakland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cdlib.org" + ], + "aliases": [], + "acronyms": [ + "CDL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/California_Digital_Library", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.463323.3", + "preferred": "grid.463323.3" + }, + "ISNI": { + "all": [ + "0000 0001 1957 5136" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5020447" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03z0nnr82.json b/v1.47/v1/03z0nnr82.json new file mode 100644 index 000000000..3398098b1 --- /dev/null +++ b/v1.47/v1/03z0nnr82.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03z0nnr82", + "name": "Global Frontier Hybrid Interface Materials", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.13333, + "lng": 129.05, + "state": null, + "state_code": null, + "city": "Busan", + "geonames_city": { + "id": 1838519, + "city": "Busan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.gfhim.re.kr" + ], + "aliases": [ + "Hybrid Interface Materials" + ], + "acronyms": [ + "GFHIM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q112085383" + ], + "preferred": "Q112085383" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03zek0r74.json b/v1.47/v1/03zek0r74.json new file mode 100644 index 000000000..3cd0094ae --- /dev/null +++ b/v1.47/v1/03zek0r74.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/03zek0r74", + "name": "Institut Agro Dijon", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Agroecology", + "type": "Child", + "id": "https://ror.org/00mkad321" + }, + { + "label": "Biogéosciences", + "type": "Child", + "id": "https://ror.org/04mzqjs78" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "Child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Maison des Sciences de l’Homme de Dijon", + "type": "Child", + "id": "https://ror.org/04ejcwb57" + }, + { + "label": "Procédés Alimentaires et Microbiologiques", + "type": "Child", + "id": "https://ror.org/00zgas264" + }, + { + "label": "L'Institut Agro", + "type": "Parent", + "id": "https://ror.org/01dkyve95" + } + ], + "addresses": [ + { + "lat": 47.31667, + "lng": 5.01667, + "state": null, + "state_code": null, + "city": "Dijon", + "geonames_city": { + "id": 3021372, + "city": "Dijon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://institut-agro-dijon.fr" + ], + "aliases": [ + "AgroSup Dijon", + "Institut national Supérieur des Sciences Agronomiques, de l'Alimentation et de l'Environnement" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.420114.2", + "preferred": "grid.420114.2" + }, + "ISNI": { + "all": [ + "0000 0001 2299 7292" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q8077943" + ], + "preferred": "Q8077943" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/03zga2b32.json b/v1.47/v1/03zga2b32.json new file mode 100644 index 000000000..5ee2c4b27 --- /dev/null +++ b/v1.47/v1/03zga2b32.json @@ -0,0 +1,128 @@ +{ + "id": "https://ror.org/03zga2b32", + "name": "University of Bergen", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Simula UiB", + "type": "Child", + "id": "https://ror.org/05kmggt55" + }, + { + "label": "Haukeland University Hospital", + "type": "Related", + "id": "https://ror.org/03np4e098" + }, + { + "label": "European Marine Biological Resource Centre", + "type": "Related", + "id": "https://ror.org/0038zss60" + }, + { + "label": "L. Meltzers Høyskolefond", + "type": "Related", + "id": "https://ror.org/02rec2820" + }, + { + "label": "NorESM Climate Modeling Consortium", + "type": "Related", + "id": "https://ror.org/02grwav03" + } + ], + "addresses": [ + { + "lat": 60.39299, + "lng": 5.32415, + "state": null, + "state_code": null, + "city": "Bergen", + "geonames_city": { + "id": 3161732, + "city": "Bergen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uib.no/" + ], + "aliases": [], + "acronyms": [ + "UiB" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Bergen", + "labels": [ + { + "label": "Bergenin Yliopisto", + "iso639": "fi" + }, + { + "label": "Universitas Bergensis", + "iso639": "la" + }, + { + "label": "Universitetet i Bergen", + "iso639": "no" + } + ], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "GRID": { + "all": "grid.7914.b", + "preferred": "grid.7914.b" + }, + "ISNI": { + "all": [ + "0000 0004 1936 7443" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q204457", + "Q497212" + ], + "preferred": "Q204457" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/040qrz805.json b/v1.47/v1/040qrz805.json new file mode 100644 index 000000000..9288b42b9 --- /dev/null +++ b/v1.47/v1/040qrz805.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/040qrz805", + "name": "Vysoká škola evropských a regionálních studií, z. ú.", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://vsers.cz/" + ], + "aliases": [ + "College of European and Regional Studies", + "Vysoká škola evropských a regionálních studií" + ], + "acronyms": [ + "VŠERS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "The College of European and Regional Studies", + "iso639": "en" + }, + { + "label": "Vysoká škola Evropských a Regionálních Studií", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.486536.a", + "preferred": "grid.486536.a" + }, + "ISNI": { + "all": [ + "0000 0000 9364 6708" + ], + "preferred": "0000 0000 9364 6708" + }, + "Wikidata": { + "all": [ + "Q8310981" + ], + "preferred": "Q8310981" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/040sq8567.json b/v1.47/v1/040sq8567.json new file mode 100644 index 000000000..26100431b --- /dev/null +++ b/v1.47/v1/040sq8567.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/040sq8567", + "name": "Canal Savoir", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.50884, + "lng": -73.58781, + "state": null, + "state_code": null, + "city": "Montreal", + "geonames_city": { + "id": 6077243, + "city": "Montreal", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://savoir.media" + ], + "aliases": [], + "acronyms": [ + "CFTU-DT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CFTU-DT", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.459238.1", + "preferred": "grid.459238.1" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/040yeqy86.json b/v1.47/v1/040yeqy86.json new file mode 100644 index 000000000..61e6d1e02 --- /dev/null +++ b/v1.47/v1/040yeqy86.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/040yeqy86", + "name": "Ludovika University of Public Service", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.49835, + "lng": 19.04045, + "state": null, + "state_code": null, + "city": "Budapest", + "geonames_city": { + "id": 3054643, + "city": "Budapest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uni-nke.hu" + ], + "aliases": [ + "National University of Public Service", + "University of Public Service" + ], + "acronyms": [ + "NKE", + "UPS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_University_of_Public_Service", + "labels": [ + { + "label": "Nemzeti Közszolgálati Egyetem", + "iso639": "hu" + } + ], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "external_ids": { + "GRID": { + "all": "grid.440532.4", + "preferred": "grid.440532.4" + }, + "ISNI": { + "all": [ + "0000 0004 1793 3763" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q12815487" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/041agrq44.json b/v1.47/v1/041agrq44.json new file mode 100644 index 000000000..58de0cb3e --- /dev/null +++ b/v1.47/v1/041agrq44.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/041agrq44", + "name": "Senate", + "email_address": null, + "ip_addresses": [], + "established": 1815, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.07667, + "lng": 4.29861, + "state": null, + "state_code": null, + "city": "The Hague", + "geonames_city": { + "id": 2747373, + "city": "The Hague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.eerstekamer.nl/begrip/english_2" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Senate_(Netherlands)", + "labels": [ + { + "label": "Eerste Kamer der Staten-Generaal", + "iso639": "nl" + } + ], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "GRID": { + "all": "grid.465164.4", + "preferred": "grid.465164.4" + }, + "ISNI": { + "all": [ + "0000 0004 0621 2610" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/041v96n47.json b/v1.47/v1/041v96n47.json new file mode 100644 index 000000000..e770a76ae --- /dev/null +++ b/v1.47/v1/041v96n47.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/041v96n47", + "name": "Centre hospitalier de l'Université Laval", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Université Laval", + "type": "Related", + "id": "https://ror.org/04sjchr03" + }, + { + "label": "Centre hospitalier universitaire de Québec", + "type": "Parent", + "id": "https://ror.org/006a7pj43" + } + ], + "addresses": [ + { + "lat": 46.81228, + "lng": -71.21454, + "state": null, + "state_code": null, + "city": "Québec", + "geonames_city": { + "id": 6325494, + "city": "Québec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chudequebec.ca/centre-hospitaliers/centre-hospitalier-de-universite-laval-chul.aspx" + ], + "aliases": [], + "acronyms": [ + "CHUL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Centre_hospitalier_de_l'Universit%C3%A9_Laval", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.411065.7", + "preferred": "grid.411065.7" + }, + "ISNI": { + "all": [ + "0000 0001 0013 6651" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5062638" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/041wgbs27.json b/v1.47/v1/041wgbs27.json new file mode 100644 index 000000000..14d7f9a21 --- /dev/null +++ b/v1.47/v1/041wgbs27.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/041wgbs27", + "name": "Clienia AG", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.27049, + "lng": 8.72023, + "state": null, + "state_code": null, + "city": "Oetwil", + "geonames_city": { + "id": 2659307, + "city": "Oetwil", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.clienia.ch" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0602 5452" + ], + "preferred": "0000 0004 0602 5452" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/041yqj635.json b/v1.47/v1/041yqj635.json new file mode 100644 index 000000000..8a483443c --- /dev/null +++ b/v1.47/v1/041yqj635.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/041yqj635", + "name": "Steel Authority of India Limited", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.65195, + "lng": 77.23149, + "state": null, + "state_code": null, + "city": "Delhi", + "geonames_city": { + "id": 1273294, + "city": "Delhi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sail.co.in" + ], + "aliases": [ + "Steel Authority of India Ltd.", + "भारतीय इस्पात प्राधिकरण" + ], + "acronyms": [ + "SAIL", + "होम" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Steel_Authority_of_India_Limited", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2297 4787" + ], + "preferred": "0000 0001 2297 4787" + }, + "Wikidata": { + "all": [ + "Q1371239" + ], + "preferred": "Q1371239" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0420bzz85.json b/v1.47/v1/0420bzz85.json new file mode 100644 index 000000000..9ca7f258d --- /dev/null +++ b/v1.47/v1/0420bzz85.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/0420bzz85", + "name": "Universitas Pembangunan Nasional Veteran Yogyakarta", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -7.71556, + "lng": 110.35556, + "state": null, + "state_code": null, + "city": "Sleman", + "geonames_city": { + "id": 1626754, + "city": "Sleman", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.upnyk.ac.id" + ], + "aliases": [ + "UPN Veteran" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "GRID": { + "all": "grid.444318.e", + "preferred": "grid.444318.e" + }, + "ISNI": { + "all": [ + "0000 0004 1759 5637" + ], + "preferred": "0000 0004 1759 5637" + }, + "Wikidata": { + "all": [ + "Q12523429" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/042aqky30.json b/v1.47/v1/042aqky30.json new file mode 100644 index 000000000..dd8823e5e --- /dev/null +++ b/v1.47/v1/042aqky30.json @@ -0,0 +1,170 @@ +{ + "id": "https://ror.org/042aqky30", + "name": "TU Dresden", + "email_address": null, + "ip_addresses": [], + "established": 1828, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Systems Biology Dresden", + "type": "Child", + "id": "https://ror.org/05hrn3e05" + }, + { + "label": "Complexity and Topology in Quantum Matter", + "type": "Child", + "id": "https://ror.org/00kkpv737" + }, + { + "label": "Förderverein Institut für Medizintechnik Dresden", + "type": "Child", + "id": "https://ror.org/04wn6w972" + }, + { + "label": "Institut für Holztechnologie Dresden", + "type": "Child", + "id": "https://ror.org/00me29179" + }, + { + "label": "Institute of Automation", + "type": "Child", + "id": "https://ror.org/056qj1t15" + }, + { + "label": "NaMLab (Germany)", + "type": "Child", + "id": "https://ror.org/028070c57" + }, + { + "label": "Paul Langerhans Institute Dresden", + "type": "Child", + "id": "https://ror.org/05ke5hb07" + }, + { + "label": "TransDeN Lab", + "type": "Child", + "id": "https://ror.org/01dj9qb53" + }, + { + "label": "Nationales Centrum für Tumorerkrankungen Dresden", + "type": "Child", + "id": "https://ror.org/01zy07c70" + }, + { + "label": "Carl-Thiem-Klinikum Cottbus", + "type": "Related", + "id": "https://ror.org/044fhy270" + }, + { + "label": "Klinikum Görlitz", + "type": "Related", + "id": "https://ror.org/00qcpjs09" + }, + { + "label": "Krankenhaus Dresden-Friedrichstadt", + "type": "Related", + "id": "https://ror.org/035xba693" + }, + { + "label": "University Hospital Carl Gustav Carus", + "type": "Related", + "id": "https://ror.org/04za5zm41" + }, + { + "label": "TU9", + "type": "Related", + "id": "https://ror.org/02nx8n605" + }, + { + "label": "Hannah-Arendt-Institut für Totalitarismusforschung e.V. an der TU Dresden", + "type": "Related", + "id": "https://ror.org/042wjdg05" + } + ], + "addresses": [ + { + "lat": 51.05089, + "lng": 13.73832, + "state": null, + "state_code": null, + "city": "Dresden", + "geonames_city": { + "id": 2935022, + "city": "Dresden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tu-dresden.de" + ], + "aliases": [], + "acronyms": [ + "TUD" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Dresden_University_of_Technology", + "labels": [ + { + "label": "Technische Universität Dresden", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.4488.0", + "preferred": "grid.4488.0" + }, + "ISNI": { + "all": [ + "0000 0001 2111 7257" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q158158", + "Q31837129" + ], + "preferred": "Q158158" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/042t83k43.json b/v1.47/v1/042t83k43.json new file mode 100644 index 000000000..b0d1b9815 --- /dev/null +++ b/v1.47/v1/042t83k43.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/042t83k43", + "name": "Délégation Midi Pyrénées", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre d'Étude et de Recherche Travail Organisation Pouvoir", + "type": "Child", + "id": "https://ror.org/02hbzmb19" + }, + { + "label": "Laboratoire Dynamique de la Biodiversité", + "type": "Child", + "id": "https://ror.org/03f4xj038" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnrs.fr/midi-pyrenees/" + ], + "aliases": [], + "acronyms": [ + "DR14" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457025.1", + "preferred": "grid.457025.1" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/042wjdg05.json b/v1.47/v1/042wjdg05.json new file mode 100644 index 000000000..2c65f07f2 --- /dev/null +++ b/v1.47/v1/042wjdg05.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/042wjdg05", + "name": "Hannah-Arendt-Institut für Totalitarismusforschung e.V. an der TU Dresden", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "TU Dresden", + "type": "Related", + "id": "https://ror.org/042aqky30" + } + ], + "addresses": [ + { + "lat": 51.05089, + "lng": 13.73832, + "state": null, + "state_code": null, + "city": "Dresden", + "geonames_city": { + "id": 2935022, + "city": "Dresden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hait.tu-dresden.de" + ], + "aliases": [ + "Hannah Arendt Institute for Totalitarianism Studies" + ], + "acronyms": [ + "HAIT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hannah_Arendt_Institute_for_Totalitarianism_Studies", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0663 7844" + ], + "preferred": "0000 0001 0663 7844" + }, + "Wikidata": { + "all": [ + "Q1575772" + ], + "preferred": "Q1575772" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/042zvmz29.json b/v1.47/v1/042zvmz29.json new file mode 100644 index 000000000..bf74a91d1 --- /dev/null +++ b/v1.47/v1/042zvmz29.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/042zvmz29", + "name": "Bindura University of Science Education", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -17.30192, + "lng": 31.33056, + "state": null, + "state_code": null, + "city": "Bindura", + "geonames_city": { + "id": 895061, + "city": "Bindura", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.buse.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "BUSE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bindura_University_of_Science_Education", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.469393.2", + "preferred": "grid.469393.2" + }, + "ISNI": { + "all": [ + "0000 0004 0648 4659" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4914065" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0431j1t39.json b/v1.47/v1/0431j1t39.json new file mode 100644 index 000000000..7006905cf --- /dev/null +++ b/v1.47/v1/0431j1t39.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/0431j1t39", + "name": "University of Iowa Health Care", + "email_address": null, + "ip_addresses": [], + "established": 1904, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Iowa", + "type": "Parent", + "id": "https://ror.org/036jqmy94" + }, + { + "label": "University of Iowa Stead Family Children’s Hospital", + "type": "Child", + "id": "https://ror.org/0184n5y84" + } + ], + "addresses": [ + { + "lat": 41.66113, + "lng": -91.53017, + "state": null, + "state_code": null, + "city": "Iowa City", + "geonames_city": { + "id": 4862034, + "city": "Iowa City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uihealthcare.org/" + ], + "aliases": [ + "UI Health Care" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.412984.2", + "preferred": "grid.412984.2" + }, + "ISNI": { + "all": [ + "0000 0004 0434 3211" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30254145" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04374qe70.json b/v1.47/v1/04374qe70.json new file mode 100644 index 000000000..51529a21f --- /dev/null +++ b/v1.47/v1/04374qe70.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/04374qe70", + "name": "SickKids Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1875, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Ted Rogers Centre for Heart Research", + "type": "Child", + "id": "https://ror.org/00cgnj660" + }, + { + "label": "Hospital for Sick Children", + "type": "Related", + "id": "https://ror.org/057q4rt57" + } + ], + "addresses": [ + { + "lat": 43.70643, + "lng": -79.39864, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sickkidsfoundation.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.430185.b", + "preferred": "grid.430185.b" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/043h32y24.json b/v1.47/v1/043h32y24.json new file mode 100644 index 000000000..4578f6770 --- /dev/null +++ b/v1.47/v1/043h32y24.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/043h32y24", + "name": "LG (China)", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "LG (South Korea)", + "type": "Parent", + "id": "https://ror.org/03ddh2c27" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lg.com/cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/LG_Electronics", + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.497379.7", + "preferred": "grid.497379.7" + }, + "ISNI": { + "all": [ + "0000 0004 6063 4304" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/043p1tw66.json b/v1.47/v1/043p1tw66.json new file mode 100644 index 000000000..74b1979e7 --- /dev/null +++ b/v1.47/v1/043p1tw66.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/043p1tw66", + "name": "Naval Facilities Engineering Service Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [ + { + "label": "Naval Facilities Engineering and Expeditionary Warfare Center", + "type": "Successor", + "id": "https://ror.org/0103y3647" + } + ], + "addresses": [ + { + "lat": 34.14778, + "lng": -119.19511, + "state": null, + "state_code": null, + "city": "Port Hueneme", + "geonames_city": { + "id": 5384339, + "city": "Port Hueneme", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Naval Civil Engineering Laboratory", + "U.S. Naval Civil Engineering Laboratory", + "U.S. Naval Facilities Engineering Service Center", + "United States Naval Civil Engineering Laboratory", + "United States Naval Facilities Engineering Service Center" + ], + "acronyms": [ + "NFESC" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naval_Facilities_Engineering_Service_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0580 741X" + ], + "preferred": "0000 0004 0580 741X" + }, + "Wikidata": { + "all": [ + "Q6981811" + ], + "preferred": "Q6981811" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/043s0fn12.json b/v1.47/v1/043s0fn12.json new file mode 100644 index 000000000..295e15026 --- /dev/null +++ b/v1.47/v1/043s0fn12.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/043s0fn12", + "name": "The Ichiro Kanehara Foundation for the Promotion of Medical Sciences and Medical Care", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kanehara-zaidan.or.jp" + ], + "aliases": [ + "Ichiro Kanae Foundation", + "Ichiro Kanehara Foundation for the Promotion of Medical Sciences and Medical Care", + "Kanae Foundation", + "Kanae Foundation for the Promotion of Medical Science", + "金原一郎記念医学医療振興財団" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "益財団法人金原一郎記念医学医療振興財団", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.479881.b", + "preferred": "grid.479881.b" + }, + "ISNI": { + "all": [ + "0000 0004 5897 6698" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0449rap84.json b/v1.47/v1/0449rap84.json new file mode 100644 index 000000000..0d9393315 --- /dev/null +++ b/v1.47/v1/0449rap84.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0449rap84", + "name": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Évry Val d'Essonne", + "type": "Parent", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Ministère des Armées", + "type": "Parent", + "id": "https://ror.org/025er3q23" + }, + { + "label": "University of Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.63389, + "lng": 2.44417, + "state": null, + "state_code": null, + "city": "Évry-Courcouronnes", + "geonames_city": { + "id": 6454878, + "city": "Évry-Courcouronnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-evry.fr/recherche/unites-de-recherche/sciences-du-vivant/laboratoire-de-biologie-de-lexercice-pour-la-performance-et-la-sante-lbeps.html" + ], + "aliases": [], + "acronyms": [ + "LBEPS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109620334" + ], + "preferred": "Q109620334" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/044kxby82.json b/v1.47/v1/044kxby82.json new file mode 100644 index 000000000..4cb5c0ad3 --- /dev/null +++ b/v1.47/v1/044kxby82.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/044kxby82", + "name": "Institut Montpelliérain Alexander Grothendieck", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/050jcm728" + }, + { + "label": "University of Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Related", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://imag.umontpellier.fr" + ], + "aliases": [ + "Institut de Mathématique et de Modélisation de Montpellier" + ], + "acronyms": [ + "I3M", + "IMAG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462511.5", + "preferred": "grid.462511.5" + }, + "Wikidata": { + "all": [ + "Q30261477" + ], + "preferred": "Q30261477" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/045dhqd98.json b/v1.47/v1/045dhqd98.json new file mode 100644 index 000000000..d8a72208b --- /dev/null +++ b/v1.47/v1/045dhqd98.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/045dhqd98", + "name": "Far Eastern University", + "email_address": null, + "ip_addresses": [], + "established": 1928, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 14.6042, + "lng": 120.9822, + "state": null, + "state_code": null, + "city": "Manila", + "geonames_city": { + "id": 1701668, + "city": "Manila", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.feu.edu.ph/" + ], + "aliases": [ + "Far Eastern College", + "Institute of Accountancy", + "Institute of Accounts, Business and Finance" + ], + "acronyms": [ + "FEU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Far_Eastern_University", + "labels": [], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "GRID": { + "all": "grid.443163.7", + "preferred": "grid.443163.7" + }, + "ISNI": { + "all": [ + "0000 0001 2152 9067" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1254897" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0461ms248.json b/v1.47/v1/0461ms248.json new file mode 100644 index 000000000..5d67740b8 --- /dev/null +++ b/v1.47/v1/0461ms248.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/0461ms248", + "name": "Innovative Ghar Nepal", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.69007, + "lng": 78.41915, + "state": null, + "state_code": null, + "city": "Lalitpur", + "geonames_city": { + "id": 1265157, + "city": "Lalitpur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ingnepal.org.np" + ], + "aliases": [ + "InG Nepal" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q112770247" + ], + "preferred": "Q112770247" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/046cwyy43.json b/v1.47/v1/046cwyy43.json new file mode 100644 index 000000000..54e201014 --- /dev/null +++ b/v1.47/v1/046cwyy43.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/046cwyy43", + "name": "Stress Environnementaux et Biosurveillance des Milieux Aquatiques", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Normandie", + "type": "Parent", + "id": "https://ror.org/04q1kbj36" + }, + { + "label": "French National Institute for Industrial Environment and Risks", + "type": "Parent", + "id": "https://ror.org/034yrjf77" + }, + { + "label": "Université Le Havre Normandie", + "type": "Parent", + "id": "https://ror.org/05v509s40" + }, + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + } + ], + "addresses": [ + { + "lat": 49.49346, + "lng": 0.10785, + "state": null, + "state_code": null, + "city": "Le Havre", + "geonames_city": { + "id": 3003796, + "city": "Le Havre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sebio.univ-lehavre.fr/" + ], + "aliases": [], + "acronyms": [ + "SEBIO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503396.a", + "preferred": "grid.503396.a" + }, + "Wikidata": { + "all": [ + "Q51781997" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/046q22e19.json b/v1.47/v1/046q22e19.json new file mode 100644 index 000000000..c5c09e6ec --- /dev/null +++ b/v1.47/v1/046q22e19.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/046q22e19", + "name": "Kokand University", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.52861, + "lng": 70.9425, + "state": null, + "state_code": null, + "city": "Kokand", + "geonames_city": { + "id": 1512979, + "city": "Kokand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kokanduni.uz" + ], + "aliases": [], + "acronyms": [ + "KU" + ], + "status": "active", + "wikipedia_url": "https://uz.wikipedia.org/wiki/Qo%CA%BBqon_universiteti", + "labels": [ + { + "label": "Qoʻqon universiteti", + "iso639": "uz" + } + ], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q72083411" + ], + "preferred": "Q72083411" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/046tqzn85.json b/v1.47/v1/046tqzn85.json new file mode 100644 index 000000000..216445612 --- /dev/null +++ b/v1.47/v1/046tqzn85.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/046tqzn85", + "name": "Escuela Normal de Zumpango", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.7967, + "lng": -99.09946, + "state": null, + "state_code": null, + "city": "Zumpango", + "geonames_city": { + "id": 3513966, + "city": "Zumpango", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://normalzumpango.edomex.gob.mx" + ], + "aliases": [ + "Normal de Zumpango", + "Zumpango Normal School" + ], + "acronyms": [ + "ENZ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/047p7mf25.json b/v1.47/v1/047p7mf25.json new file mode 100644 index 000000000..1741ce5db --- /dev/null +++ b/v1.47/v1/047p7mf25.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/047p7mf25", + "name": "Institut Carnot PolyNat", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://polynat.eu" + ], + "aliases": [ + "Carnot PolyNat Institute", + "PolyNat Carnot Institute" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/047wbd030.json b/v1.47/v1/047wbd030.json new file mode 100644 index 000000000..964dc739c --- /dev/null +++ b/v1.47/v1/047wbd030.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/047wbd030", + "name": "Darmstadt University of Applied Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1876, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.87167, + "lng": 8.65027, + "state": null, + "state_code": null, + "city": "Darmstadt", + "geonames_city": { + "id": 2938913, + "city": "Darmstadt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.h-da.de/" + ], + "aliases": [ + "Hochschule Darmstadt University of Applied Sciences" + ], + "acronyms": [ + "HDA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Darmstadt_University_of_Applied_Sciences", + "labels": [ + { + "label": "Hochschule Darmstadt", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.449026.d", + "preferred": "grid.449026.d" + }, + "ISNI": { + "all": [ + "0000 0000 8906 027X", + "0000 0000 9396 7747" + ], + "preferred": "0000 0000 8906 027X" + }, + "Wikidata": { + "all": [ + "Q284992" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/048kmjm50.json b/v1.47/v1/048kmjm50.json new file mode 100644 index 000000000..cb65ad8b4 --- /dev/null +++ b/v1.47/v1/048kmjm50.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/048kmjm50", + "name": "Hradec Králové City Library", + "email_address": null, + "ip_addresses": [], + "established": 1896, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Hradec Králové Region", + "type": "Related", + "id": "https://ror.org/0290eg024" + } + ], + "addresses": [ + { + "lat": 50.20923, + "lng": 15.83277, + "state": null, + "state_code": null, + "city": "Hradec Králové", + "geonames_city": { + "id": 3074967, + "city": "Hradec Králové", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.knihovnahk.cz" + ], + "aliases": [], + "acronyms": [ + "KMHK" + ], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Knihovna_m%C4%9Bsta_Hradce_Kr%C3%A1lov%C3%A9", + "labels": [ + { + "label": "Knihovna města Hradce Králové", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 5905 5460" + ], + "preferred": "0000 0004 5905 5460" + }, + "Wikidata": { + "all": [ + "Q23929385" + ], + "preferred": "Q23929385" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/048pp2f81.json b/v1.47/v1/048pp2f81.json new file mode 100644 index 000000000..9b962a3a1 --- /dev/null +++ b/v1.47/v1/048pp2f81.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/048pp2f81", + "name": "Mount Mary College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Ghana", + "type": "Related", + "id": "https://ror.org/01r22mr83" + } + ], + "addresses": [ + { + "lat": 6.10546, + "lng": -0.01502, + "state": null, + "state_code": null, + "city": "Somanya", + "geonames_city": { + "id": 2295236, + "city": "Somanya", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://mmce.edu.gh" + ], + "aliases": [ + "Mt. Mary College of Education" + ], + "acronyms": [ + "MMCE", + "MOMACOE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mount_Mary_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996976" + ], + "preferred": "Q46996976" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0492nfe34.json b/v1.47/v1/0492nfe34.json new file mode 100644 index 000000000..2685fe93c --- /dev/null +++ b/v1.47/v1/0492nfe34.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/0492nfe34", + "name": "University of Cape Coast", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Abetifi Presbyterian College of Education", + "type": "Related", + "id": "https://ror.org/01y434850" + }, + { + "label": "Kibi Presbyterian College of Education", + "type": "Related", + "id": "https://ror.org/01428y038" + }, + { + "label": "Our Lady of Apostles College of Education", + "type": "Related", + "id": "https://ror.org/04t59f227" + }, + { + "label": "Foso College of Education", + "type": "Related", + "id": "https://ror.org/05gedzg25" + } + ], + "addresses": [ + { + "lat": 5.10535, + "lng": -1.2466, + "state": null, + "state_code": null, + "city": "Cape Coast", + "geonames_city": { + "id": 2302357, + "city": "Cape Coast", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ucc.edu.gh/" + ], + "aliases": [], + "acronyms": [ + "UCC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Cape_Coast", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.413081.f", + "preferred": "grid.413081.f" + }, + "ISNI": { + "all": [ + "0000 0001 2322 8567" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q746079" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0493yt138.json b/v1.47/v1/0493yt138.json new file mode 100644 index 000000000..2c82095fc --- /dev/null +++ b/v1.47/v1/0493yt138.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0493yt138", + "name": "Thüringer Universitäts- und Landesbibliothek", + "email_address": null, + "ip_addresses": [], + "established": 1549, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Friedrich Schiller University Jena", + "type": "Parent", + "id": "https://ror.org/05qpz1x62" + } + ], + "addresses": [ + { + "lat": 50.92878, + "lng": 11.5899, + "state": null, + "state_code": null, + "city": "Jena", + "geonames_city": { + "id": 2895044, + "city": "Jena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.thulb.uni-jena.de/" + ], + "aliases": [], + "acronyms": [ + "ThULB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.506562.2", + "preferred": "grid.506562.2" + }, + "ISNI": { + "all": [ + "0000 0001 2152 2586" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1255096" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0496p8026.json b/v1.47/v1/0496p8026.json new file mode 100644 index 000000000..af7ece4e1 --- /dev/null +++ b/v1.47/v1/0496p8026.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/0496p8026", + "name": "Délégation Côte d'Azur", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 43.63292, + "lng": 6.99911, + "state": null, + "state_code": null, + "city": "Valbonne", + "geonames_city": { + "id": 2971117, + "city": "Valbonne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cote-azur.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR20" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457019.e", + "preferred": "grid.457019.e" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/049bc0z69.json b/v1.47/v1/049bc0z69.json new file mode 100644 index 000000000..1fa798c2c --- /dev/null +++ b/v1.47/v1/049bc0z69.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/049bc0z69", + "name": "Canadian Glycomics Network", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [ + { + "label": "University of Alberta", + "type": "Parent", + "id": "https://ror.org/0160cpw27" + } + ], + "addresses": [ + { + "lat": 53.53713, + "lng": -113.49488, + "state": null, + "state_code": null, + "city": "Edmonton", + "geonames_city": { + "id": 11807182, + "city": "Edmonton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://canadianglycomics.ca" + ], + "aliases": [], + "acronyms": [ + "GlycoNet" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6430 6332" + ], + "preferred": "0000 0004 6430 6332" + }, + "Wikidata": { + "all": [ + "Q45134244" + ], + "preferred": "Q45134244" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/049qgqg40.json b/v1.47/v1/049qgqg40.json new file mode 100644 index 000000000..2f94fbf6c --- /dev/null +++ b/v1.47/v1/049qgqg40.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/049qgqg40", + "name": "Délégation Provence et Corse", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Institut Pythéas Observatoire des Sciences de l’Univers", + "type": "Child", + "id": "https://ror.org/00f945z63" + }, + { + "label": "Mediterranean Institute of Oceanography", + "type": "Child", + "id": "https://ror.org/05258q350" + }, + { + "label": "Station Marine d'Endoume", + "type": "Child", + "id": "https://ror.org/051p9ra28" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.provence-corse.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR12" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.428531.9", + "preferred": "grid.428531.9" + }, + "ISNI": { + "all": [ + "0000 0004 0520 8708" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30287180" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04abkkz03.json b/v1.47/v1/04abkkz03.json new file mode 100644 index 000000000..ccdb8a000 --- /dev/null +++ b/v1.47/v1/04abkkz03.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/04abkkz03", + "name": "International Centre for Advanced Mediterranean Agronomic Studies", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Mediterranean Agronomic Institute of Montpellier", + "type": "Child", + "id": "https://ror.org/0005r2j17" + }, + { + "label": "ABSys", + "type": "Child", + "id": "https://ror.org/00n2c0309" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ciheam.org/index.php/en/" + ], + "aliases": [], + "acronyms": [ + "CIHEAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.433092.f", + "preferred": "grid.433092.f" + }, + "ISNI": { + "all": [ + "0000 0004 0411 8970" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2972371" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04axnyp10.json b/v1.47/v1/04axnyp10.json new file mode 100644 index 000000000..b40a897f5 --- /dev/null +++ b/v1.47/v1/04axnyp10.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04axnyp10", + "name": "Samsung Advanced Institute of Technology (South Korea)", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.28586, + "lng": 127.00993, + "state": null, + "state_code": null, + "city": "Suwon-si", + "geonames_city": { + "id": 1835551, + "city": "Suwon-si", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sait.samsung.co.kr" + ], + "aliases": [], + "acronyms": [ + "SAIT" + ], + "status": "active", + "wikipedia_url": "https://ja.wikipedia.org/wiki/Samsung_Advanced_Institute_of_Technology", + "labels": [ + { + "label": "삼성종합기술원", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9160 8492" + ], + "preferred": "0000 0000 9160 8492" + }, + "Wikidata": { + "all": [ + "Q39412547" + ], + "preferred": "Q39412547" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04b0z7q78.json b/v1.47/v1/04b0z7q78.json new file mode 100644 index 000000000..bb7992318 --- /dev/null +++ b/v1.47/v1/04b0z7q78.json @@ -0,0 +1,749 @@ +{ + "id": "https://ror.org/04b0z7q78", + "name": "Institut des Sciences Humaines et Sociales", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Aménagement, Développement, Environnement, Santé et Sociétés", + "type": "Child", + "id": "https://ror.org/027953924" + }, + { + "label": "Anthropology and History of the Ancient World", + "type": "Child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Architecture Urbanisme Société : Savoirs, Enseignement, Recherche", + "type": "Child", + "id": "https://ror.org/0157t2j08" + }, + { + "label": "Archives Henri-Poincaré - Philosophie et Recherches sur les Sciences et les Technologies", + "type": "Child", + "id": "https://ror.org/02fdf4056" + }, + { + "label": "Archéologie des Amériques", + "type": "Child", + "id": "https://ror.org/018sx6595" + }, + { + "label": "Archéologie et Archéométrie", + "type": "Child", + "id": "https://ror.org/02bq56641" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Archéologie et Philologie d’Orient et d’Occident", + "type": "Child", + "id": "https://ror.org/05nsvn336" + }, + { + "label": "Archéologies et Sciences de l’Antiquité", + "type": "Child", + "id": "https://ror.org/04wz9m339" + }, + { + "label": "Archéorient", + "type": "Child", + "id": "https://ror.org/059xs3104" + }, + { + "label": "Ausonius Institut de Recherche sur l'Antiquité et le Moyen age", + "type": "Child", + "id": "https://ror.org/05jm22562" + }, + { + "label": "Bases, Corpus, Langage", + "type": "Child", + "id": "https://ror.org/03mmb0d82" + }, + { + "label": "Bureau for Economic Theory and Applications", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "CItés, Territoires, Environnement et Sociétés", + "type": "Child", + "id": "https://ror.org/04ahza989" + }, + { + "label": "Center for Historical Studies", + "type": "Child", + "id": "https://ror.org/05tfp1c72" + }, + { + "label": "Centre d'études et de recherches internationales de Sciences Po", + "type": "Child", + "id": "https://ror.org/045qk7v62" + }, + { + "label": "Center for Research in Economics and Statistics", + "type": "Child", + "id": "https://ror.org/0449khs19" + }, + { + "label": "Toulouse School of Management Research", + "type": "Child", + "id": "https://ror.org/036yvb369" + }, + { + "label": "Center for Research in Medicine, Science, Health, Mental Health and Society", + "type": "Child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Centre de recherches sociologiques et politiques de Paris", + "type": "Child", + "id": "https://ror.org/04jb47e97" + }, + { + "label": "Center for the Sociology of Organizations", + "type": "Child", + "id": "https://ror.org/035mqrn57" + }, + { + "label": "Centre Alexandre Koyré", + "type": "Child", + "id": "https://ror.org/02dqsxz11" + }, + { + "label": "Centre André-Chastel", + "type": "Child", + "id": "https://ror.org/03jqm0b89" + }, + { + "label": "Centre Camille Jullian", + "type": "Child", + "id": "https://ror.org/050sat078" + }, + { + "label": "Centre Georg Simmel", + "type": "Child", + "id": "https://ror.org/04qhwn476" + }, + { + "label": "Centre Lillois d'Etudes et de Recherches Sociologiques et Economiques", + "type": "Child", + "id": "https://ror.org/00mghmd60" + }, + { + "label": "Centre Maurice-Halbwachs", + "type": "Child", + "id": "https://ror.org/01paa1e42" + }, + { + "label": "Centre Nantais de Sociologie", + "type": "Child", + "id": "https://ror.org/04v837171" + }, + { + "label": "Centre Norbert Elias", + "type": "Child", + "id": "https://ror.org/028ycv057" + }, + { + "label": "Centre Paul Albert-Février", + "type": "Child", + "id": "https://ror.org/00wcvf151" + }, + { + "label": "Centre d'Analyse et de Mathématique Sociales", + "type": "Child", + "id": "https://ror.org/00vb8fc53" + }, + { + "label": "Centre d'Etudes Supérieures de la Renaissance", + "type": "Child", + "id": "https://ror.org/03cv31q28" + }, + { + "label": "Centre d’histoire sociale des mondes contemporains", + "type": "Child", + "id": "https://ror.org/04zjb4t38" + }, + { + "label": "Centre d'Économie de la Sorbonne", + "type": "Child", + "id": "https://ror.org/006shqv80" + }, + { + "label": "Centre d’étude de la langue et des littératures françaises", + "type": "Child", + "id": "https://ror.org/059v8sw69" + }, + { + "label": "Centre d'études Européennes de Sciences Po", + "type": "Child", + "id": "https://ror.org/00gd2w119" + }, + { + "label": "Centre d'études Turques, Ottomanes, Balkaniques et Centrasiatiques", + "type": "Child", + "id": "https://ror.org/047rmr210" + }, + { + "label": "Centre de Recherche en Économie et Management", + "type": "Child", + "id": "https://ror.org/0047rmf80" + }, + { + "label": "Centre de Recherche et de Documentation sur les Amériques", + "type": "Child", + "id": "https://ror.org/0585hkk81" + }, + { + "label": "Centre de Recherche sur la Langue et les Textes Basques", + "type": "Child", + "id": "https://ror.org/03bj0v820" + }, + { + "label": "Centre de Recherche sur les Liens Sociaux", + "type": "Child", + "id": "https://ror.org/01wcaw014" + }, + { + "label": "Centre de Recherches Linguistiques sur l'Asie Orientale", + "type": "Child", + "id": "https://ror.org/026h43663" + }, + { + "label": "Centre de Recherches Politiques de Sciences Po", + "type": "Child", + "id": "https://ror.org/0266y7j75" + }, + { + "label": "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales", + "type": "Child", + "id": "https://ror.org/01qm1tk92" + }, + { + "label": "Centre de recherches sur la pensée antique", + "type": "Child", + "id": "https://ror.org/02d19mr69" + }, + { + "label": "Centre de Recherches sur les Arts et le Langage", + "type": "Child", + "id": "https://ror.org/025bzyx94" + }, + { + "label": "Centre de Théorie et Analyse du Droit", + "type": "Child", + "id": "https://ror.org/04bg5j190" + }, + { + "label": "Centre d’Etudes et de Recherches de Sciences Administratives et Politiques", + "type": "Child", + "id": "https://ror.org/00abqs885" + }, + { + "label": "Centre d’études des Mondes Russe, Caucasien et Centre-Européen", + "type": "Child", + "id": "https://ror.org/052wpc865" + }, + { + "label": "Laboratoire d'ethnologie et de sociologie comparative", + "type": "Child", + "id": "https://ror.org/056swcy54" + }, + { + "label": "Computer Processing and Analysis of the French Language", + "type": "Child", + "id": "https://ror.org/02cy9g557" + }, + { + "label": "Dauphine Recherches en Management", + "type": "Child", + "id": "https://ror.org/01mzxgm71" + }, + { + "label": "Droit et changement social", + "type": "Child", + "id": "https://ror.org/014nzh720" + }, + { + "label": "EconomiX", + "type": "Child", + "id": "https://ror.org/02j4j8p35" + }, + { + "label": "European Centre for Sociology and Political Science", + "type": "Child", + "id": "https://ror.org/0121yvq70" + }, + { + "label": "Groupe Sociétés, Religions, Laïcités", + "type": "Child", + "id": "https://ror.org/01wk35t67" + }, + { + "label": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "type": "Child", + "id": "https://ror.org/042fmc481" + }, + { + "label": "Groupe d'Étude des Méthodes de l'Analyse Sociologique de la Sorbonne", + "type": "Child", + "id": "https://ror.org/00kzsxx38" + }, + { + "label": "Groupe de Recherche en Droit, Économie, Gestion", + "type": "Child", + "id": "https://ror.org/00rfccx09" + }, + { + "label": "Groupement de Recherche en Économie Quantitative d’Aix-Marseille", + "type": "Child", + "id": "https://ror.org/02ek9wp67" + }, + { + "label": "Groupement de Recherche et d'Études en Gestion d’HEC", + "type": "Child", + "id": "https://ror.org/01y766z47" + }, + { + "label": "Histoire et Sources des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/01yx7av22" + }, + { + "label": "Histoire, Archéologie, Littératures des Mondes Chrétiens et Musulmans Médiévaux", + "type": "Child", + "id": "https://ror.org/05mqwtr17" + }, + { + "label": "Identités et Différenciation de l'Environnement des Espaces et des Sociétés", + "type": "Child", + "id": "https://ror.org/04kcjtk03" + }, + { + "label": "Institut Interdisciplinaire d’Anthropologie du Contemporain", + "type": "Child", + "id": "https://ror.org/00a5z9122" + }, + { + "label": "Institut Marcel Mauss", + "type": "Child", + "id": "https://ror.org/02c5gbd66" + }, + { + "label": "Institut d'Histoire Moderne et Contemporaine", + "type": "Child", + "id": "https://ror.org/04795e365" + }, + { + "label": "Institut d'Histoire du Temps Présent", + "type": "Child", + "id": "https://ror.org/04s0b8n66" + }, + { + "label": "Institut de Recherche Interdisciplinaire en Sciences Sociales", + "type": "Child", + "id": "https://ror.org/05mmjvv12" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "Child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Institut de Recherche et d'Histoire des Textes", + "type": "Child", + "id": "https://ror.org/05evznf71" + }, + { + "label": "Institut de Recherche sur la Renaissance l'Age Classique et les Lumières", + "type": "Child", + "id": "https://ror.org/02sz8cn84" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "Child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Institut de Recherches Historiques du Septentrion", + "type": "Child", + "id": "https://ror.org/021ddkf20" + }, + { + "label": "Institut des Sciences Sociales du Politique", + "type": "Child", + "id": "https://ror.org/03jdg7625" + }, + { + "label": "Institut des Textes et Manuscrits Modernes", + "type": "Child", + "id": "https://ror.org/00x1d4q78" + }, + { + "label": "Institute for Social Sciences and Humanities", + "type": "Child", + "id": "https://ror.org/01petg633" + }, + { + "label": "Institute for the History and Philosophy of Science and Technology", + "type": "Child", + "id": "https://ror.org/02nnpw434" + }, + { + "label": "Institute of Labour Economics and Industrial Sociology", + "type": "Child", + "id": "https://ror.org/043xjcd49" + }, + { + "label": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "type": "Child", + "id": "https://ror.org/03p76m698" + }, + { + "label": "Interactions, Corpus, Apprentissages, Représentations", + "type": "Child", + "id": "https://ror.org/04mn0nr69" + }, + { + "label": "LIttoral, ENvironment and Societies", + "type": "Child", + "id": "https://ror.org/00r8amq78" + }, + { + "label": "Laboratoire Cognition, Langues, Langage, Ergonomie", + "type": "Child", + "id": "https://ror.org/029cj5595" + }, + { + "label": "Laboratoire Dynamique du Langage", + "type": "Child", + "id": "https://ror.org/01fvx3s14" + }, + { + "label": "Laboratoire Dynamiques Sociales et Recomposition des Espaces", + "type": "Child", + "id": "https://ror.org/045r56524" + }, + { + "label": "Laboratoire Interdisciplinaire Solidarités Sociétés Territoires", + "type": "Child", + "id": "https://ror.org/04m5rvb18" + }, + { + "label": "Laboratoire Interdisciplinaire des Énergies de Demain", + "type": "Child", + "id": "https://ror.org/00m43ek07" + }, + { + "label": "Laboratoire Interdisciplinaire pour la Sociologie Economique", + "type": "Child", + "id": "https://ror.org/01b8mj511" + }, + { + "label": "Laboratoire Parole et Langage", + "type": "Child", + "id": "https://ror.org/05whq8x35" + }, + { + "label": "Laboratoire Printemps", + "type": "Child", + "id": "https://ror.org/00mdx2x22" + }, + { + "label": "Laboratoire d'Anthropologie Sociale", + "type": "Child", + "id": "https://ror.org/05pm8ec76" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "Child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Linguistique Formelle", + "type": "Child", + "id": "https://ror.org/0223bz716" + }, + { + "label": "Laboratoire de Phonétique et Phonologie", + "type": "Child", + "id": "https://ror.org/007p4nf03" + }, + { + "label": "Technologie et Ethnologie des Mondes PréhistoriqueS", + "type": "Child", + "id": "https://ror.org/01pawvf59" + }, + { + "label": "Laboratory for the Psychology of Child Development and Education", + "type": "Child", + "id": "https://ror.org/023kqz006" + }, + { + "label": "Languages and Cultures of Sub-Saharan Africa", + "type": "Child", + "id": "https://ror.org/024mt9310" + }, + { + "label": "Langues, Textes, Traitements Informatiques, Cognition", + "type": "Child", + "id": "https://ror.org/03ms1y683" + }, + { + "label": "Laboratoire Architecture Ville Urbanisme Environnement", + "type": "Child", + "id": "https://ror.org/01dqmj897" + }, + { + "label": "Les Afriques dans le Monde", + "type": "Child", + "id": "https://ror.org/00721wn77" + }, + { + "label": "Lille Center for European Research on Administration, Politics and Society", + "type": "Child", + "id": "https://ror.org/03n91q085" + }, + { + "label": "Lille Économie Management", + "type": "Child", + "id": "https://ror.org/05bz47575" + }, + { + "label": "Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles", + "type": "Child", + "id": "https://ror.org/04rkh0096" + }, + { + "label": "Lyons Institute of East Asian Studies", + "type": "Child", + "id": "https://ror.org/007dy3y92" + }, + { + "label": "Maison Européenne des Sciences de l'Homme et de la Société", + "type": "Child", + "id": "https://ror.org/00m090414" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Maison des Sciences de l’Homme de Dijon", + "type": "Child", + "id": "https://ror.org/04ejcwb57" + }, + { + "label": "Maison des Sciences de l’Homme et de la Société de Toulouse", + "type": "Child", + "id": "https://ror.org/03azy3k91" + }, + { + "label": "Maison des Sciences de l’Homme et de l‘Environnement Claude Nicolas Ledoux", + "type": "Child", + "id": "https://ror.org/04w8f9k94" + }, + { + "label": "Migrations Internationales, Espace Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03sv5kk82" + }, + { + "label": "Modèles Dynamiques Corpus", + "type": "Child", + "id": "https://ror.org/03x6a1n79" + }, + { + "label": "Mondes Américains", + "type": "Child", + "id": "https://ror.org/02y6fxd73" + }, + { + "label": "Orient & Méditerranée", + "type": "Child", + "id": "https://ror.org/051gvfp41" + }, + { + "label": "Pays Germaniques", + "type": "Child", + "id": "https://ror.org/04f9rh541" + }, + { + "label": "Proche-Orient, Caucase : Langues, Archéologie, Cultures", + "type": "Child", + "id": "https://ror.org/030jm0n16" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Savoirs, Textes, Langage", + "type": "Child", + "id": "https://ror.org/003fs1j49" + }, + { + "label": "Sciences Cognitives et Sciences Affectives", + "type": "Child", + "id": "https://ror.org/05rqwc876" + }, + { + "label": "Sciences, Philosophie, Histoire", + "type": "Child", + "id": "https://ror.org/05c9ks061" + }, + { + "label": "Social Sciences Research House", + "type": "Child", + "id": "https://ror.org/00g7vvf64" + }, + { + "label": "Societies, Actors and Governement in Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Sorbonne - Identités, Relations Internationales et Civilisations de l’Europe", + "type": "Child", + "id": "https://ror.org/03ae8w006" + }, + { + "label": "Centre d’Etudes Politiques Et sociaLes", + "type": "Child", + "id": "https://ror.org/02wzg8t73" + }, + { + "label": "Structures Formelles du Langage", + "type": "Child", + "id": "https://ror.org/00nrven85" + }, + { + "label": "The Centre for Studies on China, Korea and Japan", + "type": "Child", + "id": "https://ror.org/02djzje70" + }, + { + "label": "Théorie et Histoire des Arts et des Littératures de la Modernité", + "type": "Child", + "id": "https://ror.org/00ca65425" + }, + { + "label": "Théorie Économique, Modélisation et Applications", + "type": "Child", + "id": "https://ror.org/00vctdx48" + }, + { + "label": "Théoriser et Modéliser pour Aménager", + "type": "Child", + "id": "https://ror.org/01a0gpy77" + }, + { + "label": "Institut de l'Ouest : Droit et Europe", + "type": "Child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Centre de données socio-politiques de Sciences Po", + "type": "Child", + "id": "https://ror.org/03aef3108" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnrs.fr/inshs/" + ], + "aliases": [], + "acronyms": [ + "INSHS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457014.3", + "preferred": "grid.457014.3" + }, + "ISNI": { + "all": [ + "0000 0004 0387 1477" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q24935932" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04b8jtz89.json b/v1.47/v1/04b8jtz89.json new file mode 100644 index 000000000..a9f01ab89 --- /dev/null +++ b/v1.47/v1/04b8jtz89.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04b8jtz89", + "name": "River Security Inc. (China)", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.22222, + "lng": 121.45806, + "state": null, + "state_code": null, + "city": "Shanghai", + "geonames_city": { + "id": 1796236, + "city": "Shanghai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.riversecurity.com" + ], + "aliases": [ + "River Security" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "River Security Inc.", + "iso639": "en" + }, + { + "label": "瑞数信息", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/04b9vs620.json b/v1.47/v1/04b9vs620.json new file mode 100644 index 000000000..68982f937 --- /dev/null +++ b/v1.47/v1/04b9vs620.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/04b9vs620", + "name": "Imagerie et Stratégies Thérapeutiques pour les Cancers et Tissus cérébraux", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Caen Normandie", + "type": "Parent", + "id": "https://ror.org/051kpcy16" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 49.18585, + "lng": -0.35912, + "state": null, + "state_code": null, + "city": "Caen", + "geonames_city": { + "id": 3029241, + "city": "Caen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.istct.cyceron.fr" + ], + "aliases": [], + "acronyms": [ + "ISTCT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0385 7501" + ], + "preferred": "0000 0004 0385 7501" + }, + "Wikidata": { + "all": [ + "Q50040735" + ], + "preferred": "Q50040735" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04bckew43.json b/v1.47/v1/04bckew43.json new file mode 100644 index 000000000..8c74064c5 --- /dev/null +++ b/v1.47/v1/04bckew43.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/04bckew43", + "name": "Hôpitaux Universitaires de Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 1119, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpital Civil, Strasbourg", + "type": "Child", + "id": "https://ror.org/05fkq4848" + }, + { + "label": "Hôpital d'Hautepierre", + "type": "Child", + "id": "https://ror.org/04e1w6923" + }, + { + "label": "University of Strasbourg", + "type": "Related", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "ERN EYE", + "type": "Related", + "id": "https://ror.org/029nm1m14" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.chru-strasbourg.fr/" + ], + "aliases": [ + "University Hospital of Strasbourg" + ], + "acronyms": [ + "HUS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.412220.7", + "preferred": "grid.412220.7" + }, + "ISNI": { + "all": [ + "0000 0001 2177 138X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04bm3wy68.json b/v1.47/v1/04bm3wy68.json new file mode 100644 index 000000000..0bbde52ff --- /dev/null +++ b/v1.47/v1/04bm3wy68.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04bm3wy68", + "name": "Hue University of Education", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 16.4619, + "lng": 107.59546, + "state": null, + "state_code": null, + "city": "Huế", + "geonames_city": { + "id": 1580240, + "city": "Huế", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.dhsphue.edu.vn" + ], + "aliases": [ + "Hue University", + "Hue University's College of Education" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Trường Đại học Sư phạm Huế", + "iso639": "vi" + }, + { + "label": "University of Education, Hue University", + "iso639": "en" + } + ], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": { + "GRID": { + "all": "grid.501720.1", + "preferred": "grid.501720.1" + }, + "Wikidata": { + "all": [ + "Q10829127" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04bnxa153.json b/v1.47/v1/04bnxa153.json new file mode 100644 index 000000000..fdcc61813 --- /dev/null +++ b/v1.47/v1/04bnxa153.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04bnxa153", + "name": "Naval Undersea Warfare Center", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 41.4901, + "lng": -71.31283, + "state": null, + "state_code": null, + "city": "Newport", + "geonames_city": { + "id": 5223593, + "city": "Newport", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.navsea.navy.mil/Home/WarfareCenters.aspx" + ], + "aliases": [], + "acronyms": [ + "NUWC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naval_Undersea_Warfare_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.419846.6", + "preferred": "grid.419846.6" + }, + "ISNI": { + "all": [ + "0000 0001 2203 7603" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6981964" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04cxsn644.json b/v1.47/v1/04cxsn644.json new file mode 100644 index 000000000..9588e2050 --- /dev/null +++ b/v1.47/v1/04cxsn644.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04cxsn644", + "name": "Délégation Nord, Pas-de-Calais et Picardie", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire d'Automatique, Génie Informatique et Signal", + "type": "Child", + "id": "https://ror.org/04wez4p43" + }, + { + "label": "Laboratoire de Physico-Chimie de l'Atmosphère", + "type": "Child", + "id": "https://ror.org/014net767" + }, + { + "label": "Unité Évolution, Écologie et Paléontologie", + "type": "Child", + "id": "https://ror.org/04y91dy23" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.dr18.cnrs.fr/" + ], + "aliases": [], + "acronyms": [ + "DR18" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457021.5", + "preferred": "grid.457021.5" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04dj2za52.json b/v1.47/v1/04dj2za52.json new file mode 100644 index 000000000..5173e9ae2 --- /dev/null +++ b/v1.47/v1/04dj2za52.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04dj2za52", + "name": "Africa University", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -18.9707, + "lng": 32.67086, + "state": null, + "state_code": null, + "city": "Mutare", + "geonames_city": { + "id": 884979, + "city": "Mutare", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.africau.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Africa_University", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.442719.d", + "preferred": "grid.442719.d" + }, + "ISNI": { + "all": [ + "0000 0000 8930 0245" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q383939" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04dkjk636.json b/v1.47/v1/04dkjk636.json new file mode 100644 index 000000000..994abb04a --- /dev/null +++ b/v1.47/v1/04dkjk636.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/04dkjk636", + "name": "Universidad Tecnológica de San Juan del Río", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.38886, + "lng": -99.99577, + "state": null, + "state_code": null, + "city": "San Juan del Río", + "geonames_city": { + "id": 3518692, + "city": "San Juan del Río", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utsjr.edu.mx" + ], + "aliases": [], + "acronyms": [ + "UTSJR" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Tecnol%C3%B3gica_de_San_Juan_del_R%C3%ADo", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q6156709" + ], + "preferred": "Q6156709" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04fawj142.json b/v1.47/v1/04fawj142.json new file mode 100644 index 000000000..176e7bc2d --- /dev/null +++ b/v1.47/v1/04fawj142.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04fawj142", + "name": "Pädagogische Hochschule FHNW", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Applied Sciences and Arts Northwestern Switzerland", + "type": "Parent", + "id": "https://ror.org/04mq2g308" + } + ], + "addresses": [ + { + "lat": 47.47899, + "lng": 8.21842, + "state": null, + "state_code": null, + "city": "Windisch", + "geonames_city": { + "id": 2657976, + "city": "Windisch", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fhnw.ch/de/die-fhnw/hochschulen/ph" + ], + "aliases": [ + "FHNW School of Education", + "Pädagogische Hochschule Nordwestschweiz", + "Pädagogische Hochschule der Fachhochschule Nordwestschweiz" + ], + "acronyms": [ + "PH FHNW", + "PHNW" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/P%C3%A4dagogische_Hochschule_der_Fachhochschule_Nordwestschweiz", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q2120232" + ], + "preferred": "Q2120232" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04g2swc55.json b/v1.47/v1/04g2swc55.json new file mode 100644 index 000000000..5e54595d2 --- /dev/null +++ b/v1.47/v1/04g2swc55.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/04g2swc55", + "name": "University of Iowa Hospitals and Clinics", + "email_address": null, + "ip_addresses": [], + "established": 1898, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Iowa Stead Family Children’s Hospital", + "type": "Child", + "id": "https://ror.org/0184n5y84" + }, + { + "label": "University of Iowa", + "type": "Parent", + "id": "https://ror.org/036jqmy94" + }, + { + "label": "University of Iowa Health Care", + "type": "Successor", + "id": "https://ror.org/0431j1t39" + } + ], + "addresses": [ + { + "lat": 41.66113, + "lng": -91.53017, + "state": null, + "state_code": null, + "city": "Iowa City", + "geonames_city": { + "id": 4862034, + "city": "Iowa City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uihealthcare.org/" + ], + "aliases": [ + "UI Hospitals and Clinics" + ], + "acronyms": [ + "UIHC" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Iowa_Hospitals_and_Clinics", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.412584.e", + "preferred": "grid.412584.e" + }, + "ISNI": { + "all": [ + "0000 0004 0434 9816" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7895561" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04g7z4238.json b/v1.47/v1/04g7z4238.json new file mode 100644 index 000000000..a7cb2dacb --- /dev/null +++ b/v1.47/v1/04g7z4238.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/04g7z4238", + "name": "Fatty Acid Research Institute", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility", + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.54997, + "lng": -96.70033, + "state": null, + "state_code": null, + "city": "Sioux Falls", + "geonames_city": { + "id": 5231851, + "city": "Sioux Falls", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.faresinst.org" + ], + "aliases": [], + "acronyms": [ + "FARI" + ], + "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.47/v1/04hjc7403.json b/v1.47/v1/04hjc7403.json new file mode 100644 index 000000000..24cb9ee3e --- /dev/null +++ b/v1.47/v1/04hjc7403.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/04hjc7403", + "name": "Laboratoire de Probabilités et Modèles Aléatoires", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Sorbonne University", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Successor", + "id": "https://ror.org/02vnd0e65" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.proba.jussieu.fr/" + ], + "aliases": [], + "acronyms": [ + "LPMA" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463951.c", + "preferred": "grid.463951.c" + }, + "ISNI": { + "all": [ + "0000 0001 1957 7318" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3214479" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04hrs9369.json b/v1.47/v1/04hrs9369.json new file mode 100644 index 000000000..21cb772e1 --- /dev/null +++ b/v1.47/v1/04hrs9369.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/04hrs9369", + "name": "Délégation Languedoc Roussillon", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Botany and Modelling of Plant Architecture and Vegetation", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Institut de Recherche en Infectiologie de Montpellier", + "type": "Child", + "id": "https://ror.org/036eg1q44" + }, + { + "label": "Institute of Cancer Research of Montpellier", + "type": "Child", + "id": "https://ror.org/03capj968" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnrs.fr/languedoc-roussillon/index.htm" + ], + "aliases": [], + "acronyms": [ + "DR13" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.433120.7", + "preferred": "grid.433120.7" + }, + "Wikidata": { + "all": [ + "Q30255680" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04hsa7a08.json b/v1.47/v1/04hsa7a08.json new file mode 100644 index 000000000..062502bff --- /dev/null +++ b/v1.47/v1/04hsa7a08.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04hsa7a08", + "name": "Göttingen Academy of Sciences and Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1751, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://adw-goe.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/G%C3%B6ttingen_Academy_of_Sciences_and_Humanities", + "labels": [ + { + "label": "Niedersächsische Akademie der Wissenschaften zu Göttingen", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.461599.6", + "preferred": "grid.461599.6" + }, + "ISNI": { + "all": [ + "0000 0001 2162 0936" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q414188" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04j8jrf09.json b/v1.47/v1/04j8jrf09.json new file mode 100644 index 000000000..ed4fbbf35 --- /dev/null +++ b/v1.47/v1/04j8jrf09.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/04j8jrf09", + "name": "Centre Interdisciplinaire de Recherches sur les Langues Et la Pensée", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-reims.fr/cirlep/" + ], + "aliases": [], + "acronyms": [ + "CIRLEP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2115 3282" + ], + "preferred": "0000 0001 2115 3282" + }, + "Wikidata": { + "all": [ + "Q51781067" + ], + "preferred": "Q51781067" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04jk8jz35.json b/v1.47/v1/04jk8jz35.json new file mode 100644 index 000000000..61281de03 --- /dev/null +++ b/v1.47/v1/04jk8jz35.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/04jk8jz35", + "name": "Grand Port Maritime de Nantes Saint-Nazaire", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.21725, + "lng": -1.55336, + "state": null, + "state_code": null, + "city": "Nantes", + "geonames_city": { + "id": 2990969, + "city": "Nantes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nantes.port.fr" + ], + "aliases": [ + "Port Autonome de Nantes Saint-Nazaire" + ], + "acronyms": [ + "GPMNSN" + ], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Grand_port_maritime_de_Nantes-Saint-Nazaire", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/04jr59487.json b/v1.47/v1/04jr59487.json new file mode 100644 index 000000000..bff72a5f7 --- /dev/null +++ b/v1.47/v1/04jr59487.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/04jr59487", + "name": "Ghana Tertiary Education Commission", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.55602, + "lng": -0.1969, + "state": null, + "state_code": null, + "city": "Accra", + "geonames_city": { + "id": 2306104, + "city": "Accra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://gtec.edu.gh" + ], + "aliases": [], + "acronyms": [ + "GTEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q116784676" + ], + "preferred": "Q116784676" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04jsz6e67.json b/v1.47/v1/04jsz6e67.json new file mode 100644 index 000000000..c18f0e910 --- /dev/null +++ b/v1.47/v1/04jsz6e67.json @@ -0,0 +1,178 @@ +{ + "id": "https://ror.org/04jsz6e67", + "name": "Dutch Research Council", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Advanced Research Center for Nanolithography (Netherlands)", + "type": "Child", + "id": "https://ror.org/04xe7ws48" + }, + { + "label": "Centrum Wiskunde & Informatica", + "type": "Child", + "id": "https://ror.org/00x7ekv49" + }, + { + "label": "Data Archiving and Networked Services", + "type": "Child", + "id": "https://ror.org/008pnp284" + }, + { + "label": "Dutch Institute for Fundamental Energy Research", + "type": "Child", + "id": "https://ror.org/03w5dn804" + }, + { + "label": "Institute for Atomic and Molecular Physics", + "type": "Child", + "id": "https://ror.org/038x9td67" + }, + { + "label": "National Institute for Subatomic Physics", + "type": "Child", + "id": "https://ror.org/00f9tz983" + }, + { + "label": "Netherlands Institute for Radio Astronomy", + "type": "Child", + "id": "https://ror.org/000k1q888" + }, + { + "label": "SRON Netherlands Institute for Space Research", + "type": "Child", + "id": "https://ror.org/02wc0kq10" + }, + { + "label": "Netherlands Institute for the Study of Crime and Law Enforcement", + "type": "Child", + "id": "https://ror.org/03124pm05" + }, + { + "label": "Netherlands eScience Center", + "type": "Child", + "id": "https://ror.org/00rbjv475" + }, + { + "label": "Royal Netherlands Institute for Sea Research", + "type": "Child", + "id": "https://ror.org/01gntjh03" + }, + { + "label": "Taskforce for Applied Research", + "type": "Child", + "id": "https://ror.org/03r6vqn56" + }, + { + "label": "Technology Foundation STW", + "type": "Child", + "id": "https://ror.org/057tq3593" + }, + { + "label": "FELIX Laboratory", + "type": "Child", + "id": "https://ror.org/03tkwyq76" + }, + { + "label": "National Initiative for Education Research", + "type": "Child", + "id": "https://ror.org/00yqqb480" + }, + { + "label": "Open Science NL", + "type": "Child", + "id": "https://ror.org/01epydt92" + } + ], + "addresses": [ + { + "lat": 52.07667, + "lng": 4.29861, + "state": null, + "state_code": null, + "city": "The Hague", + "geonames_city": { + "id": 2747373, + "city": "The Hague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nwo.nl" + ], + "aliases": [ + "Dutch National Science Foundation", + "Dutch National Scientific Foundation", + "Netherlands Organisation for Scientific Research" + ], + "acronyms": [ + "NWO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Netherlands_Organisation_for_Scientific_Research", + "labels": [ + { + "label": "Nederlandse Organisatie voor Wetenschappelijk Onderzoek", + "iso639": "nl" + } + ], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "GRID": { + "all": "grid.420488.2", + "preferred": "grid.420488.2" + }, + "ISNI": { + "all": [ + "0000 0001 1092 7772" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q129724" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04jycch17.json b/v1.47/v1/04jycch17.json new file mode 100644 index 000000000..9d58b6937 --- /dev/null +++ b/v1.47/v1/04jycch17.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/04jycch17", + "name": "Pardubice Region", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Pardubice Regional Library", + "type": "Child", + "id": "https://ror.org/05f1nfh63" + } + ], + "addresses": [ + { + "lat": 50.04075, + "lng": 15.77659, + "state": null, + "state_code": null, + "city": "Pardubice", + "geonames_city": { + "id": 3068582, + "city": "Pardubice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pardubickykraj.cz" + ], + "aliases": [ + "Pardubice Region of the Czech Republic" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Pardubick%C3%BD_kraj", + "labels": [ + { + "label": "Pardubický kraj", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0611 2302" + ], + "preferred": "0000 0004 0611 2302" + }, + "Wikidata": { + "all": [ + "Q193317" + ], + "preferred": "Q193317" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04k6va493.json b/v1.47/v1/04k6va493.json new file mode 100644 index 000000000..643c6a4d2 --- /dev/null +++ b/v1.47/v1/04k6va493.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04k6va493", + "name": "Catholic University of Zimbabwe", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -17.82772, + "lng": 31.05337, + "state": null, + "state_code": null, + "city": "Harare", + "geonames_city": { + "id": 890299, + "city": "Harare", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cuz.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "CUZ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Catholic_University_of_Zimbabwe", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.442711.5", + "preferred": "grid.442711.5" + }, + "ISNI": { + "all": [ + "0000 0004 4666 7580" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q8071970" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04ka9j141.json b/v1.47/v1/04ka9j141.json new file mode 100644 index 000000000..ccb536062 --- /dev/null +++ b/v1.47/v1/04ka9j141.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04ka9j141", + "name": "Nusrat Jahan Ahmadiyya College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.06069, + "lng": -2.50192, + "state": null, + "state_code": null, + "city": "Wa", + "geonames_city": { + "id": 2294206, + "city": "Wa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.njace.edu.gh" + ], + "aliases": [ + "N. J. Ahmadiyya College of Education", + "NJA College of Education" + ], + "acronyms": [ + "NJACoE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nusrat_Jahan_Ahmadiyya_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996978" + ], + "preferred": "Q46996978" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04mc1gv86.json b/v1.47/v1/04mc1gv86.json new file mode 100644 index 000000000..a5e49c055 --- /dev/null +++ b/v1.47/v1/04mc1gv86.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04mc1gv86", + "name": "Tecnológico de Estudios Superiores de Ecatepec", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.60492, + "lng": -99.06064, + "state": null, + "state_code": null, + "city": "Ecatepec", + "geonames_city": { + "id": 3529612, + "city": "Ecatepec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tese.edu.mx" + ], + "aliases": [ + "TES Ecatepec", + "TecNM Ecatepec" + ], + "acronyms": [ + "TESE" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Tecnol%C3%B3gico_de_Estudios_Superiores_de_Ecatepec", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q6140137" + ], + "preferred": "Q6140137" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04mcdza51.json b/v1.47/v1/04mcdza51.json new file mode 100644 index 000000000..36dbdac6f --- /dev/null +++ b/v1.47/v1/04mcdza51.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/04mcdza51", + "name": "Centre universitaire de médecine générale et santé publique, Lausanne", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + }, + { + "label": "Institute of Social and Preventive Medicine", + "type": "Predecessor", + "id": "https://ror.org/038esz880" + }, + { + "label": "Institute for Work and Health", + "type": "Predecessor", + "id": "https://ror.org/02rycsd19" + }, + { + "label": "Polyclinic Medical University", + "type": "Predecessor", + "id": "https://ror.org/02899vv07" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unisante.ch/fr/centre-medical" + ], + "aliases": [ + "Unisanté" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.511931.e", + "preferred": "grid.511931.e" + }, + "ISNI": { + "all": [ + "0000 0004 8513 0292" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04mn0nr69.json b/v1.47/v1/04mn0nr69.json new file mode 100644 index 000000000..bcb1cb7ab --- /dev/null +++ b/v1.47/v1/04mn0nr69.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/04mn0nr69", + "name": "Interactions, Corpus, Apprentissages, Représentations", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Lumière University Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "École Centrale de Lyon", + "type": "Parent", + "id": "https://ror.org/05s6rge65" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://icar.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "ICAR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.469454.e", + "preferred": "grid.469454.e" + }, + "ISNI": { + "all": [ + "0000 0000 8952 2454" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04mq2g308.json b/v1.47/v1/04mq2g308.json new file mode 100644 index 000000000..253f329ac --- /dev/null +++ b/v1.47/v1/04mq2g308.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/04mq2g308", + "name": "University of Applied Sciences and Arts Northwestern Switzerland", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Musik Akademie Basel", + "type": "Related", + "id": "https://ror.org/03bdt1p29" + }, + { + "label": "Pädagogische Hochschule FHNW", + "type": "Child", + "id": "https://ror.org/04fawj142" + } + ], + "addresses": [ + { + "lat": 47.47899, + "lng": 8.21842, + "state": null, + "state_code": null, + "city": "Windisch", + "geonames_city": { + "id": 2657976, + "city": "Windisch", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.fhnw.ch/homepage" + ], + "aliases": [ + "Fachhochschule Nordwestschweiz" + ], + "acronyms": [ + "FHNW" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.410380.e", + "preferred": "grid.410380.e" + }, + "ISNI": { + "all": [ + "0000 0001 1497 8091" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04mqtta86.json b/v1.47/v1/04mqtta86.json new file mode 100644 index 000000000..8f4e43e3d --- /dev/null +++ b/v1.47/v1/04mqtta86.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/04mqtta86", + "name": "University of Belgrade - Faculty of Physical Chemistry", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Belgrade", + "type": "Parent", + "id": "https://ror.org/02qsmb048" + } + ], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ffh.bg.ac.rs" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Univerzitet u Beogradu - Fakultet za fizičku hemiju", + "iso639": "sr" + }, + { + "label": "Универзитет у Београду - Факултет за физичку хемију", + "iso639": "sr" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": { + "GRID": { + "all": "grid.48997.3b", + "preferred": "grid.48997.3b" + }, + "ISNI": { + "all": [ + "0000 0004 0388 7209" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q13567379" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04mv1z119.json b/v1.47/v1/04mv1z119.json new file mode 100644 index 000000000..30b60272c --- /dev/null +++ b/v1.47/v1/04mv1z119.json @@ -0,0 +1,132 @@ +{ + "id": "https://ror.org/04mv1z119", + "name": "University of La Rochelle", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre d'Etudes Biologiques de Chizé", + "type": "Child", + "id": "https://ror.org/00s8hq550" + }, + { + "label": "LIttoral, ENvironment and Societies", + "type": "Child", + "id": "https://ror.org/00r8amq78" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur pour l'Environnement", + "type": "Child", + "id": "https://ror.org/01b2epx09" + }, + { + "label": "Laboratoire Mathématiques, Image et Applications", + "type": "Child", + "id": "https://ror.org/01r0cs760" + }, + { + "label": "Observatoire pour la Conservation de la Mégafaune Marine", + "type": "Child", + "id": "https://ror.org/04wbg2z51" + }, + { + "label": "D2iA - Dynamiques, Interactions et Interculturalité en Asie", + "type": "Child", + "id": "https://ror.org/04qmjst50" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Centre de recherches en histoire internationale et atlantique", + "type": "Child", + "id": "https://ror.org/058qdtv35" + } + ], + "addresses": [ + { + "lat": 46.16308, + "lng": -1.15222, + "state": null, + "state_code": null, + "city": "La Rochelle", + "geonames_city": { + "id": 3006787, + "city": "La Rochelle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-larochelle.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_La_Rochelle", + "labels": [ + { + "label": "Université de La Rochelle", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.11698.37", + "preferred": "grid.11698.37" + }, + "ISNI": { + "all": [ + "0000 0001 2169 7335" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1500822" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04mv5gg87.json b/v1.47/v1/04mv5gg87.json new file mode 100644 index 000000000..9f6e79c85 --- /dev/null +++ b/v1.47/v1/04mv5gg87.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04mv5gg87", + "name": "International Institute for Management Development", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.imd.org/" + ], + "aliases": [], + "acronyms": [ + "IMD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_Institute_for_Management_Development", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.462392.8", + "preferred": "grid.462392.8" + }, + "ISNI": { + "all": [ + "0000 0001 2110 4376" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q667972" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04mvx3d75.json b/v1.47/v1/04mvx3d75.json new file mode 100644 index 000000000..75ee32462 --- /dev/null +++ b/v1.47/v1/04mvx3d75.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/04mvx3d75", + "name": "Labex UnivEarthS", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univearths.fr" + ], + "aliases": [ + "UnivEarthS" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/04mwp2j83.json b/v1.47/v1/04mwp2j83.json new file mode 100644 index 000000000..7c787b20e --- /dev/null +++ b/v1.47/v1/04mwp2j83.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04mwp2j83", + "name": "Thiokol (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1929, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.223, + "lng": -111.97383, + "state": null, + "state_code": null, + "city": "Ogden", + "geonames_city": { + "id": 5779206, + "city": "Ogden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Thiokol", + "Thiokol Chemical Company", + "Thiokol Propulsion" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Thiokol", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2172 7178" + ], + "preferred": "0000 0001 2172 7178" + }, + "Wikidata": { + "all": [ + "Q2357348" + ], + "preferred": "Q2357348" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04n3hg563.json b/v1.47/v1/04n3hg563.json new file mode 100644 index 000000000..7188fad4b --- /dev/null +++ b/v1.47/v1/04n3hg563.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/04n3hg563", + "name": "West Negros University", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.66667, + "lng": 122.95, + "state": null, + "state_code": null, + "city": "Bacolod City", + "geonames_city": { + "id": 1729564, + "city": "Bacolod City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sti.edu/" + ], + "aliases": [ + "West Negros College" + ], + "acronyms": [ + "STI WNU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/West_Negros_University", + "labels": [ + { + "label": "Pamantasang STI ng Kanlurang Negros", + "iso639": "tl" + } + ], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "GRID": { + "all": "grid.449950.5", + "preferred": "grid.449950.5" + }, + "ISNI": { + "all": [ + "0000 0004 4676 9165" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7986055" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04n3wrd11.json b/v1.47/v1/04n3wrd11.json new file mode 100644 index 000000000..47bc73d53 --- /dev/null +++ b/v1.47/v1/04n3wrd11.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04n3wrd11", + "name": "Nowgong Girls' College", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Gauhati University", + "type": "Related", + "id": "https://ror.org/01ppj9r51" + } + ], + "addresses": [ + { + "lat": 26.31275, + "lng": 92.66879, + "state": null, + "state_code": null, + "city": "Nagaon", + "geonames_city": { + "id": 12684924, + "city": "Nagaon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nowgonggirlscollege.edu.in" + ], + "aliases": [ + "নগাঁও ছোৱালী কলেজ" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nowgong_Girls%27_College", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q39050015" + ], + "preferred": "Q39050015" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04pjzv747.json b/v1.47/v1/04pjzv747.json new file mode 100644 index 000000000..31f91c210 --- /dev/null +++ b/v1.47/v1/04pjzv747.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/04pjzv747", + "name": "LG Chem (South Korea)", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "LG (South Korea)", + "type": "Parent", + "id": "https://ror.org/03ddh2c27" + } + ], + "addresses": [ + { + "lat": 37.566, + "lng": 126.9784, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835848, + "city": "Seoul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lgchem.com" + ], + "aliases": [ + "LG Chem", + "LG Chemical" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/LG_Chem", + "labels": [ + { + "label": "LG화학", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0636 3187" + ], + "preferred": "0000 0004 0636 3187" + }, + "Wikidata": { + "all": [ + "Q486976" + ], + "preferred": "Q486976" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04px4e658.json b/v1.47/v1/04px4e658.json new file mode 100644 index 000000000..a5121018f --- /dev/null +++ b/v1.47/v1/04px4e658.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/04px4e658", + "name": "Délégation Alpes", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Grenoble Applied Economics Lab", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Institute for Advanced Biosciences", + "type": "Child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Bioénergétique Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05514hp74" + }, + { + "label": "Laboratoire de Linguistique et Didactique des Langues Etrangères et Maternelles", + "type": "Child", + "id": "https://ror.org/05588ks88" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Child", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.alpes.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR11" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457026.2", + "preferred": "grid.457026.2" + }, + "Wikidata": { + "all": [ + "Q30299256" + ], + "preferred": "Q30299256" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04q1kbj36.json b/v1.47/v1/04q1kbj36.json new file mode 100644 index 000000000..e585617c1 --- /dev/null +++ b/v1.47/v1/04q1kbj36.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04q1kbj36", + "name": "Délégation Normandie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Labex Synorg", + "type": "Child", + "id": "https://ror.org/03g19es12" + }, + { + "label": "Stress Environnementaux et Biosurveillance des Milieux Aquatiques", + "type": "Child", + "id": "https://ror.org/046cwyy43" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 49.18585, + "lng": -0.35912, + "state": null, + "state_code": null, + "city": "Caen", + "geonames_city": { + "id": 3029241, + "city": "Caen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.paris-normandie.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR19" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457020.4", + "preferred": "grid.457020.4" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04r3m2882.json b/v1.47/v1/04r3m2882.json new file mode 100644 index 000000000..f438a8b19 --- /dev/null +++ b/v1.47/v1/04r3m2882.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04r3m2882", + "name": "Southern University and Agricultural and Mechanical College", + "email_address": null, + "ip_addresses": [], + "established": 1880, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Southern University System", + "type": "Parent", + "id": "https://ror.org/03b6sp482" + } + ], + "addresses": [ + { + "lat": 30.44332, + "lng": -91.18747, + "state": null, + "state_code": null, + "city": "Baton Rouge", + "geonames_city": { + "id": 4315588, + "city": "Baton Rouge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.subr.edu" + ], + "aliases": [ + "Southern University A&M College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Southern_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.263880.7", + "preferred": "grid.263880.7" + }, + "ISNI": { + "all": [ + "0000 0004 0386 0655" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q627271" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04rm24644.json b/v1.47/v1/04rm24644.json new file mode 100644 index 000000000..fe915bdd1 --- /dev/null +++ b/v1.47/v1/04rm24644.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04rm24644", + "name": "Naval Aerospace Medical Institute", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 30.42131, + "lng": -87.21691, + "state": null, + "state_code": null, + "city": "Pensacola", + "geonames_city": { + "id": 4168228, + "city": "Pensacola", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.med.navy.mil/Navy-Medicine-Operational-Training-Command/Naval-Aerospace-Medical-Institute/" + ], + "aliases": [], + "acronyms": [ + "NAMI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.415863.d", + "preferred": "grid.415863.d" + }, + "ISNI": { + "all": [ + "0000 0000 8525 4309" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30280674" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04rrs1z45.json b/v1.47/v1/04rrs1z45.json new file mode 100644 index 000000000..4a235fea4 --- /dev/null +++ b/v1.47/v1/04rrs1z45.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/04rrs1z45", + "name": "Agrotest Fyto (Czechia)", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Agricultural Research Institute Kromeriz", + "type": "Parent", + "id": "https://ror.org/026vm4649" + }, + { + "label": "Association Of Research Organizations", + "type": "Related", + "id": "https://ror.org/017ewzp43" + } + ], + "addresses": [ + { + "lat": 49.29785, + "lng": 17.39312, + "state": null, + "state_code": null, + "city": "Kroměříž", + "geonames_city": { + "id": 3072649, + "city": "Kroměříž", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vukrom.cz/cz/agrotest-fyto-s-r-o.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Vysok%C3%A1_%C5%A1kola_evropsk%C3%BDch_a_region%C3%A1ln%C3%ADch_studi%C3%AD", + "labels": [ + { + "label": "Agrotest Fyto", + "iso639": "en" + }, + { + "label": "Agrotest fyto, s.r.o.", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q108935576" + ], + "preferred": "Q108935576" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04ryvdf08.json b/v1.47/v1/04ryvdf08.json new file mode 100644 index 000000000..b1ff9b49e --- /dev/null +++ b/v1.47/v1/04ryvdf08.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/04ryvdf08", + "name": "Space Research Institute", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Physical Sciences Division", + "type": "Parent", + "id": "https://ror.org/00ns9pc83" + } + ], + "addresses": [ + { + "lat": 55.75222, + "lng": 37.61556, + "state": null, + "state_code": null, + "city": "Moscow", + "geonames_city": { + "id": 524901, + "city": "Moscow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iki.cosmos.ru" + ], + "aliases": [ + "Federal State Institution of Science Institute of Space Research of the Russian Academy of Sciences", + "Russian Space Research Institute", + "Space Research Institute of the USSR Academy of Sciences" + ], + "acronyms": [ + "IKI", + "IKI AN SSSR", + "IKI RAN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Russian_Space_Research_Institute", + "labels": [ + { + "label": "Институт космических исследований", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.426428.e", + "preferred": "grid.426428.e" + }, + "ISNI": { + "all": [ + "0000 0004 0405 8736" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1433237" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04sjchr03.json b/v1.47/v1/04sjchr03.json new file mode 100644 index 000000000..479f38119 --- /dev/null +++ b/v1.47/v1/04sjchr03.json @@ -0,0 +1,147 @@ +{ + "id": "https://ror.org/04sjchr03", + "name": "Université Laval", + "email_address": null, + "ip_addresses": [], + "established": 1663, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Northern Studies", + "type": "Child", + "id": "https://ror.org/01q8ytn75" + }, + { + "label": "Amundsen Science", + "type": "Child", + "id": "https://ror.org/02s3xv195" + }, + { + "label": "Sentinelle Nord", + "type": "Child", + "id": "https://ror.org/03tzsdk41" + }, + { + "label": "Centre hospitalier universitaire de Québec", + "type": "Related", + "id": "https://ror.org/006a7pj43" + }, + { + "label": "Centre hospitalier de l'Université Laval", + "type": "Related", + "id": "https://ror.org/041v96n47" + }, + { + "label": "Hôtel-Dieu de Québec", + "type": "Related", + "id": "https://ror.org/034sbqc84" + }, + { + "label": "Institut Universitaire de Cardiologie et de Pneumologie de Québec", + "type": "Related", + "id": "https://ror.org/03gf7z214" + }, + { + "label": "Institut Universitaire en Santé Mentale de Québec", + "type": "Related", + "id": "https://ror.org/03mt5nv96" + }, + { + "label": "Érudit", + "type": "Related", + "id": "https://ror.org/05xay3m79" + }, + { + "label": "fabriqueREL", + "type": "Related", + "id": "https://ror.org/0155edt85" + }, + { + "label": "CentrEau - Quebec Water Management Research Centre", + "type": "Child", + "id": "https://ror.org/03wx0vn75" + } + ], + "addresses": [ + { + "lat": 46.81228, + "lng": -71.21454, + "state": null, + "state_code": null, + "city": "Québec", + "geonames_city": { + "id": 6325494, + "city": "Québec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www2.ulaval.ca/en/home.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Laval_University", + "labels": [ + { + "label": "Laval University", + "iso639": "en" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.23856.3a", + "preferred": "grid.23856.3a" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8390" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1067935" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04skqfp25.json b/v1.47/v1/04skqfp25.json new file mode 100644 index 000000000..49a2ae1a7 --- /dev/null +++ b/v1.47/v1/04skqfp25.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/04skqfp25", + "name": "St. Michael's Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1892, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Toronto", + "type": "Related", + "id": "https://ror.org/03dbr7087" + }, + { + "label": "Unity Health Toronto", + "type": "Parent", + "id": "https://ror.org/012x5xb44" + } + ], + "addresses": [ + { + "lat": 43.70643, + "lng": -79.39864, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unityhealth.to/locations/st-michaels-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/St._Michael's_Hospital_(Toronto)", + "labels": [ + { + "label": "Hôpital St. Michael", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.415502.7", + "preferred": "grid.415502.7" + }, + "Wikidata": { + "all": [ + "Q3145237" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04t59f227.json b/v1.47/v1/04t59f227.json new file mode 100644 index 000000000..c62f37d99 --- /dev/null +++ b/v1.47/v1/04t59f227.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/04t59f227", + "name": "Our Lady of Apostles College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1924, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Cape Coast", + "type": "Related", + "id": "https://ror.org/0492nfe34" + } + ], + "addresses": [ + { + "lat": 5.10535, + "lng": -1.2466, + "state": null, + "state_code": null, + "city": "Cape Coast", + "geonames_city": { + "id": 2302357, + "city": "Cape Coast", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.olacoe.edu.gh" + ], + "aliases": [ + "OLA College of Education", + "OLA Training College" + ], + "acronyms": [ + "OLACoE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Our_Lady_of_Apostles_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q25208128" + ], + "preferred": "Q25208128" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04tjqa790.json b/v1.47/v1/04tjqa790.json new file mode 100644 index 000000000..4ba8dade9 --- /dev/null +++ b/v1.47/v1/04tjqa790.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/04tjqa790", + "name": "Institut SYMLOG de France", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Institut Symlog" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/04vvy0t36.json b/v1.47/v1/04vvy0t36.json new file mode 100644 index 000000000..443e374b5 --- /dev/null +++ b/v1.47/v1/04vvy0t36.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/04vvy0t36", + "name": "Syntea", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.25, + "lng": 22.56667, + "state": null, + "state_code": null, + "city": "Lublin", + "geonames_city": { + "id": 765876, + "city": "Lublin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://syntea.pl" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "GRID": { + "all": "grid.499057.6", + "preferred": "grid.499057.6" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04vxq1969.json b/v1.47/v1/04vxq1969.json new file mode 100644 index 000000000..e81116be5 --- /dev/null +++ b/v1.47/v1/04vxq1969.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/04vxq1969", + "name": "Naval Medical Center Portsmouth", + "email_address": null, + "ip_addresses": [], + "established": 1827, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 36.83543, + "lng": -76.29827, + "state": null, + "state_code": null, + "city": "Portsmouth", + "geonames_city": { + "id": 4779999, + "city": "Portsmouth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.med.navy.mil/sites/NMCP2" + ], + "aliases": [ + "Naval Hospital Portsmouth" + ], + "acronyms": [ + "NMCP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naval_Medical_Center_Portsmouth", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.415882.2", + "preferred": "grid.415882.2" + }, + "ISNI": { + "all": [ + "0000 0000 9013 4774" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q12063609" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04vzt1785.json b/v1.47/v1/04vzt1785.json new file mode 100644 index 000000000..c88ac5931 --- /dev/null +++ b/v1.47/v1/04vzt1785.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04vzt1785", + "name": "Ministerio del Comercio Interior", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Observatorio Científico Comercio Interior", + "type": "Child", + "id": "https://ror.org/00p0app75" + } + ], + "addresses": [ + { + "lat": 23.13302, + "lng": -82.38304, + "state": null, + "state_code": null, + "city": "Havana", + "geonames_city": { + "id": 3553478, + "city": "Havana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mincin.gob.cu" + ], + "aliases": [ + "Ministerio del Comercio Interior de la República de Cuba", + "Ministry of Domestic Trade", + "Ministry of Domestic Trade of the Republic of Cuba" + ], + "acronyms": [ + "MINCIN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Cuba", + "country_code": "CU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q47262992" + ], + "preferred": "Q47262992" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04w3jy968.json b/v1.47/v1/04w3jy968.json new file mode 100644 index 000000000..81fb3fe1e --- /dev/null +++ b/v1.47/v1/04w3jy968.json @@ -0,0 +1,152 @@ +{ + "id": "https://ror.org/04w3jy968", + "name": "Samsung (South Korea)", + "email_address": null, + "ip_addresses": [], + "established": 1938, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Samsung (Brazil)", + "type": "Child", + "id": "https://ror.org/052a20h63" + }, + { + "label": "Samsung (China)", + "type": "Child", + "id": "https://ror.org/04yt00889" + }, + { + "label": "Samsung (Germany)", + "type": "Child", + "id": "https://ror.org/04s4k6s39" + }, + { + "label": "Samsung (India)", + "type": "Child", + "id": "https://ror.org/04cpx2569" + }, + { + "label": "Samsung (Israel)", + "type": "Child", + "id": "https://ror.org/03k1ymh78" + }, + { + "label": "Samsung (Japan)", + "type": "Child", + "id": "https://ror.org/01x29j481" + }, + { + "label": "Samsung (Poland)", + "type": "Child", + "id": "https://ror.org/0381acm07" + }, + { + "label": "Samsung (Switzerland)", + "type": "Child", + "id": "https://ror.org/04prhfn63" + }, + { + "label": "Samsung (United Kingdom)", + "type": "Child", + "id": "https://ror.org/01w6gjq94" + }, + { + "label": "Samsung (United States)", + "type": "Child", + "id": "https://ror.org/01bfbvm65" + }, + { + "label": "Samsung Medison (South Korea)", + "type": "Child", + "id": "https://ror.org/05k6h9r09" + }, + { + "label": "Samsung SDS (South Korea)", + "type": "Child", + "id": "https://ror.org/0476bn305" + } + ], + "addresses": [ + { + "lat": 37.566, + "lng": 126.9784, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835848, + "city": "Seoul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.samsung.com/sec/home/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Samsung", + "labels": [ + { + "label": "삼성", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "GRID": { + "all": "grid.419666.a", + "preferred": "grid.419666.a" + }, + "ISNI": { + "all": [ + "0000 0001 1945 5898" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q20716" + ], + "preferred": "Q20716" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04w3ppj64.json b/v1.47/v1/04w3ppj64.json new file mode 100644 index 000000000..ca9a1c8d3 --- /dev/null +++ b/v1.47/v1/04w3ppj64.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04w3ppj64", + "name": "Onderwijsraad", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.07667, + "lng": 4.29861, + "state": null, + "state_code": null, + "city": "The Hague", + "geonames_city": { + "id": 2747373, + "city": "The Hague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.onderwijsraad.nl" + ], + "aliases": [ + "Dutch Education Council" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "GRID": { + "all": "grid.465227.0", + "preferred": "grid.465227.0" + }, + "ISNI": { + "all": [ + "0000 0004 0510 7173" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04w46c814.json b/v1.47/v1/04w46c814.json new file mode 100644 index 000000000..abb87d6b3 --- /dev/null +++ b/v1.47/v1/04w46c814.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04w46c814", + "name": "United States Fleet Forces Command", + "email_address": null, + "ip_addresses": [], + "established": 1906, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 36.84681, + "lng": -76.28522, + "state": null, + "state_code": null, + "city": "Norfolk", + "geonames_city": { + "id": 4776222, + "city": "Norfolk", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usff.navy.mil" + ], + "aliases": [ + "U.S. Fleet Forces", + "U.S. Fleet Forces Command", + "United States Fleet Forces" + ], + "acronyms": [ + "USFF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_States_Fleet_Forces_Command", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q2297940" + ], + "preferred": "Q2297940" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04wdvc711.json b/v1.47/v1/04wdvc711.json new file mode 100644 index 000000000..a26f24c2c --- /dev/null +++ b/v1.47/v1/04wdvc711.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04wdvc711", + "name": "Laboratoire d'économie appliquée au développement", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Toulon", + "type": "Parent", + "id": "https://ror.org/02m9kbe37" + } + ], + "addresses": [ + { + "lat": 43.12442, + "lng": 5.92836, + "state": null, + "state_code": null, + "city": "Toulon", + "geonames_city": { + "id": 2972328, + "city": "Toulon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lead.univ-tln.fr" + ], + "aliases": [ + "Laboratoire LEAD" + ], + "acronyms": [ + "LEAD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q125747956" + ], + "preferred": "Q125747956" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04x7z1r26.json b/v1.47/v1/04x7z1r26.json new file mode 100644 index 000000000..a87b32e04 --- /dev/null +++ b/v1.47/v1/04x7z1r26.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04x7z1r26", + "name": "GMT Technology (Shenzhen) Co., Ltd. (China)", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.54554, + "lng": 114.0683, + "state": null, + "state_code": null, + "city": "Shenzhen", + "geonames_city": { + "id": 1795565, + "city": "Shenzhen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://gmtec.cc" + ], + "aliases": [ + "GMT Technology", + "GMT Technology Co.", + "GMT Technology Co., Ltd.", + "港美通科技(深圳)有限公司" + ], + "acronyms": [ + "GMT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "GMT Technology (Shenzhen) Co., Ltd.", + "iso639": "en" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/04y0q2a96.json b/v1.47/v1/04y0q2a96.json new file mode 100644 index 000000000..e923f849b --- /dev/null +++ b/v1.47/v1/04y0q2a96.json @@ -0,0 +1,169 @@ +{ + "id": "https://ror.org/04y0q2a96", + "name": "Zimbabwe University Libraries Consortium", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Africa University", + "type": "Related", + "id": "https://ror.org/04dj2za52" + }, + { + "label": "Arrupe Jesuit University", + "type": "Related", + "id": "https://ror.org/00pffe521" + }, + { + "label": "Bindura University of Science Education", + "type": "Related", + "id": "https://ror.org/042zvmz29" + }, + { + "label": "Catholic University of Zimbabwe", + "type": "Related", + "id": "https://ror.org/04k6va493" + }, + { + "label": "Chinhoyi University of Technology", + "type": "Related", + "id": "https://ror.org/005f4y685" + }, + { + "label": "Great Zimbabwe University", + "type": "Related", + "id": "https://ror.org/00wn5gw44" + }, + { + "label": "Gwanda State University", + "type": "Related", + "id": "https://ror.org/02s5cdn70" + }, + { + "label": "Harare Institute of Technology", + "type": "Related", + "id": "https://ror.org/02e7r0h80" + }, + { + "label": "Lupane State University", + "type": "Related", + "id": "https://ror.org/05fzhrv79" + }, + { + "label": "Klaipeda State University of Applied Sciences", + "type": "Related", + "id": "https://ror.org/01cm4sr79" + }, + { + "label": "Midlands State University", + "type": "Related", + "id": "https://ror.org/02gv1gw80" + }, + { + "label": "National University of Science and Technology", + "type": "Related", + "id": "https://ror.org/02kesvt12" + }, + { + "label": "Reformed Church University", + "type": "Related", + "id": "https://ror.org/020bm8k34" + }, + { + "label": "Solusi University", + "type": "Related", + "id": "https://ror.org/00c9gh315" + }, + { + "label": "University of Zimbabwe", + "type": "Related", + "id": "https://ror.org/04ze6rb18" + }, + { + "label": "Women's University in Africa", + "type": "Related", + "id": "https://ror.org/05hdq6q33" + }, + { + "label": "Zimbabwe Ezekiel Guti University", + "type": "Related", + "id": "https://ror.org/052ygfd66" + }, + { + "label": "Zimbabwe Open University", + "type": "Related", + "id": "https://ror.org/05kyrk544" + } + ], + "addresses": [ + { + "lat": -17.82772, + "lng": 31.05337, + "state": null, + "state_code": null, + "city": "Harare", + "geonames_city": { + "id": 890299, + "city": "Harare", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.zulc.ac.zw" + ], + "aliases": [], + "acronyms": [ + "ZULC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q117447595" + ], + "preferred": "Q117447595" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04y24xj84.json b/v1.47/v1/04y24xj84.json new file mode 100644 index 000000000..c87e90339 --- /dev/null +++ b/v1.47/v1/04y24xj84.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04y24xj84", + "name": "Equipe de recherche de Lyon en Sciences de l'Information et de la Communication", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Claude Bernard University Lyon 1", + "type": "Parent", + "id": "https://ror.org/029brtt94" + }, + { + "label": "Jean Moulin University Lyon 3", + "type": "Parent", + "id": "https://ror.org/05b5c0584" + }, + { + "label": "Lumière University Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "École nationale supérieure des sciences de l'information et des bibliothèques", + "type": "Parent", + "id": "https://ror.org/059qr5h87" + }, + { + "label": "Sciences Po Lyon", + "type": "Parent", + "id": "https://ror.org/02h3vcz70" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + } + ], + "addresses": [ + { + "lat": 45.76601, + "lng": 4.8795, + "state": null, + "state_code": null, + "city": "Villeurbanne", + "geonames_city": { + "id": 2968254, + "city": "Villeurbanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.elico-recherche.eu/" + ], + "aliases": [], + "acronyms": [ + "ELICO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482733.9", + "preferred": "grid.482733.9" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04yanv433.json b/v1.47/v1/04yanv433.json new file mode 100644 index 000000000..b9cb55cfb --- /dev/null +++ b/v1.47/v1/04yanv433.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/04yanv433", + "name": "NOVARTIS Foundation for the Promotion of Science (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.65, + "lng": 139.73333, + "state": null, + "state_code": null, + "city": "Minato-ku", + "geonames_city": { + "id": 1857091, + "city": "Minato-ku", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://japanfoundation.novartis.org" + ], + "aliases": [ + "NOVARTIS Foundation (Japan)" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/04yrth272.json b/v1.47/v1/04yrth272.json new file mode 100644 index 000000000..02cc670d2 --- /dev/null +++ b/v1.47/v1/04yrth272.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/04yrth272", + "name": "Akademia Nauk Stosowanych w Wałcz", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.27787, + "lng": 16.47122, + "state": null, + "state_code": null, + "city": "Wałcz", + "geonames_city": { + "id": 3082704, + "city": "Wałcz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://answalcz.pl" + ], + "aliases": [ + "PWSZ in Wałcz", + "State Higher Vocational School in Wałcz", + "University of Applied Sciences in Wałcz" + ], + "acronyms": [ + "PWSZ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "ANS w Wałczu", + "iso639": "pl" + }, + { + "label": "Państwowa Wyższa Szkoła Zawodowa w Wałczu", + "iso639": "pl" + }, + { + "label": "State Higher Vocational School in Wałcz", + "iso639": "en" + } + ], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "GRID": { + "all": "grid.467036.0", + "preferred": "grid.467036.0" + }, + "ISNI": { + "all": [ + "0000 0004 0578 721X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04z0np064.json b/v1.47/v1/04z0np064.json new file mode 100644 index 000000000..9c8d48ce4 --- /dev/null +++ b/v1.47/v1/04z0np064.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04z0np064", + "name": "The Arab Council for the Social Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.89332, + "lng": 35.50157, + "state": null, + "state_code": null, + "city": "Beirut", + "geonames_city": { + "id": 276781, + "city": "Beirut", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.theacss.org" + ], + "aliases": [ + "Arab Council for the Social Sciences" + ], + "acronyms": [ + "ACSS" + ], + "status": "active", + "wikipedia_url": "https://ar.wikipedia.org/wiki/%D8%A7%D9%84%D9%85%D8%AC%D9%84%D8%B3_%D8%A7%D9%84%D8%B9%D8%B1%D8%A8%D9%8A_%D9%84%D9%84%D8%B9%D9%84%D9%88%D9%85_%D8%A7%D9%84%D8%A7%D8%AC%D8%AA%D9%85%D8%A7%D8%B9%D9%8A%D8%A9", + "labels": [ + { + "label": "Conseil Arabe pour les Sciences Sociales", + "iso639": "fr" + }, + { + "label": "المجلس العربي للعلوم الاجتماعية", + "iso639": "ar" + } + ], + "country": { + "country_name": "Lebanon", + "country_code": "LB" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q79468031" + ], + "preferred": "Q79468031" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04z6kfz30.json b/v1.47/v1/04z6kfz30.json new file mode 100644 index 000000000..ddff7e8f5 --- /dev/null +++ b/v1.47/v1/04z6kfz30.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/04z6kfz30", + "name": "Lviv State University of Physical Culture", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ldufk.edu.ua/index.php/golovna-1.html" + ], + "aliases": [ + "Ivan Bobersky Lviv State University of Physical Culture" + ], + "acronyms": [ + "LDUFK", + "ЛДУФК" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lviv_State_University_of_Physical_Culture", + "labels": [ + { + "label": "Lwowski Państwowy Uniwersytet Kultury Fizycznej", + "iso639": "pl" + }, + { + "label": "Львовский государственный университет физической культуры", + "iso639": "ru" + }, + { + "label": "Львівський державний університет фізичної культури", + "iso639": "uk" + }, + { + "label": "Львівський державний університет фізичної культури імені Івана Боберського", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "GRID": { + "all": "grid.445848.1", + "preferred": "grid.445848.1" + }, + "Wikidata": { + "all": [ + "Q4271075" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04z8k9a98.json b/v1.47/v1/04z8k9a98.json new file mode 100644 index 000000000..a87018178 --- /dev/null +++ b/v1.47/v1/04z8k9a98.json @@ -0,0 +1,137 @@ +{ + "id": "https://ror.org/04z8k9a98", + "name": "University of Coimbra", + "email_address": null, + "ip_addresses": [], + "established": 1290, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre for Research in Anthropology", + "type": "Child", + "id": "https://ror.org/043ft3840" + }, + { + "label": "Brain Imaging Network", + "type": "Child", + "id": "https://ror.org/01d3r6z34" + }, + { + "label": "MARE - Centro de Ciências do Mar e do Ambiente", + "type": "Child", + "id": "https://ror.org/03cvzf910" + }, + { + "label": "Centro de Estudos Sociais", + "type": "Child", + "id": "https://ror.org/04fab7w85" + }, + { + "label": "Centro de Neurociências e Biologia Celular", + "type": "Child", + "id": "https://ror.org/01nzkd566" + }, + { + "label": "Hospitais da Universidade de Coimbra", + "type": "Related", + "id": "https://ror.org/04032fz76" + }, + { + "label": "Instituto de Telecomunicações", + "type": "Related", + "id": "https://ror.org/02ht4fk33" + }, + { + "label": "Associação para o Desenvolvimento da Aerodinâmica Industrial", + "type": "Child", + "id": "https://ror.org/05gh16g69" + }, + { + "label": "Instituto de Estudos Filosóficos", + "type": "Child", + "id": "https://ror.org/055v4a470" + } + ], + "addresses": [ + { + "lat": 40.20564, + "lng": -8.41955, + "state": null, + "state_code": null, + "city": "Coimbra", + "geonames_city": { + "id": 2740637, + "city": "Coimbra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uc.pt/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Coimbra", + "labels": [ + { + "label": "Universidade de Coimbra", + "iso639": "pt" + } + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "GRID": { + "all": "grid.8051.c", + "preferred": "grid.8051.c" + }, + "ISNI": { + "all": [ + "0000 0000 9511 4342" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q368643" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04zaypm56.json b/v1.47/v1/04zaypm56.json new file mode 100644 index 000000000..31ca1e223 --- /dev/null +++ b/v1.47/v1/04zaypm56.json @@ -0,0 +1,663 @@ +{ + "id": "https://ror.org/04zaypm56", + "name": "National Research Council", + "email_address": null, + "ip_addresses": [], + "established": 1923, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Bologna Research Area", + "type": "Child", + "id": "https://ror.org/03v4rcp75" + }, + { + "label": "Construction Technologies Institute", + "type": "Child", + "id": "https://ror.org/0221agg28" + }, + { + "label": "Fondazione Toscana Gabriele Monasterio", + "type": "Child", + "id": "https://ror.org/058a2pj71" + }, + { + "label": "Institute for Advanced Energy Technologies", + "type": "Child", + "id": "https://ror.org/052q58629" + }, + { + "label": "Institute for Agricultural and Earthmoving Machines", + "type": "Child", + "id": "https://ror.org/045zphe57" + }, + { + "label": "Institute for Archaeological and Monumental Heritage", + "type": "Child", + "id": "https://ror.org/00x5wpm25" + }, + { + "label": "Institute for Chemical and Physical Processes", + "type": "Child", + "id": "https://ror.org/05patmk97" + }, + { + "label": "Institute for Coastal Marine Environment", + "type": "Child", + "id": "https://ror.org/006qkqr45" + }, + { + "label": "Institute for Complex Systems", + "type": "Child", + "id": "https://ror.org/05rcgef49" + }, + { + "label": "Institute for Computational Linguistics “A. Zampolli”", + "type": "Child", + "id": "https://ror.org/028g3pe33" + }, + { + "label": "Institute for Economic Research on Firms and Growth", + "type": "Child", + "id": "https://ror.org/051npad76" + }, + { + "label": "Institute for Energetics and Interphases", + "type": "Child", + "id": "https://ror.org/01jt38m64" + }, + { + "label": "Institute for Experimental Endocrinology and Oncology", + "type": "Child", + "id": "https://ror.org/04sn06036" + }, + { + "label": "Institute for High Performance Computing and Networking", + "type": "Child", + "id": "https://ror.org/04r5fge26" + }, + { + "label": "Institute for International Legal Studies", + "type": "Child", + "id": "https://ror.org/035y5td47" + }, + { + "label": "Institute for Macromolecular Studies", + "type": "Child", + "id": "https://ror.org/01mfmr054" + }, + { + "label": "Institute for Microelectronics and Microsystems", + "type": "Child", + "id": "https://ror.org/05vk2g845" + }, + { + "label": "Institute for Research on Combustion", + "type": "Child", + "id": "https://ror.org/05813wx75" + }, + { + "label": "Institute for Research on Innovation and Services for Development", + "type": "Child", + "id": "https://ror.org/04vnwke91" + }, + { + "label": "Institute for Research on Population and Social Policies", + "type": "Child", + "id": "https://ror.org/01n1ayq61" + }, + { + "label": "Institute for Sustainable Plant Protection", + "type": "Child", + "id": "https://ror.org/008fjbg42" + }, + { + "label": "Institute for Technologies Applied to Cultural Heritage", + "type": "Child", + "id": "https://ror.org/0331xj092" + }, + { + "label": "Institute for the Chemistry of OrganoMetallic Compounds", + "type": "Child", + "id": "https://ror.org/02fkw1114" + }, + { + "label": "Institute for the Conservation and Valorization of Cultural Heritage", + "type": "Child", + "id": "https://ror.org/02ynrme92" + }, + { + "label": "Institute for the Dynamics of Environmental Processes", + "type": "Child", + "id": "https://ror.org/03z58xd74" + }, + { + "label": "Institute for the Science and Technology of Plasmas", + "type": "Child", + "id": "https://ror.org/047rmsn51" + }, + { + "label": "Institute for the Study of Regionalism, Federalism and Self-Government", + "type": "Child", + "id": "https://ror.org/05k3cs357" + }, + { + "label": "Institute of Acoustics and Sensors \"Orso Mario Corbino\"", + "type": "Child", + "id": "https://ror.org/00brf2d87" + }, + { + "label": "Institute of Agricultural Biology and Biotechnology", + "type": "Child", + "id": "https://ror.org/02e5sbe24" + }, + { + "label": "Institute of Applied Science and Intelligent Systems", + "type": "Child", + "id": "https://ror.org/00be3zh53" + }, + { + "label": "Institute of Atmospheric Pollution Research", + "type": "Child", + "id": "https://ror.org/05hky6p02" + }, + { + "label": "Institute of Atmospheric Sciences and Climate", + "type": "Child", + "id": "https://ror.org/00n8ttd98" + }, + { + "label": "Institute of Biomedical Technologies", + "type": "Child", + "id": "https://ror.org/04ehykb85" + }, + { + "label": "Institute of Biomembranes, Bioenergetics and Molecular Biotechnologies", + "type": "Child", + "id": "https://ror.org/05nzf7q96" + }, + { + "label": "Institute of Biosciences and Bioresources", + "type": "Child", + "id": "https://ror.org/01gtsa866" + }, + { + "label": "Institute of Biostructure and Bioimaging", + "type": "Child", + "id": "https://ror.org/03rqtqb02" + }, + { + "label": "Institute of Cell Biology and Neurobiology", + "type": "Child", + "id": "https://ror.org/040xhth73" + }, + { + "label": "Institute of Chemistry of Molecular Recognition", + "type": "Child", + "id": "https://ror.org/0141vn777" + }, + { + "label": "Institute of Cognitive Sciences and Technologies", + "type": "Child", + "id": "https://ror.org/05w9g2j85" + }, + { + "label": "Institute of Condensed Matter Chemistry and Technologies for Energy", + "type": "Child", + "id": "https://ror.org/01rg40y89" + }, + { + "label": "Institute of Crystallography", + "type": "Child", + "id": "https://ror.org/05wba8r86" + }, + { + "label": "Institute of Ecosystem Study", + "type": "Child", + "id": "https://ror.org/029k6t707" + }, + { + "label": "Institute of Electronics, Computer and Telecommunication Engineering", + "type": "Child", + "id": "https://ror.org/00n4jbh84" + }, + { + "label": "Institute of Environmental Geology and Geoengineering", + "type": "Child", + "id": "https://ror.org/00ytw6m58" + }, + { + "label": "Institute of Food Science", + "type": "Child", + "id": "https://ror.org/0013zhk30" + }, + { + "label": "Institute of Genetic and Biomedical Research", + "type": "Child", + "id": "https://ror.org/02dr63s31" + }, + { + "label": "Institute of Genetics and Biophysics", + "type": "Child", + "id": "https://ror.org/04hadk112" + }, + { + "label": "Institute of Geosciences and Earth Resources", + "type": "Child", + "id": "https://ror.org/015bmra78" + }, + { + "label": "Institute of History of Mediterranean Europe", + "type": "Child", + "id": "https://ror.org/03a111314" + }, + { + "label": "Institute of Informatics and Telematics", + "type": "Child", + "id": "https://ror.org/02gdcn153" + }, + { + "label": "Institute of Information Science and Technologies", + "type": "Child", + "id": "https://ror.org/05kacka20" + }, + { + "label": "Institute of Inorganic Methodologies and Plasmas", + "type": "Child", + "id": "https://ror.org/03a0vt050" + }, + { + "label": "Institute of Ionized Gas", + "type": "Child", + "id": "https://ror.org/01f5tnx94" + }, + { + "label": "Institute of Marine Engineering", + "type": "Child", + "id": "https://ror.org/02qnx8e75" + }, + { + "label": "Institute of Marine Science", + "type": "Child", + "id": "https://ror.org/02hdf6119" + }, + { + "label": "Institute of Materials for Electronics and Magnetism", + "type": "Child", + "id": "https://ror.org/00z8ws214" + }, + { + "label": "National Research Council - Institute of Methodologies for Environmental Analysis", + "type": "Child", + "id": "https://ror.org/024ye7w89" + }, + { + "label": "Institute of Molecular Bioimaging and Physiology", + "type": "Child", + "id": "https://ror.org/00s2j5046" + }, + { + "label": "Institute of Molecular Biology and Pathology", + "type": "Child", + "id": "https://ror.org/01nyatq71" + }, + { + "label": "Institute of Molecular Science and Technologies", + "type": "Child", + "id": "https://ror.org/032tyv240" + }, + { + "label": "Institute of Nanostructured Materials", + "type": "Child", + "id": "https://ror.org/00w6r1881" + }, + { + "label": "Institute of Neurobiology and Molecular Medicine", + "type": "Child", + "id": "https://ror.org/04smrs866" + }, + { + "label": "Institute of Neurological Sciences", + "type": "Child", + "id": "https://ror.org/01yg57d71" + }, + { + "label": "Institute of Organic Synthesis and Photoreactivity", + "type": "Child", + "id": "https://ror.org/021z1mz76" + }, + { + "label": "Institute of Plasma Physics", + "type": "Child", + "id": "https://ror.org/02n2bgz18" + }, + { + "label": "Institute of Polymers, Composites and Biomaterials", + "type": "Child", + "id": "https://ror.org/05nr7xa08" + }, + { + "label": "Institute of Protein Biochemistry", + "type": "Child", + "id": "https://ror.org/03eqeqg74" + }, + { + "label": "Institute of Science and Technology for Ceramics", + "type": "Child", + "id": "https://ror.org/01j6drw72" + }, + { + "label": "Institute of Sciences of Food Production", + "type": "Child", + "id": "https://ror.org/03x7xkr71" + }, + { + "label": "Institute of Structure of Matter", + "type": "Child", + "id": "https://ror.org/01zz9wh30" + }, + { + "label": "Institute of Studies on Mediterranean Societies", + "type": "Child", + "id": "https://ror.org/05db0es39" + }, + { + "label": "Institute on Membrane Technology", + "type": "Child", + "id": "https://ror.org/058nrs650" + }, + { + "label": "Istituto Motori", + "type": "Child", + "id": "https://ror.org/02qwy8e97" + }, + { + "label": "Istituto Nanoscienze", + "type": "Child", + "id": "https://ror.org/0042e5975" + }, + { + "label": "Istituto Nazionale di Ottica", + "type": "Child", + "id": "https://ror.org/02dp3a879" + }, + { + "label": "Istituto Nazionale per Studi ed Esperienze di Architettura Navale", + "type": "Child", + "id": "https://ror.org/00ag5y002" + }, + { + "label": "Istituto Nazionale per la Fisica della Materia", + "type": "Child", + "id": "https://ror.org/02kswma64" + }, + { + "label": "Istituto Officina dei Materiali", + "type": "Child", + "id": "https://ror.org/00yfw2296" + }, + { + "label": "Istituto di Analisi dei Sistemi ed Informatica Antonio Ruberti", + "type": "Child", + "id": "https://ror.org/054ye0e45" + }, + { + "label": "Istituto di Biologia e Biotecnologia Agraria", + "type": "Child", + "id": "https://ror.org/01ar90c17" + }, + { + "label": "Istituto di Biomedicina e di Immunologia Molecolare Alberto Monroy", + "type": "Child", + "id": "https://ror.org/01dy2q607" + }, + { + "label": "Istituto di Biometeorologia", + "type": "Child", + "id": "https://ror.org/05m1yqp60" + }, + { + "label": "Istituto di Cibernetica “Eduardo Caianiello”", + "type": "Child", + "id": "https://ror.org/05cdfm144" + }, + { + "label": "Istituto di Farmacologia Traslazionale", + "type": "Child", + "id": "https://ror.org/03ta8pf33" + }, + { + "label": "Istituto di Fisiologia Clinica", + "type": "Child", + "id": "https://ror.org/01kdj2848" + }, + { + "label": "Istituto di Fotonica e Nanotecnologie", + "type": "Child", + "id": "https://ror.org/049ebw417" + }, + { + "label": "Istituto di Genetica Molecolare", + "type": "Child", + "id": "https://ror.org/03qpd8w66" + }, + { + "label": "Istituto di Matematica Applicata e Tecnologie Informatiche", + "type": "Child", + "id": "https://ror.org/03m0n3c07" + }, + { + "label": "Istituto di Metodologie Chimiche", + "type": "Child", + "id": "https://ror.org/0263zy895" + }, + { + "label": "Istituto di Nanotecnologia", + "type": "Child", + "id": "https://ror.org/00bc51d88" + }, + { + "label": "Istituto di Studi sul Mediterraneo Antico", + "type": "Child", + "id": "https://ror.org/02gcxw165" + }, + { + "label": "Istituto di Tipizzazione Tissutale e Problemi della Dialisi", + "type": "Child", + "id": "https://ror.org/01zzqep61" + }, + { + "label": "Istituto per il Lessico Intellettuale Europeo e la Storia delle Idee", + "type": "Child", + "id": "https://ror.org/011n2hw53" + }, + { + "label": "Istituto per il Rilevamento Elettromagnetico dell'Ambiente", + "type": "Child", + "id": "https://ror.org/02wxw4x45" + }, + { + "label": "Istituto per il Sistema Produzione Animale in Ambiente Mediterraneo", + "type": "Child", + "id": "https://ror.org/01wqae691" + }, + { + "label": "Istituto per la Storia del Pensiero Filosofico e Scientifico Moderno", + "type": "Child", + "id": "https://ror.org/00awwz417" + }, + { + "label": "Istituto per le Applicazioni del Calcolo Mauro Picone", + "type": "Child", + "id": "https://ror.org/00ygy3d85" + }, + { + "label": "Istituto per le Tecnologie Didattiche", + "type": "Child", + "id": "https://ror.org/02xz4xc25" + }, + { + "label": "Nello Carrara Institute of Applied Physics", + "type": "Child", + "id": "https://ror.org/00dqega85" + }, + { + "label": "Neuroscience Institute", + "type": "Child", + "id": "https://ror.org/0240rwx68" + }, + { + "label": "Opera del Vocabolario Italiano", + "type": "Child", + "id": "https://ror.org/02rzxrg25" + }, + { + "label": "Organ Transplantation and Immunology Institute", + "type": "Child", + "id": "https://ror.org/01y5w6t76" + }, + { + "label": "Research Institute for Geo-Hydrological Protection", + "type": "Child", + "id": "https://ror.org/0040zx077" + }, + { + "label": "Superconducting and other Innovative Materials and Devices Institute", + "type": "Child", + "id": "https://ror.org/00p03yg71" + }, + { + "label": "Trees and Timber Institute", + "type": "Child", + "id": "https://ror.org/04xy2mq71" + }, + { + "label": "Water Research Institute", + "type": "Child", + "id": "https://ror.org/02db0kh50" + }, + { + "label": "Institute for Biological Systems", + "type": "Child", + "id": "https://ror.org/05w88pj86" + }, + { + "label": "Institute for the Study of Anthropic Impact and Sustainability in the Marine Environment", + "type": "Child", + "id": "https://ror.org/013fk0013" + }, + { + "label": "Institute for Marine Biological Resources and Biotechnology", + "type": "Child", + "id": "https://ror.org/00pb0ac76" + }, + { + "label": "Istituto di Informatica Giuridica e Sistemi Giudiziari", + "type": "Child", + "id": "https://ror.org/02pe09j37" + }, + { + "label": "DASSI - Data Archive for Social Sciences in Italy", + "type": "Child", + "id": "https://ror.org/028znnm42" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "Child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "EC-Earth Consortium", + "type": "Related", + "id": "https://ror.org/010bg5245" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cnr.it" + ], + "aliases": [], + "acronyms": [ + "CNR" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/National_Research_Council_%28Italy%29", + "labels": [ + { + "label": "Conseil National de la Recherche", + "iso639": "fr" + }, + { + "label": "Consiglio Nazionale delle Ricerche", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.5326.2", + "preferred": "grid.5326.2" + }, + "ISNI": { + "all": [ + "0000 0001 1940 4177" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q902464" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04ze6rb18.json b/v1.47/v1/04ze6rb18.json new file mode 100644 index 000000000..7c9b9ed34 --- /dev/null +++ b/v1.47/v1/04ze6rb18.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/04ze6rb18", + "name": "University of Zimbabwe", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Mpilo Central Hospital", + "type": "Related", + "id": "https://ror.org/05d9wmt54" + }, + { + "label": "Parirenyatwa Hospital", + "type": "Related", + "id": "https://ror.org/02ms6eb12" + }, + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -17.82772, + "lng": 31.05337, + "state": null, + "state_code": null, + "city": "Harare", + "geonames_city": { + "id": 890299, + "city": "Harare", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uz.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "UZ" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Zimbabwe", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.13001.33", + "preferred": "grid.13001.33" + }, + "ISNI": { + "all": [ + "0000 0004 0572 0760" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q581954" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04zmssz18.json b/v1.47/v1/04zmssz18.json new file mode 100644 index 000000000..e18eb1d5a --- /dev/null +++ b/v1.47/v1/04zmssz18.json @@ -0,0 +1,282 @@ +{ + "id": "https://ror.org/04zmssz18", + "name": "École Normale Supérieure de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 1880, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Max Weber", + "type": "Child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre for Astronomical Reseach of Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Education, Cultures, Politiques", + "type": "Child", + "id": "https://ror.org/037xc1874" + }, + { + "label": "Environment, City, Society", + "type": "Child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Equipe de recherche de Lyon en Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/04y24xj84" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "type": "Child", + "id": "https://ror.org/042fmc481" + }, + { + "label": "Histoire et Sources des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/01yx7av22" + }, + { + "label": "Histoire, Archéologie, Littératures des Mondes Chrétiens et Musulmans Médiévaux", + "type": "Child", + "id": "https://ror.org/05mqwtr17" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "Child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Interactions, Corpus, Apprentissages, Représentations", + "type": "Child", + "id": "https://ror.org/04mn0nr69" + }, + { + "label": "International Center for Infectiology Research", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "Child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Chimie", + "type": "Child", + "id": "https://ror.org/02gaw1s20" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Laboratoire de Physique de l'ENS de Lyon", + "type": "Child", + "id": "https://ror.org/00w5ay796" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire de Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/0453rk787" + }, + { + "label": "Laboratoire de l'Informatique du Parallélisme", + "type": "Child", + "id": "https://ror.org/04msnz457" + }, + { + "label": "Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles", + "type": "Child", + "id": "https://ror.org/04rkh0096" + }, + { + "label": "Lyons Institute of East Asian Studies", + "type": "Child", + "id": "https://ror.org/007dy3y92" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "The European Center for High Field NMR", + "type": "Child", + "id": "https://ror.org/00j29pk38" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Unit of Mathematics, Pure and Applied", + "type": "Child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Virology and Human Pathology", + "type": "Child", + "id": "https://ror.org/031xg0236" + }, + { + "label": "Center for Economic Research on Governance, Inequality and Conflict", + "type": "Child", + "id": "https://ror.org/055gja518" + }, + { + "label": "Sciences, Société, Historicité, Éducation et Pratiques", + "type": "Child", + "id": "https://ror.org/04cre2h49" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "Child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ens-lyon.eu/ecole-normale-superieure-de-lyon-accueil-77247.kjsp" + ], + "aliases": [ + "ENS Lyon", + "Normale Sup' Lyon" + ], + "acronyms": [ + "ENSL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure_de_Lyon", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.15140.31", + "preferred": "grid.15140.31" + }, + "ISNI": { + "all": [ + "0000 0001 2175 9188" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10159" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/04zrkn810.json b/v1.47/v1/04zrkn810.json new file mode 100644 index 000000000..73ae103ae --- /dev/null +++ b/v1.47/v1/04zrkn810.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/04zrkn810", + "name": "Agency for the Cooperation of Energy Regulators", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.acer.europa.eu" + ], + "aliases": [ + "Agentur für die Zusammenarbeit der Energieregulierungsbehörden" + ], + "acronyms": [ + "ACER" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_Union_Agency_for_the_Cooperation_of_Energy_Regulators", + "labels": [], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/0507j3z22.json b/v1.47/v1/0507j3z22.json new file mode 100644 index 000000000..924afb89a --- /dev/null +++ b/v1.47/v1/0507j3z22.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/0507j3z22", + "name": "Quantinuum (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Quantinuum (United States)", + "type": "Related", + "id": "https://ror.org/03ssvsv78" + }, + { + "label": "Cambridge Quantum Computing (United Kingdom)", + "type": "Predecessor", + "id": "https://ror.org/024779x77" + } + ], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.quantinuum.com" + ], + "aliases": [ + "Quantinuum Ltd" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Quantinuum", + "labels": [ + { + "label": "Quantinuum", + "iso639": "en" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/050dyr068.json b/v1.47/v1/050dyr068.json new file mode 100644 index 000000000..b330bf804 --- /dev/null +++ b/v1.47/v1/050dyr068.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/050dyr068", + "name": "Solomon Islands National University", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -9.43333, + "lng": 159.95, + "state": null, + "state_code": null, + "city": "Honiara", + "geonames_city": { + "id": 2108502, + "city": "Honiara", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sinu.edu.sb" + ], + "aliases": [ + "Solomon Islands College of Higher Education" + ], + "acronyms": [ + "SICHE", + "SINU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Solomon_Islands_National_University", + "labels": [], + "country": { + "country_name": "Solomon Islands", + "country_code": "SB" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2106 6445" + ], + "preferred": "0000 0001 2106 6445" + }, + "Wikidata": { + "all": [ + "Q110442979" + ], + "preferred": "Q110442979" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/050q6t909.json b/v1.47/v1/050q6t909.json new file mode 100644 index 000000000..663886aeb --- /dev/null +++ b/v1.47/v1/050q6t909.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/050q6t909", + "name": "Rosenpass e.V.", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.37052, + "lng": 9.73322, + "state": null, + "state_code": null, + "city": "Hanover", + "geonames_city": { + "id": 2910831, + "city": "Hanover", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rosenpass.eu" + ], + "aliases": [ + "Project Rosenpass", + "Rosenpass" + ], + "acronyms": [], + "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.47/v1/050qe2074.json b/v1.47/v1/050qe2074.json new file mode 100644 index 000000000..aaa72655d --- /dev/null +++ b/v1.47/v1/050qe2074.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/050qe2074", + "name": "LabEx PRIMES", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://primes.universite-lyon.fr" + ], + "aliases": [ + "LabEx Physics, Radiobiology, Imaging and Simulation", + "Labex Physique, Radiobiologie, Imagerie Médicale et Simulation", + "Physics, Radiobiology, Imaging and Simulation", + "Physique, Radiobiologie, Imagerie Médicale et Simulation", + "Physique, Radiobiologie, Imagerie Médicale et Simulations" + ], + "acronyms": [ + "PRIMES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/0515tt074.json b/v1.47/v1/0515tt074.json new file mode 100644 index 000000000..680b5ab83 --- /dev/null +++ b/v1.47/v1/0515tt074.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/0515tt074", + "name": "Grupo Español de Tumores Neuroendocrinos", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://getne.org" + ], + "aliases": [], + "acronyms": [ + "GETNE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.488309.e", + "preferred": "grid.488309.e" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/051escj72.json b/v1.47/v1/051escj72.json new file mode 100644 index 000000000..96f282a02 --- /dev/null +++ b/v1.47/v1/051escj72.json @@ -0,0 +1,417 @@ +{ + "id": "https://ror.org/051escj72", + "name": "University of Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1289, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Botany and Modelling of Plant Architecture and Vegetation", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre for Biochemical and Macromolecular Research", + "type": "Child", + "id": "https://ror.org/01xpc6869" + }, + { + "label": "Diversité, adaptation, développement des plantes", + "type": "Child", + "id": "https://ror.org/02banhz78" + }, + { + "label": "Diversity, Genomes and Insects-Microorganisms Interactions", + "type": "Child", + "id": "https://ror.org/03q1qx424" + }, + { + "label": "Forests and Societies", + "type": "Child", + "id": "https://ror.org/02pzyz439" + }, + { + "label": "Functional Ecology and Biogeochemistry of Soils and Agrosystems", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Institut Charles Gerhardt", + "type": "Child", + "id": "https://ror.org/028wq3277" + }, + { + "label": "Institut Européen des Membranes", + "type": "Child", + "id": "https://ror.org/04nmj9827" + }, + { + "label": "Institut d'Électronique et des Systèmes", + "type": "Child", + "id": "https://ror.org/0431hh004" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Génétique Moléculaire de Montpellier", + "type": "Child", + "id": "https://ror.org/02785qs39" + }, + { + "label": "Institut Montpelliérain Alexander Grothendieck", + "type": "Child", + "id": "https://ror.org/044kxby82" + }, + { + "label": "Institut de Recherche en Infectiologie de Montpellier", + "type": "Child", + "id": "https://ror.org/036eg1q44" + }, + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "Child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "Child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institute for the Separation Chemistry in Marcoule", + "type": "Child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institute of Cancer Research of Montpellier", + "type": "Child", + "id": "https://ror.org/03capj968" + }, + { + "label": "Institute of Human Genetics", + "type": "Child", + "id": "https://ror.org/05ee10k25" + }, + { + "label": "Laboratoire Charles Coulomb", + "type": "Child", + "id": "https://ror.org/02ftce284" + }, + { + "label": "Laboratoire Univers et Particules de Montpellier", + "type": "Child", + "id": "https://ror.org/00nrbzg90" + }, + { + "label": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "type": "Child", + "id": "https://ror.org/03fte3n86" + }, + { + "label": "Laboratoire de Mécanique et Génie Civil", + "type": "Child", + "id": "https://ror.org/02fke9256" + }, + { + "label": "Laboratory HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "Child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Marine Biodiversity Exploitation and Conservation", + "type": "Child", + "id": "https://ror.org/049dk3691" + }, + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "type": "Child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Physiology & Experimental Medicine of the Heart and Muscles", + "type": "Child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Rhizogenesis Lab", + "type": "Child", + "id": "https://ror.org/04pzw3j14" + }, + { + "label": "Sciences pour L’Œnologie", + "type": "Child", + "id": "https://ror.org/04w07sc25" + }, + { + "label": "Centre d’Etudes Politiques Et sociaLes", + "type": "Child", + "id": "https://ror.org/02wzg8t73" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "Child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "Child", + "id": "https://ror.org/03kbarg82" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "Child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "Child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "Child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Centre Méditerranéen de l’Environnement et de la Biodiversité", + "type": "Child", + "id": "https://ror.org/04eeyfe07" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Languedoc-Roussillon Universities", + "type": "Parent", + "id": "https://ror.org/04f6hmf16" + }, + { + "label": "University of Montpellier 1", + "type": "Predecessor", + "id": "https://ror.org/0227fbx80" + }, + { + "label": "University of Montpellier 2", + "type": "Predecessor", + "id": "https://ror.org/00wh4bp03" + }, + { + "label": "Hôpital Lapeyronie", + "type": "Related", + "id": "https://ror.org/03xzagw65" + }, + { + "label": "Hôpital Saint Eloi", + "type": "Related", + "id": "https://ror.org/04pwyfk22" + }, + { + "label": "Institut Universitaire de Recherche Clinique", + "type": "Related", + "id": "https://ror.org/03kfkzp90" + }, + { + "label": "University Hospital of Montpellier", + "type": "Related", + "id": "https://ror.org/00mthsf17" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umontpellier.fr/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Montpellier", + "labels": [ + { + "label": "Université de Montpellier", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.121334.6", + "preferred": "grid.121334.6" + }, + "ISNI": { + "all": [ + "0000 0001 2097 0141" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q776223" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/051qmsg29.json b/v1.47/v1/051qmsg29.json new file mode 100644 index 000000000..b2bbbb145 --- /dev/null +++ b/v1.47/v1/051qmsg29.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/051qmsg29", + "name": "SBS Swiss Business School", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.45152, + "lng": 8.58491, + "state": null, + "state_code": null, + "city": "Kloten", + "geonames_city": { + "id": 2660127, + "city": "Kloten", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sbs.edu" + ], + "aliases": [ + "Swiss Business School, SBS" + ], + "acronyms": [ + "SBS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/SBS_Swiss_Business_School", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0435 0681" + ], + "preferred": "0000 0004 0435 0681" + }, + "Wikidata": { + "all": [ + "Q7389005" + ], + "preferred": "Q7389005" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/051t1q308.json b/v1.47/v1/051t1q308.json new file mode 100644 index 000000000..6eb1ed4b0 --- /dev/null +++ b/v1.47/v1/051t1q308.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/051t1q308", + "name": "Institute of Intelligent Systems for Automation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Research Council", + "type": "Parent", + "id": "https://ror.org/04zaypm56" + } + ], + "addresses": [ + { + "lat": 41.12066, + "lng": 16.86982, + "state": null, + "state_code": null, + "city": "Bari", + "geonames_city": { + "id": 3182351, + "city": "Bari", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.issia.cnr.it/wp/" + ], + "aliases": [], + "acronyms": [ + "ISSIA" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [ + { + "label": "Istituto di Studi sui Sistemi Intelligenti per l'Automazione", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.464603.3", + "preferred": "grid.464603.3" + }, + "ISNI": { + "all": [ + "0000 0004 1784 2888" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0521sww17.json b/v1.47/v1/0521sww17.json new file mode 100644 index 000000000..7bb2cba0b --- /dev/null +++ b/v1.47/v1/0521sww17.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/0521sww17", + "name": "Arizona College of Emergency Physicians", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.44838, + "lng": -112.07404, + "state": null, + "state_code": null, + "city": "Phoenix", + "geonames_city": { + "id": 5308655, + "city": "Phoenix", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.azcep.org/" + ], + "aliases": [], + "acronyms": [ + "ACEP", + "AzCEP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.488390.e", + "preferred": "grid.488390.e" + }, + "Wikidata": { + "all": [ + "Q43896337" + ], + "preferred": "Q43896337" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05291s926.json b/v1.47/v1/05291s926.json new file mode 100644 index 000000000..7a6980d7c --- /dev/null +++ b/v1.47/v1/05291s926.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/05291s926", + "name": "Université Saint Thomas d’Aquin", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.36566, + "lng": -1.53388, + "state": null, + "state_code": null, + "city": "Ouagadougou", + "geonames_city": { + "id": 2357048, + "city": "Ouagadougou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://usta.bf" + ], + "aliases": [], + "acronyms": [ + "USTA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Burkina Faso", + "country_code": "BF" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q3551484" + ], + "preferred": "Q3551484" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/052g8jq94.json b/v1.47/v1/052g8jq94.json new file mode 100644 index 000000000..062ee6e80 --- /dev/null +++ b/v1.47/v1/052g8jq94.json @@ -0,0 +1,227 @@ +{ + "id": "https://ror.org/052g8jq94", + "name": "Universitat Autònoma de Barcelona", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Research in Agricultural Genomics", + "type": "Child", + "id": "https://ror.org/04tz2h245" + }, + { + "label": "Institut Català de Nanociència i Nanotecnologia", + "type": "Child", + "id": "https://ror.org/00k1qja49" + }, + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "Related", + "id": "https://ror.org/03abrgd14" + }, + { + "label": "Hospital Universitari Germans Trias i Pujol", + "type": "Related", + "id": "https://ror.org/04wxdxa47" + }, + { + "label": "Barcelona School of Economics", + "type": "Related", + "id": "https://ror.org/02k09n368" + }, + { + "label": "Centre de Recerca Matemàtica", + "type": "Related", + "id": "https://ror.org/020s51w82" + }, + { + "label": "Computer Vision Center", + "type": "Related", + "id": "https://ror.org/00s0nnj93" + }, + { + "label": "Centre for Demographic Studies", + "type": "Related", + "id": "https://ror.org/02dm87055" + }, + { + "label": "Institut Universitari d'Investigació en Atenció Primària Jordi Gol", + "type": "Related", + "id": "https://ror.org/0370bpp07" + }, + { + "label": "Puigvert Foundation", + "type": "Related", + "id": "https://ror.org/03qwx2883" + }, + { + "label": "Fundació Salut i Envelliment UAB", + "type": "Related", + "id": "https://ror.org/03c7e3050" + }, + { + "label": "Hospital del Mar Research Institute", + "type": "Related", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Institut Barcelona d'Estudis Internacionals", + "type": "Related", + "id": "https://ror.org/05rke5d69" + }, + { + "label": "Institut Català de Paleontologia Miquel Crusafont", + "type": "Related", + "id": "https://ror.org/04qeh2h86" + }, + { + "label": "Institut Català d'Oncologia", + "type": "Related", + "id": "https://ror.org/01j1eb875" + }, + { + "label": "Institut de Recerca Sant Pau", + "type": "Related", + "id": "https://ror.org/005teat46" + }, + { + "label": "Vall d'Hebron Institut de Recerca", + "type": "Related", + "id": "https://ror.org/01d5vx451" + }, + { + "label": "Institut d'Estudis Espacials de Catalunya", + "type": "Related", + "id": "https://ror.org/00k6njn28" + }, + { + "label": "Institut d'Investigació en Ciències de la Salut Germans Trias i Pujol", + "type": "Related", + "id": "https://ror.org/03bzdww12" + }, + { + "label": "Institute of Research and Innovation Parc Tauli", + "type": "Related", + "id": "https://ror.org/038c0gc18" + }, + { + "label": "Vall d'Hebron Institute of Oncology", + "type": "Related", + "id": "https://ror.org/054xx3904" + }, + { + "label": "IrsiCaixa", + "type": "Related", + "id": "https://ror.org/001synm23" + }, + { + "label": "Institute for High Energy Physics", + "type": "Related", + "id": "https://ror.org/01sdrjx85" + }, + { + "label": "Centre d'Esclerosi Múltiple de Catalunya", + "type": "Related", + "id": "https://ror.org/01kzbqm05" + } + ], + "addresses": [ + { + "lat": 41.49109, + "lng": 2.14079, + "state": null, + "state_code": null, + "city": "Cerdanyola del Vallès", + "geonames_city": { + "id": 3109402, + "city": "Cerdanyola del Vallès", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uab.cat" + ], + "aliases": [], + "acronyms": [ + "UAB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Autonomous_University_of_Barcelona", + "labels": [ + { + "label": "Autonomous University of Barcelona", + "iso639": "en" + }, + { + "label": "Bartzelonako Unibertsitate Autonomoa", + "iso639": "eu" + }, + { + "label": "Universidad Autónoma de Barcelona", + "iso639": "es" + }, + { + "label": "Universidade Autónoma de Barcelona", + "iso639": "gl" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.7080.f", + "preferred": "grid.7080.f" + }, + "ISNI": { + "all": [ + "0000 0001 2296 0625", + "0000 0001 2097 0205" + ], + "preferred": "0000 0001 2296 0625" + }, + "Wikidata": { + "all": [ + "Q43452" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/052pnfc88.json b/v1.47/v1/052pnfc88.json new file mode 100644 index 000000000..e10b83ed3 --- /dev/null +++ b/v1.47/v1/052pnfc88.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/052pnfc88", + "name": "GaNeXT", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.57803, + "lng": 7.05451, + "state": null, + "state_code": null, + "city": "Vallauris", + "geonames_city": { + "id": 2970962, + "city": "Vallauris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ganex.fr" + ], + "aliases": [ + "GANEX", + "LabEx GANEX", + "LabEx GANEXT" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/052rxf585.json b/v1.47/v1/052rxf585.json new file mode 100644 index 000000000..61cc2e6b5 --- /dev/null +++ b/v1.47/v1/052rxf585.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/052rxf585", + "name": "Laboratório Associado de Energia, Transportes e Aeronáutica", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.20564, + "lng": -8.41955, + "state": null, + "state_code": null, + "city": "Coimbra", + "geonames_city": { + "id": 2740637, + "city": "Coimbra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://laeta.pt" + ], + "aliases": [], + "acronyms": [ + "LAETA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Associate Laboratory of Energy, Transports and Aerospace", + "iso639": "en" + } + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1250 6735" + ], + "preferred": "0000 0005 1250 6735" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/052ygfd66.json b/v1.47/v1/052ygfd66.json new file mode 100644 index 000000000..997a231d8 --- /dev/null +++ b/v1.47/v1/052ygfd66.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/052ygfd66", + "name": "Zimbabwe Ezekiel Guti University", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -17.30192, + "lng": 31.33056, + "state": null, + "state_code": null, + "city": "Bindura", + "geonames_city": { + "id": 895061, + "city": "Bindura", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.zegu.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "ZEGU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Zimbabwe_Ezekiel_Guti_University", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.472471.3", + "preferred": "grid.472471.3" + }, + "ISNI": { + "all": [ + "0000 0004 1782 1059" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q20981320" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0538nf417.json b/v1.47/v1/0538nf417.json new file mode 100644 index 000000000..d6bc5bdbd --- /dev/null +++ b/v1.47/v1/0538nf417.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/0538nf417", + "name": "InnoRenew CoE", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.51123, + "lng": 13.65655, + "state": null, + "state_code": null, + "city": "Izola", + "geonames_city": { + "id": 3199016, + "city": "Izola", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://innorenew.eu" + ], + "aliases": [ + "InnoRenew CoE Center odličnosti za raziskave in inovacije na področju obnovljivih materialov in zdravega bivanjskega okolja", + "InnoRenew CoE Renewable Materials and Healthy Environments Research and Innovation Centre of Excellence" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/0539h2w52.json b/v1.47/v1/0539h2w52.json new file mode 100644 index 000000000..66202d0cd --- /dev/null +++ b/v1.47/v1/0539h2w52.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/0539h2w52", + "name": "Naval Facilities Engineering Command", + "email_address": null, + "ip_addresses": [], + "established": 1842, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Naval Facilities Engineering and Expeditionary Warfare Center", + "type": "Child", + "id": "https://ror.org/0103y3647" + }, + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.navy.mil/local/navfachq/" + ], + "aliases": [], + "acronyms": [ + "NAVFAC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naval_Facilities_Engineering_Command", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.482920.5", + "preferred": "grid.482920.5" + }, + "ISNI": { + "all": [ + "0000 0004 0451 0120" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6981810" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/053wdma52.json b/v1.47/v1/053wdma52.json new file mode 100644 index 000000000..0ab7fd885 --- /dev/null +++ b/v1.47/v1/053wdma52.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/053wdma52", + "name": "Pontificia Universidad Católica del Ecuador Sede Ibarra", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 0.35171, + "lng": -78.12233, + "state": null, + "state_code": null, + "city": "Ibarra", + "geonames_city": { + "id": 3655673, + "city": "Ibarra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pucesi.edu.ec" + ], + "aliases": [], + "acronyms": [ + "PUCE I", + "PUCESI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Pontifical Catholic University of Ecuador, Ibarra Campus", + "iso639": "en" + } + ], + "country": { + "country_name": "Ecuador", + "country_code": "EC" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q12200522" + ], + "preferred": "Q12200522" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/054ajk512.json b/v1.47/v1/054ajk512.json new file mode 100644 index 000000000..0b4ca90d1 --- /dev/null +++ b/v1.47/v1/054ajk512.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/054ajk512", + "name": "Naval Air Systems Command", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Naval Air Warfare Center Training Systems Division", + "type": "Child", + "id": "https://ror.org/02wt4s775" + }, + { + "label": "Naval Air Warfare Center Weapons Division", + "type": "Child", + "id": "https://ror.org/03cap2a49" + }, + { + "label": "Naval Air Warfare Center Aircraft Division", + "type": "Child", + "id": "https://ror.org/01zj39k81" + }, + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 38.28374, + "lng": -76.41853, + "state": null, + "state_code": null, + "city": "NAS Pax River", + "geonames_city": { + "id": 7267585, + "city": "NAS Pax River", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.navair.navy.mil" + ], + "aliases": [], + "acronyms": [ + "NAVAIR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naval_Air_Systems_Command", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.420427.7", + "preferred": "grid.420427.7" + }, + "ISNI": { + "all": [ + "0000 0004 0511 8526" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6981726" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0552dh385.json b/v1.47/v1/0552dh385.json new file mode 100644 index 000000000..8e04d427e --- /dev/null +++ b/v1.47/v1/0552dh385.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0552dh385", + "name": "Agrovyzkum Rapotin (Czechia)", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Research Institute for Cattle Breeding (Czechia)", + "type": "Parent", + "id": "https://ror.org/03hxmas11" + } + ], + "addresses": [ + { + "lat": 50.01094, + "lng": 17.03121, + "state": null, + "state_code": null, + "city": "Rapotín", + "geonames_city": { + "id": 3067026, + "city": "Rapotín", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vuchs.cz" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Agrovyzkum Rapotin", + "iso639": "en" + }, + { + "label": "Agrovýzkum Rapotín s.r.o.", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0483 4336" + ], + "preferred": "0000 0004 0483 4336" + }, + "Wikidata": { + "all": [ + "Q108935577" + ], + "preferred": "Q108935577" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0558szv56.json b/v1.47/v1/0558szv56.json new file mode 100644 index 000000000..a569ee247 --- /dev/null +++ b/v1.47/v1/0558szv56.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/0558szv56", + "name": "Shunan University", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.05, + "lng": 131.81667, + "state": null, + "state_code": null, + "city": "Tokuyama", + "geonames_city": { + "id": 1850152, + "city": "Tokuyama", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.shunan-u.ac.jp" + ], + "aliases": [ + "Shuunan Kouritsu Daigaku", + "Shūnan Kōritsu Daigaku", + "Tokuyama University", + "しゅうなんこうりつ だいがく", + "シュウナンコウリツ ダイガク", + "徳山大学" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Tokuyama_University", + "labels": [ + { + "label": "周南公立大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.442885.7", + "preferred": "grid.442885.7" + }, + "ISNI": { + "all": [ + "0000 0000 8862 7596" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7813780" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/055q9jt53.json b/v1.47/v1/055q9jt53.json new file mode 100644 index 000000000..d6f432396 --- /dev/null +++ b/v1.47/v1/055q9jt53.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/055q9jt53", + "name": "Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scène", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://litt-arts.univ-grenoble-alpes.fr" + ], + "aliases": [ + "Litt et Arts", + "Litt&Arts", + "UMR Litt&Arts" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52604431" + ], + "preferred": "Q52604431" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/055v4a470.json b/v1.47/v1/055v4a470.json new file mode 100644 index 000000000..f52bf29e8 --- /dev/null +++ b/v1.47/v1/055v4a470.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/055v4a470", + "name": "Instituto de Estudos Filosóficos", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Coimbra", + "type": "Parent", + "id": "https://ror.org/04z8k9a98" + } + ], + "addresses": [ + { + "lat": 40.20564, + "lng": -8.41955, + "state": null, + "state_code": null, + "city": "Coimbra", + "geonames_city": { + "id": 2740637, + "city": "Coimbra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uc.pt/fluc/ief/" + ], + "aliases": [], + "acronyms": [ + "IEF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute for Philosophical Studies", + "iso639": "en" + } + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/0568jvs10.json b/v1.47/v1/0568jvs10.json new file mode 100644 index 000000000..c73059be0 --- /dev/null +++ b/v1.47/v1/0568jvs10.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/0568jvs10", + "name": "Sphinx University", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.18096, + "lng": 31.18368, + "state": null, + "state_code": null, + "city": "Asyut", + "geonames_city": { + "id": 359783, + "city": "Asyut", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sphinx.edu.eg" + ], + "aliases": [ + "University of Sphinx" + ], + "acronyms": [ + "SU" + ], + "status": "active", + "wikipedia_url": "https://ar.wikipedia.org/wiki/%D8%AC%D8%A7%D9%85%D8%B9%D8%A9_%D8%B3%D9%81%D9%86%D9%83%D8%B3", + "labels": [], + "country": { + "country_name": "Egypt", + "country_code": "EG" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0813 7834" + ], + "preferred": "0000 0005 0813 7834" + }, + "Wikidata": { + "all": [ + "Q60914723" + ], + "preferred": "Q60914723" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05745n787.json b/v1.47/v1/05745n787.json new file mode 100644 index 000000000..5d9ba2ea4 --- /dev/null +++ b/v1.47/v1/05745n787.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/05745n787", + "name": "Niedersächsische Staats-und Universitätsbibliothek Göttingen", + "email_address": null, + "ip_addresses": [], + "established": 1734, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "University of Göttingen", + "type": "Parent", + "id": "https://ror.org/01y9bpm73" + } + ], + "addresses": [ + { + "lat": 51.51297, + "lng": 9.95353, + "state": null, + "state_code": null, + "city": "Göttingen", + "geonames_city": { + "id": 6557373, + "city": "Göttingen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sub.uni-goettingen.de" + ], + "aliases": [ + "Staats- und Universitätsbibliothek Göttingen", + "Universitätsbibliothek Göttingen" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/G%C3%B6ttingen_State_and_University_Library", + "labels": [ + { + "label": "Göttingen State and University Library", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2169 5516" + ], + "preferred": "0000 0001 2169 5516" + }, + "Wikidata": { + "all": [ + "Q564783" + ], + "preferred": "Q564783" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0576q1t15.json b/v1.47/v1/0576q1t15.json new file mode 100644 index 000000000..ed6180e39 --- /dev/null +++ b/v1.47/v1/0576q1t15.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/0576q1t15", + "name": "Universidad Autónoma de Nayarit", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.50951, + "lng": -104.89569, + "state": null, + "state_code": null, + "city": "Tepic", + "geonames_city": { + "id": 3981941, + "city": "Tepic", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uan.edu.mx" + ], + "aliases": [ + "Autonomous University of Nayarit" + ], + "acronyms": [ + "UAN" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Autonomous_University_of_Nayarit", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.412858.2", + "preferred": "grid.412858.2" + }, + "ISNI": { + "all": [ + "0000 0001 2164 1788" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4826833" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/0589kgd85.json b/v1.47/v1/0589kgd85.json new file mode 100644 index 000000000..57ce674f9 --- /dev/null +++ b/v1.47/v1/0589kgd85.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0589kgd85", + "name": "Yukawa Institute for Theoretical Physics", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Kyoto University", + "type": "Parent", + "id": "https://ror.org/02kpeqv85" + } + ], + "addresses": [ + { + "lat": 35.16563, + "lng": 135.79625, + "state": null, + "state_code": null, + "city": "Sakyō Ku", + "geonames_city": { + "id": 1853051, + "city": "Sakyō Ku", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.yukawa.kyoto-u.ac.jp" + ], + "aliases": [], + "acronyms": [ + "YITP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Yukawa_Institute_for_Theoretical_Physics", + "labels": [ + { + "label": "京都大學湯河理論物理研究所", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2175 9479" + ], + "preferred": "0000 0001 2175 9479" + }, + "Wikidata": { + "all": [ + "Q5361678" + ], + "preferred": "Q5361678" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/058cpk191.json b/v1.47/v1/058cpk191.json new file mode 100644 index 000000000..20ab36b6d --- /dev/null +++ b/v1.47/v1/058cpk191.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/058cpk191", + "name": "Komenda College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Education, Winneba", + "type": "Related", + "id": "https://ror.org/00y1ekh28" + } + ], + "addresses": [ + { + "lat": 5.04857, + "lng": -1.48863, + "state": null, + "state_code": null, + "city": "Komenda", + "geonames_city": { + "id": 2299392, + "city": "Komenda", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://komendacollege.edu.gh" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Komenda_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996974" + ], + "preferred": "Q46996974" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/058qdtv35.json b/v1.47/v1/058qdtv35.json new file mode 100644 index 000000000..a4240cd5f --- /dev/null +++ b/v1.47/v1/058qdtv35.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/058qdtv35", + "name": "Centre de recherches en histoire internationale et atlantique", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Nantes Université", + "type": "Parent", + "id": "https://ror.org/03gnr7b55" + }, + { + "label": "University of La Rochelle", + "type": "Parent", + "id": "https://ror.org/04mv1z119" + } + ], + "addresses": [ + { + "lat": 47.21725, + "lng": -1.55336, + "state": null, + "state_code": null, + "city": "Nantes", + "geonames_city": { + "id": 2990969, + "city": "Nantes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.crhia.fr" + ], + "aliases": [], + "acronyms": [ + "CRHIA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2184 7436" + ], + "preferred": "0000 0001 2184 7436" + }, + "Wikidata": { + "all": [ + "Q51782302" + ], + "preferred": "Q51782302" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/059c5gz18.json b/v1.47/v1/059c5gz18.json new file mode 100644 index 000000000..d52f6dc93 --- /dev/null +++ b/v1.47/v1/059c5gz18.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/059c5gz18", + "name": "Ministry of Economy and Sustainable Development", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of Economy, Entrepreneurship and Crafts", + "type": "Predecessor", + "id": "https://ror.org/03svzcs16" + } + ], + "addresses": [ + { + "lat": 45.81444, + "lng": 15.97798, + "state": null, + "state_code": null, + "city": "Zagreb", + "geonames_city": { + "id": 3186886, + "city": "Zagreb", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mingor.gov.hr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Economy_and_Sustainable_Development_%28Croatia%29", + "labels": [ + { + "label": "Ministarstvo gospodarstva i održivog razvoja", + "iso639": "hr" + } + ], + "country": { + "country_name": "Croatia", + "country_code": "HR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q3649021" + ], + "preferred": "Q3649021" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/059qr5h87.json b/v1.47/v1/059qr5h87.json new file mode 100644 index 000000000..142dbb433 --- /dev/null +++ b/v1.47/v1/059qr5h87.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/059qr5h87", + "name": "École nationale supérieure des sciences de l'information et des bibliothèques", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Equipe de recherche de Lyon en Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/04y24xj84" + }, + { + "label": "Centre Gabriel Naudé", + "type": "Child", + "id": "https://ror.org/03jms8710" + } + ], + "addresses": [ + { + "lat": 45.76601, + "lng": 4.8795, + "state": null, + "state_code": null, + "city": "Villeurbanne", + "geonames_city": { + "id": 2968254, + "city": "Villeurbanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.enssib.fr" + ], + "aliases": [], + "acronyms": [ + "ENSSIB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ecole_Nationale_Superieure_des_Sciences_de_l%27information_et_des_Bibliotheques", + "labels": [ + { + "label": "National Superior School of Information Science and Libraries", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462188.1", + "preferred": "grid.462188.1" + }, + "ISNI": { + "all": [ + "0000 0001 2294 1061" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2791269" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05a353079.json b/v1.47/v1/05a353079.json new file mode 100644 index 000000000..98b32011c --- /dev/null +++ b/v1.47/v1/05a353079.json @@ -0,0 +1,139 @@ +{ + "id": "https://ror.org/05a353079", + "name": "University Hospital of Lausanne", + "email_address": null, + "ip_addresses": [], + "established": 1236, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpital Nestlé", + "type": "Child", + "id": "https://ror.org/03egrq064" + }, + { + "label": "Hôpital Orthopédique de la Suisse Romande", + "type": "Child", + "id": "https://ror.org/022vd9g66" + }, + { + "label": "Hôpital de Beaumont", + "type": "Child", + "id": "https://ror.org/024009532" + }, + { + "label": "Hôpital de Cery", + "type": "Child", + "id": "https://ror.org/00vqmez57" + }, + { + "label": "Hôpital de l'enfance", + "type": "Child", + "id": "https://ror.org/05d9rr978" + }, + { + "label": "Swiss Cancer Center Léman", + "type": "Child", + "id": "https://ror.org/03kwyfa97" + }, + { + "label": "University Centre of Legal Medicine", + "type": "Child", + "id": "https://ror.org/03grgv984" + }, + { + "label": "Institute of Radiation Physics", + "type": "Child", + "id": "https://ror.org/03ts7z477" + }, + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.chuv.ch/" + ], + "aliases": [], + "acronyms": [ + "CHUV" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lausanne_University_Hospital", + "labels": [ + { + "label": "Centre Hospitalier Universitaire Vaudois", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.8515.9", + "preferred": "grid.8515.9" + }, + "ISNI": { + "all": [ + "0000 0001 0423 4662" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945783" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05bjxv014.json b/v1.47/v1/05bjxv014.json new file mode 100644 index 000000000..3449bda16 --- /dev/null +++ b/v1.47/v1/05bjxv014.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/05bjxv014", + "name": "National Agricultural Research and Development Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": -24.65451, + "lng": 25.90859, + "state": null, + "state_code": null, + "city": "Gaborone", + "geonames_city": { + "id": 933773, + "city": "Gaborone", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nardi.org.bw" + ], + "aliases": [], + "acronyms": [ + "NARDI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Botswana", + "country_code": "BW" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/05ck7c689.json b/v1.47/v1/05ck7c689.json new file mode 100644 index 000000000..b832b7a02 --- /dev/null +++ b/v1.47/v1/05ck7c689.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05ck7c689", + "name": "British Management University Tashkent", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.26465, + "lng": 69.21627, + "state": null, + "state_code": null, + "city": "Tashkent", + "geonames_city": { + "id": 1512569, + "city": "Tashkent", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bmu-edu.uz" + ], + "aliases": [], + "acronyms": [ + "BMU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Britaniya Menejment Universiteti", + "iso639": "uz" + }, + { + "label": "Британский университет менеджмента в Ташкенте", + "iso639": "ru" + } + ], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1090 9311" + ], + "preferred": "0000 0005 1090 9311" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05d95p271.json b/v1.47/v1/05d95p271.json new file mode 100644 index 000000000..49d530202 --- /dev/null +++ b/v1.47/v1/05d95p271.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05d95p271", + "name": "Jeunesse - Activité Physique et Sportive, santé", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Toulon", + "type": "Parent", + "id": "https://ror.org/02m9kbe37" + } + ], + "addresses": [ + { + "lat": 43.12442, + "lng": 5.92836, + "state": null, + "state_code": null, + "city": "Toulon", + "geonames_city": { + "id": 2972328, + "city": "Toulon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-tln.fr/Unite-de-recherche-Impact-de-l-activite-physique-sur-la-sante-IAPS.html" + ], + "aliases": [ + "Impact de l'activité physique sur la santé", + "Laboratoire IAPS", + "Laboratoire J-AP2S" + ], + "acronyms": [ + "IAPS", + "J-AP2S" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q125749107" + ], + "preferred": "Q125749107" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05e5yjs79.json b/v1.47/v1/05e5yjs79.json new file mode 100644 index 000000000..144bbd177 --- /dev/null +++ b/v1.47/v1/05e5yjs79.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/05e5yjs79", + "name": "Schweizerisches Universitäres Institut für Traditionelle Chinesische Medizin", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.58764, + "lng": 8.29365, + "state": null, + "state_code": null, + "city": "Bad Zurzach", + "geonames_city": { + "id": 2657891, + "city": "Bad Zurzach", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tcmuni.ch" + ], + "aliases": [ + "Swiss University Institute for Traditional Chinese Medicine", + "Swiss University Institute of Traditional Chinese Medicine", + "Swiss University of Traditional Chinese Medicine" + ], + "acronyms": [ + "SWISS TCM UNI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/05ee96150.json b/v1.47/v1/05ee96150.json new file mode 100644 index 000000000..5c24e8a70 --- /dev/null +++ b/v1.47/v1/05ee96150.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/05ee96150", + "name": "Swiss Institute of Comparative Law", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.isdc.ch/en/" + ], + "aliases": [], + "acronyms": [ + "ISDC", + "SICL", + "SIR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut suisse de droit comparé", + "iso639": "fr" + }, + { + "label": "Istituto svizzero di diritto comparato", + "iso639": "it" + }, + { + "label": "Schweizerische Institut für Rechtsvergleichung", + "iso639": "de" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.469468.1", + "preferred": "grid.469468.1" + }, + "ISNI": { + "all": [ + "0000 0001 2156 9069" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05eq3gw79.json b/v1.47/v1/05eq3gw79.json new file mode 100644 index 000000000..af0b9a139 --- /dev/null +++ b/v1.47/v1/05eq3gw79.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05eq3gw79", + "name": "Agricultural Research, Ltd. (Czechia)", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Research Institute for Fodder Crops (Czechia)", + "type": "Parent", + "id": "https://ror.org/02tjqwz24" + } + ], + "addresses": [ + { + "lat": 49.16951, + "lng": 16.51078, + "state": null, + "state_code": null, + "city": "Troubsko", + "geonames_city": { + "id": 3063938, + "city": "Troubsko", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vupt.cz/cz/zemedelsky-vyzkum-spol-s-r-o" + ], + "aliases": [], + "acronyms": [ + "ZVT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Agricultural Research, Ltd.", + "iso639": "en" + }, + { + "label": "Zemědělský výzkum,spol. s r.o.", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1801 0768" + ], + "preferred": "0000 0004 1801 0768" + }, + "Wikidata": { + "all": [ + "Q101064268" + ], + "preferred": "Q101064268" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05f1nfh63.json b/v1.47/v1/05f1nfh63.json new file mode 100644 index 000000000..a716e971a --- /dev/null +++ b/v1.47/v1/05f1nfh63.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/05f1nfh63", + "name": "Pardubice Regional Library", + "email_address": null, + "ip_addresses": [], + "established": 1897, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Pardubice Region", + "type": "Parent", + "id": "https://ror.org/04jycch17" + } + ], + "addresses": [ + { + "lat": 50.04075, + "lng": 15.77659, + "state": null, + "state_code": null, + "city": "Pardubice", + "geonames_city": { + "id": 3068582, + "city": "Pardubice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kkpce.cz/cs" + ], + "aliases": [], + "acronyms": [ + "KKPCE" + ], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Krajsk%C3%A1_knihovna_v_Pardubic%C3%Adch", + "labels": [ + { + "label": "Krajská knihovna v Pardubicích", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 8965 1619" + ], + "preferred": "0000 0000 8965 1619" + }, + "Wikidata": { + "all": [ + "Q69356320" + ], + "preferred": "Q69356320" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05f421b09.json b/v1.47/v1/05f421b09.json new file mode 100644 index 000000000..24230cf58 --- /dev/null +++ b/v1.47/v1/05f421b09.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/05f421b09", + "name": "Naval Medical Research Command", + "email_address": null, + "ip_addresses": [], + "established": 1942, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Naval Health Research Center", + "type": "Child", + "id": "https://ror.org/01hzj5y23" + }, + { + "label": "Naval Medical Research Unit Six", + "type": "Child", + "id": "https://ror.org/02dbwrk72" + }, + { + "label": "Naval Submarine Medical Research Laboratory", + "type": "Child", + "id": "https://ror.org/03p1tqc11" + }, + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 38.99067, + "lng": -77.02609, + "state": null, + "state_code": null, + "city": "Silver Spring", + "geonames_city": { + "id": 4369596, + "city": "Silver Spring", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nmrc.navy.mil/" + ], + "aliases": [ + "Naval Medical Research Center", + "Naval Medical Research Institute" + ], + "acronyms": [ + "NMRC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naval_Medical_Research_Command", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.415913.b", + "preferred": "grid.415913.b" + }, + "ISNI": { + "all": [ + "0000 0004 0587 8664" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q18154728", + "Q3334195" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05f82e368.json b/v1.47/v1/05f82e368.json new file mode 100644 index 000000000..5e9b5c391 --- /dev/null +++ b/v1.47/v1/05f82e368.json @@ -0,0 +1,640 @@ +{ + "id": "https://ror.org/05f82e368", + "name": "Université Paris Cité", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "André Revuz Didactics Laboratory", + "type": "Child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "Anthropology and History of the Ancient World", + "type": "Child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Astroparticle and Cosmology Laboratory", + "type": "Child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "Child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Biologie Intégrée du Globule Rouge", + "type": "Child", + "id": "https://ror.org/048cbmc89" + }, + { + "label": "Bioscar", + "type": "Child", + "id": "https://ror.org/01qdqrj31" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "Child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Center for Research in Medicine, Science, Health, Mental Health and Society", + "type": "Child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Center for Research on Inflammation", + "type": "Child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Center for Social Studies on African, American and Asian Worlds", + "type": "Child", + "id": "https://ror.org/03pnk9016" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "Child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Linguistique Inter-langues, de Lexicologie, de Linguistique Anglaise et de Corpus-Atelier de Recherche sur la Parole", + "type": "Child", + "id": "https://ror.org/01y85ge33" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "Child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche sur les Liens Sociaux", + "type": "Child", + "id": "https://ror.org/01wcaw014" + }, + { + "label": "Epigenetics and Cell Fate", + "type": "Child", + "id": "https://ror.org/03dbsav41" + }, + { + "label": "Expression Génétique Microbienne", + "type": "Child", + "id": "https://ror.org/05t5n2z26" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "Child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "Imagine Institute for Genetic Diseases", + "type": "Child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Institut Cochin", + "type": "Child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Jacques Monod", + "type": "Child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "Child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "Child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Psychiatry and Neuroscience of Paris", + "type": "Child", + "id": "https://ror.org/02g40zn06" + }, + { + "label": "Interfaces Traitements Organisation et Dynamique des Systèmes", + "type": "Child", + "id": "https://ror.org/03edms940" + }, + { + "label": "International College of Territorial Sciences", + "type": "Child", + "id": "https://ror.org/002t9r032" + }, + { + "label": "Laboratoire Dynamiques Sociales et Recomposition des Espaces", + "type": "Child", + "id": "https://ror.org/045r56524" + }, + { + "label": "Laboratoire ICT", + "type": "Child", + "id": "https://ror.org/04p7gsa29" + }, + { + "label": "Laboratoire Interdisciplinaire des Énergies de Demain", + "type": "Child", + "id": "https://ror.org/00m43ek07" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "Child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "Child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Matière et Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/032w6q449" + }, + { + "label": "Laboratoire Vision Action Cognition", + "type": "Child", + "id": "https://ror.org/03saykv37" + }, + { + "label": "Laboratoire d'Electrochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/03atapr58" + }, + { + "label": "Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques", + "type": "Child", + "id": "https://ror.org/028qedy27" + }, + { + "label": "Laboratoire de Linguistique Formelle", + "type": "Child", + "id": "https://ror.org/0223bz716" + }, + { + "label": "Laboratoire de Physique Nucléaire et de Hautes Énergies", + "type": "Child", + "id": "https://ror.org/01hg8p552" + }, + { + "label": "Laboratory Materials and Quantum Phenomena", + "type": "Child", + "id": "https://ror.org/02p3et738" + }, + { + "label": "Laboratory Orofacial Pathologies, Imaging and Biotherapies", + "type": "Child", + "id": "https://ror.org/00kneq391" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "Child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory Universe and Theories", + "type": "Child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratory for Vascular Translational Science", + "type": "Child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratory for the Psychology of Child Development and Education", + "type": "Child", + "id": "https://ror.org/023kqz006" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "Child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Laboratory of Physical and Chemical Biology of Membrane Proteins", + "type": "Child", + "id": "https://ror.org/03nr8xh07" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratory of Theoretical Biochemistry", + "type": "Child", + "id": "https://ror.org/00nvjgv40" + }, + { + "label": "Institut Langevin", + "type": "Child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Memory and Cognition Laboratory", + "type": "Child", + "id": "https://ror.org/036ydxy43" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Mère et Enfant en Milieu Tropical", + "type": "Child", + "id": "https://ror.org/00rd22143" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "Child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "Paris Biotech Santé", + "type": "Child", + "id": "https://ror.org/05h9gyn11" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "Child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Génomes, biologie cellulaire et thérapeutiques", + "type": "Child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "Child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "Child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Population and Development Center", + "type": "Child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Research Institute on the Foundations of Computer Science", + "type": "Child", + "id": "https://ror.org/02krdtz55" + }, + { + "label": "Sciences, Philosophie, Histoire", + "type": "Child", + "id": "https://ror.org/05c9ks061" + }, + { + "label": "Skin Research Center", + "type": "Child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "The Centre for Studies on China, Korea and Japan", + "type": "Child", + "id": "https://ror.org/02djzje70" + }, + { + "label": "Toxicology, Pharmacology and Cellular Signaling", + "type": "Child", + "id": "https://ror.org/021ryxk89" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "Child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "Child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Éco-Anthropologie", + "type": "Child", + "id": "https://ror.org/03x0yny97" + }, + { + "label": "Épidémiologie Clinique, Évaluation Économique Appliquées aux Populations Vulnérables", + "type": "Child", + "id": "https://ror.org/02617e391" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "Child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "RIATE - Centre pour l'analyse spatiale et la géovisualisation", + "type": "Child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "Child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "NeuroDiderot", + "type": "Child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "Child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "Child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "Child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "Child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "HIPI - Human Immunology, Pathophysiology and Immunotherapy", + "type": "Child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Institut Droit et Santé", + "type": "Child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Unité de Recherche en Biomatériaux Innovant et Interfaces", + "type": "Child", + "id": "https://ror.org/01cht3g41" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "Child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "Child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Antimicrobials, Modelling, Evolution", + "type": "Child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Institut de Recherche bio-Médicale et d'Epidémiologie du Sport", + "type": "Child", + "id": "https://ror.org/00dgdgj39" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Integrative Neuroscience and Cognition Center", + "type": "Child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "Child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire de Psychologie et d’Ergonomie Appliquées", + "type": "Child", + "id": "https://ror.org/0572pak88" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Fédération de recherche en sciences mathématiques de Paris centre", + "type": "Child", + "id": "https://ror.org/02jwwk370" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "Child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "PremUP", + "type": "Child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "Child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Hôpitaux Universitaires Paris-Ouest", + "type": "Related", + "id": "https://ror.org/01v676463" + }, + { + "label": "Hôtel-Dieu de Paris", + "type": "Related", + "id": "https://ror.org/03jmjy508" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "Related", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "Labex UnivEarthS", + "type": "Child", + "id": "https://ror.org/04mvx3d75" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://u-paris.fr/en" + ], + "aliases": [ + "University of Paris", + "Université de Paris" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Paris_(2019)", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.508487.6", + "preferred": "grid.508487.6" + }, + "ISNI": { + "all": [ + "0000 0004 7885 7602" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q55849612" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05fc1hn07.json b/v1.47/v1/05fc1hn07.json new file mode 100644 index 000000000..8fcd62b01 --- /dev/null +++ b/v1.47/v1/05fc1hn07.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/05fc1hn07", + "name": "Laboratoire Techniques, Territoires et Sociétés", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École des Ponts ParisTech", + "type": "Parent", + "id": "https://ror.org/02nwvxz07" + }, + { + "label": "Université Gustave Eiffel", + "type": "Parent", + "id": "https://ror.org/03x42jk29" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://latts.fr" + ], + "aliases": [ + "Laboratoire Techniques, Territoires et Societes" + ], + "acronyms": [ + "LATTS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503346.7", + "preferred": "grid.503346.7" + }, + "ISNI": { + "all": [ + "0000 0001 2113 2545" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q61933157" + ], + "preferred": "Q61933157" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05fzhrv79.json b/v1.47/v1/05fzhrv79.json new file mode 100644 index 000000000..ac44ec489 --- /dev/null +++ b/v1.47/v1/05fzhrv79.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05fzhrv79", + "name": "Lupane State University", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -20.15, + "lng": 28.58333, + "state": null, + "state_code": null, + "city": "Bulawayo", + "geonames_city": { + "id": 894701, + "city": "Bulawayo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lsu.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "LSU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lupane_State_University", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.449024.f", + "preferred": "grid.449024.f" + }, + "ISNI": { + "all": [ + "0000 0004 0648 4683" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6704659" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05gedzg25.json b/v1.47/v1/05gedzg25.json new file mode 100644 index 000000000..a270bba6c --- /dev/null +++ b/v1.47/v1/05gedzg25.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05gedzg25", + "name": "Foso College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Cape Coast", + "type": "Related", + "id": "https://ror.org/0492nfe34" + } + ], + "addresses": [ + { + "lat": 5.70119, + "lng": -1.28657, + "state": null, + "state_code": null, + "city": "Foso", + "geonames_city": { + "id": 2300883, + "city": "Foso", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fosco.edu.gh" + ], + "aliases": [], + "acronyms": [ + "FOSCO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Foso_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996967" + ], + "preferred": "Q46996967" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05gh16g69.json b/v1.47/v1/05gh16g69.json new file mode 100644 index 000000000..c5e850ebb --- /dev/null +++ b/v1.47/v1/05gh16g69.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05gh16g69", + "name": "Associação para o Desenvolvimento da Aerodinâmica Industrial", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "University of Coimbra", + "type": "Parent", + "id": "https://ror.org/04z8k9a98" + } + ], + "addresses": [ + { + "lat": 40.20564, + "lng": -8.41955, + "state": null, + "state_code": null, + "city": "Coimbra", + "geonames_city": { + "id": 2740637, + "city": "Coimbra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uc.pt/adai/" + ], + "aliases": [], + "acronyms": [ + "ADAI", + "ADAI-LAETA", + "ADAI-UC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Association for the Development of Industrial Aerodynamics", + "iso639": "en" + } + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9400 0079" + ], + "preferred": "0000 0000 9400 0079" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05gjc4036.json b/v1.47/v1/05gjc4036.json new file mode 100644 index 000000000..a34ba67b4 --- /dev/null +++ b/v1.47/v1/05gjc4036.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05gjc4036", + "name": "Beijing Police College", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.bjpc.edu.cn" + ], + "aliases": [], + "acronyms": [ + "BJPC", + "BPC" + ], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E5%8C%97%E4%BA%AC%E8%AD%A6%E5%AF%9F%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "北京警察学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q4881177" + ], + "preferred": "Q4881177" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05gnb6459.json b/v1.47/v1/05gnb6459.json new file mode 100644 index 000000000..020aa67f1 --- /dev/null +++ b/v1.47/v1/05gnb6459.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05gnb6459", + "name": "Interdisciplinary Research Centre for Technology, Work and Culture", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.06667, + "lng": 15.45, + "state": null, + "state_code": null, + "city": "Graz", + "geonames_city": { + "id": 2778067, + "city": "Graz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ifz.at" + ], + "aliases": [ + "Interdisciplinary Research Centre for Technology" + ], + "acronyms": [ + "IFZ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Interdisziplinäre Forschungszentrum für Technik, Arbeit und Kultur", + "iso639": "de" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "GRID": { + "all": "grid.493107.8", + "preferred": "grid.493107.8" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05gqaka33.json b/v1.47/v1/05gqaka33.json new file mode 100644 index 000000000..3a883235a --- /dev/null +++ b/v1.47/v1/05gqaka33.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/05gqaka33", + "name": "Martin Luther University Halle-Wittenberg", + "email_address": null, + "ip_addresses": [], + "established": 1502, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Gesundheitszentrum Bitterfeld", + "type": "Child", + "id": "https://ror.org/007y22n43" + }, + { + "label": "Institut für Hochschulforschung", + "type": "Child", + "id": "https://ror.org/05gttbr75" + }, + { + "label": "Universitäts- und Landesbibliothek Sachsen-Anhalt", + "type": "Child", + "id": "https://ror.org/03c241w53" + }, + { + "label": "Carl-Thiem-Klinikum Cottbus", + "type": "Related", + "id": "https://ror.org/044fhy270" + }, + { + "label": "University Hospital in Halle", + "type": "Related", + "id": "https://ror.org/04fe46645" + }, + { + "label": "Stiftung des öffentlichen Rechts an der Martin-Luther-Universität Halle-Wittenberg", + "type": "Related", + "id": "https://ror.org/04bkfz588" + } + ], + "addresses": [ + { + "lat": 51.48158, + "lng": 11.97947, + "state": null, + "state_code": null, + "city": "Halle", + "geonames_city": { + "id": 2911522, + "city": "Halle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uni-halle.de/?lang=en" + ], + "aliases": [], + "acronyms": [ + "MLU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Martin_Luther_University_of_Halle-Wittenberg", + "labels": [ + { + "label": "Martin-Luther-Universität Halle-Wittenberg", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.9018.0", + "preferred": "grid.9018.0" + }, + "ISNI": { + "all": [ + "0000 0001 0679 2801" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q32120" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05hdq6q33.json b/v1.47/v1/05hdq6q33.json new file mode 100644 index 000000000..2de6a391c --- /dev/null +++ b/v1.47/v1/05hdq6q33.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05hdq6q33", + "name": "Women's University in Africa", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -17.82772, + "lng": 31.05337, + "state": null, + "state_code": null, + "city": "Harare", + "geonames_city": { + "id": 890299, + "city": "Harare", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.wua.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "WUA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Women's_University_in_Africa", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.442712.6", + "preferred": "grid.442712.6" + }, + "ISNI": { + "all": [ + "0000 0000 9027 3934" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q8031096" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05hk2rf18.json b/v1.47/v1/05hk2rf18.json new file mode 100644 index 000000000..dd47a748e --- /dev/null +++ b/v1.47/v1/05hk2rf18.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/05hk2rf18", + "name": "Dongyang Red Cross Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.26778, + "lng": 120.22528, + "state": null, + "state_code": null, + "city": "Dongyang", + "geonames_city": { + "id": 1791056, + "city": "Dongyang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "DYRCH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "东阳市红会医院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1437 027X" + ], + "preferred": "0000 0005 1437 027X" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05hvkkr89.json b/v1.47/v1/05hvkkr89.json new file mode 100644 index 000000000..ed4fcbb4e --- /dev/null +++ b/v1.47/v1/05hvkkr89.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05hvkkr89", + "name": "Ghana Communication Technology University", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.55602, + "lng": -0.1969, + "state": null, + "state_code": null, + "city": "Accra", + "geonames_city": { + "id": 2306104, + "city": "Accra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://site.gctu.edu.gh" + ], + "aliases": [ + "Ghana Technology University College", + "Ghana Telecom University College" + ], + "acronyms": [ + "GCTU", + "GTUC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ghana_Technology_University_College", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.442314.4", + "preferred": "grid.442314.4" + }, + "ISNI": { + "all": [ + "0000 0004 0418 525X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1521371" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05j7fep28.json b/v1.47/v1/05j7fep28.json new file mode 100644 index 000000000..1b6d64961 --- /dev/null +++ b/v1.47/v1/05j7fep28.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/05j7fep28", + "name": "Australian Nuclear Science and Technology Organisation", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Australian Synchrotron", + "type": "Child", + "id": "https://ror.org/03vk18a84" + }, + { + "label": "Department of Industry, Science and Resources", + "type": "Parent", + "id": "https://ror.org/021z9m619" + }, + { + "label": "Stawell Underground Physics Laboratory", + "type": "Related", + "id": "https://ror.org/01az7g189" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ansto.gov.au/" + ], + "aliases": [], + "acronyms": [ + "ANSTO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Australian_Nuclear_Science_and_Technology_Organisation", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.1089.0", + "preferred": "grid.1089.0" + }, + "ISNI": { + "all": [ + "0000 0004 0432 8812" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q781606" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05jyzx602.json b/v1.47/v1/05jyzx602.json new file mode 100644 index 000000000..dc6361ef1 --- /dev/null +++ b/v1.47/v1/05jyzx602.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05jyzx602", + "name": "BC Centre for Disease Control", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Provincial Health Services Authority", + "type": "Parent", + "id": "https://ror.org/01jvd8304" + } + ], + "addresses": [ + { + "lat": 49.24966, + "lng": -123.11934, + "state": null, + "state_code": null, + "city": "Vancouver", + "geonames_city": { + "id": 6173331, + "city": "Vancouver", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.bccdc.ca/" + ], + "aliases": [], + "acronyms": [ + "BCCDC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/BC_Centre_for_Disease_Control", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.418246.d", + "preferred": "grid.418246.d" + }, + "ISNI": { + "all": [ + "0000 0001 0352 641X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q24190740" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05jzcs626.json b/v1.47/v1/05jzcs626.json new file mode 100644 index 000000000..eaabd27fb --- /dev/null +++ b/v1.47/v1/05jzcs626.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/05jzcs626", + "name": "Palompon Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 11.0508, + "lng": 124.3843, + "state": null, + "state_code": null, + "city": "Palompon", + "geonames_city": { + "id": 1696017, + "city": "Palompon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pit.edu.ph" + ], + "aliases": [ + "Palompon School of Arts and Trade" + ], + "acronyms": [ + "PIT", + "PSAT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Palompon_Institute_of_Technology", + "labels": [], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "GRID": { + "all": "grid.466974.e", + "preferred": "grid.466974.e" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05k4xnj24.json b/v1.47/v1/05k4xnj24.json new file mode 100644 index 000000000..07c0b8768 --- /dev/null +++ b/v1.47/v1/05k4xnj24.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05k4xnj24", + "name": "Bukhara State University", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.77472, + "lng": 64.42861, + "state": null, + "state_code": null, + "city": "Bukhara", + "geonames_city": { + "id": 1217662, + "city": "Bukhara", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://buxdu.uz" + ], + "aliases": [ + "Buxoro universiteti" + ], + "acronyms": [ + "BSU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bukhara_State_University", + "labels": [ + { + "label": "Buxoro davlat universiteti", + "iso639": "uz" + }, + { + "label": "Бухарский государственный университет", + "iso639": "ru" + } + ], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "external_ids": { + "GRID": { + "all": "grid.444580.9", + "preferred": "grid.444580.9" + }, + "ISNI": { + "all": [ + "0000 0004 0402 8385" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q20536168" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05kbck686.json b/v1.47/v1/05kbck686.json new file mode 100644 index 000000000..a4f4ec355 --- /dev/null +++ b/v1.47/v1/05kbck686.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05kbck686", + "name": "Språkbanken Tal", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Språkbanken", + "type": "Parent", + "id": "https://ror.org/05qhvy459" + } + ], + "addresses": [ + { + "lat": 59.32938, + "lng": 18.06871, + "state": null, + "state_code": null, + "city": "Stockholm", + "geonames_city": { + "id": 2673730, + "city": "Stockholm", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kth.se/sv/is/tmh" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q95564783" + ], + "preferred": "Q95564783" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05kmgev50.json b/v1.47/v1/05kmgev50.json new file mode 100644 index 000000000..147a05ecc --- /dev/null +++ b/v1.47/v1/05kmgev50.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05kmgev50", + "name": "Science Center for Information Technologies in Design", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Russian Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/05qrfxd25" + } + ], + "addresses": [ + { + "lat": 55.75222, + "lng": 37.61556, + "state": null, + "state_code": null, + "city": "Moscow", + "geonames_city": { + "id": 524901, + "city": "Moscow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ditc.ras.ru/" + ], + "aliases": [ + "Федеральное государственное бюджетное учреждение науки Центр информационных технологий в проектировании Российской академии наук" + ], + "acronyms": [ + "DTIC", + "ЦИТП РАНru" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Центр информационных технологий в проектировании", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.495226.e", + "preferred": "grid.495226.e" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05kpkpg04.json b/v1.47/v1/05kpkpg04.json new file mode 100644 index 000000000..1d9cf698a --- /dev/null +++ b/v1.47/v1/05kpkpg04.json @@ -0,0 +1,209 @@ +{ + "id": "https://ror.org/05kpkpg04", + "name": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Animal, Santé, Territoires, Risques et Ecosystèmes", + "type": "Child", + "id": "https://ror.org/006fhby04" + }, + { + "label": "Botany and Modelling of Plant Architecture and Vegetation", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Ecology of Guianan Forests", + "type": "Child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Forests and Societies", + "type": "Child", + "id": "https://ror.org/02pzyz439" + }, + { + "label": "Functional Ecology and Biogeochemistry of Soils and Agrosystems", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "Child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Peuplement Végétaux et Bio-agresseurs en Milieu Tropical", + "type": "Child", + "id": "https://ror.org/03mj14b52" + }, + { + "label": "Rhizogenesis Lab", + "type": "Child", + "id": "https://ror.org/04pzw3j14" + }, + { + "label": "Tropical and Mediterranean Animal Production Systems", + "type": "Child", + "id": "https://ror.org/05merjr74" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Interactions hotes-vecteurs-parasites-environnement dans les maladies tropicales négligées dues aux trypanosomatides", + "type": "Child", + "id": "https://ror.org/05ye29x39" + }, + { + "label": "Savoirs, Environnement, Sociétés", + "type": "Child", + "id": "https://ror.org/04gpe6h67" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "ABSys", + "type": "Child", + "id": "https://ror.org/00n2c0309" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cirad.fr" + ], + "aliases": [], + "acronyms": [ + "CIRAD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French Agricultural Research Centre for International Development", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.8183.2", + "preferred": "grid.8183.2" + }, + "ISNI": { + "all": [ + "0000 0001 2153 9871" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945274" + ], + "preferred": "Q2945274" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05kpz5d89.json b/v1.47/v1/05kpz5d89.json new file mode 100644 index 000000000..3a9b9d3b1 --- /dev/null +++ b/v1.47/v1/05kpz5d89.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/05kpz5d89", + "name": "Research Foundation for the Electrotechnology of Chubu", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 35.16442, + "lng": 136.91675, + "state": null, + "state_code": null, + "city": "Shinsakae", + "geonames_city": { + "id": 11791657, + "city": "Shinsakae", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.refec.org" + ], + "aliases": [], + "acronyms": [ + "REFEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "公益財団法人中部電気利用基礎研究振興財団", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7690 3345" + ], + "preferred": "0000 0004 7690 3345" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05ksqqc16.json b/v1.47/v1/05ksqqc16.json new file mode 100644 index 000000000..e6276fb45 --- /dev/null +++ b/v1.47/v1/05ksqqc16.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05ksqqc16", + "name": "Bundesdenkmalamt", + "email_address": null, + "ip_addresses": [], + "established": 1850, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Federal Chancellery Republic of Austria", + "type": "Related", + "id": "https://ror.org/01gmtnk43" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bda.gv.at" + ], + "aliases": [ + "Austrian Federal Monuments Office", + "Federal Monuments Office of Austria" + ], + "acronyms": [ + "BDA" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Bundesdenkmalamt", + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0936 4940" + ], + "preferred": "0000 0005 0936 4940" + }, + "Wikidata": { + "all": [ + "Q876452" + ], + "preferred": "Q876452" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05kyrk544.json b/v1.47/v1/05kyrk544.json new file mode 100644 index 000000000..ebf134cba --- /dev/null +++ b/v1.47/v1/05kyrk544.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05kyrk544", + "name": "Zimbabwe Open University", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zimbabwe University Libraries Consortium", + "type": "Related", + "id": "https://ror.org/04y0q2a96" + } + ], + "addresses": [ + { + "lat": -17.82772, + "lng": 31.05337, + "state": null, + "state_code": null, + "city": "Harare", + "geonames_city": { + "id": 890299, + "city": "Harare", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.zou.ac.zw/" + ], + "aliases": [], + "acronyms": [ + "ZOU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Zimbabwe_Open_University", + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": { + "GRID": { + "all": "grid.442714.0", + "preferred": "grid.442714.0" + }, + "ISNI": { + "all": [ + "0000 0004 1758 249X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q8072005" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05m7pjf47.json b/v1.47/v1/05m7pjf47.json new file mode 100644 index 000000000..35989e172 --- /dev/null +++ b/v1.47/v1/05m7pjf47.json @@ -0,0 +1,176 @@ +{ + "id": "https://ror.org/05m7pjf47", + "name": "University College Dublin", + "email_address": null, + "ip_addresses": [], + "established": 1854, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "UCD Centre for Veterinary Epidemiology and Risk Analysis", + "type": "Child", + "id": "https://ror.org/041vb4f30" + }, + { + "label": "Irish Centre for Research in Applied Geosciences", + "type": "Child", + "id": "https://ror.org/02010jg37" + }, + { + "label": "National University of Ireland", + "type": "Parent", + "id": "https://ror.org/00shsf120" + }, + { + "label": "Cappagh National Orthopaedic Hospital", + "type": "Related", + "id": "https://ror.org/03vc5bf16" + }, + { + "label": "Children's Health Ireland at Crumlin", + "type": "Related", + "id": "https://ror.org/025qedy81" + }, + { + "label": "Mater Misericordiae University Hospital", + "type": "Related", + "id": "https://ror.org/040hqpc16" + }, + { + "label": "Midland Regional Hospital Mullingar", + "type": "Related", + "id": "https://ror.org/03z526x05" + }, + { + "label": "National Maternity Hospital", + "type": "Related", + "id": "https://ror.org/03jcxa214" + }, + { + "label": "Our Lady's Hospital", + "type": "Related", + "id": "https://ror.org/034afnt37" + }, + { + "label": "Royal Victoria Eye and Ear Hospital", + "type": "Related", + "id": "https://ror.org/03z0mke78" + }, + { + "label": "St Michael’s Hospital", + "type": "Related", + "id": "https://ror.org/008te2062" + }, + { + "label": "St. Columcille's Hospital", + "type": "Related", + "id": "https://ror.org/01tm0s838" + }, + { + "label": "St. Luke's General Hospital", + "type": "Related", + "id": "https://ror.org/05p668j08" + }, + { + "label": "St. Vincent's University Hospital", + "type": "Related", + "id": "https://ror.org/029tkqm80" + }, + { + "label": "Wexford General Hospital", + "type": "Related", + "id": "https://ror.org/00bbdze26" + }, + { + "label": "Irish Research eLibrary", + "type": "Related", + "id": "https://ror.org/05c347015" + } + ], + "addresses": [ + { + "lat": 53.33306, + "lng": -6.24889, + "state": null, + "state_code": null, + "city": "Dublin", + "geonames_city": { + "id": 2964574, + "city": "Dublin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ucd.ie/" + ], + "aliases": [ + "University College Dublin – National University of Ireland, Dublin" + ], + "acronyms": [ + "UCD" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_College_Dublin", + "labels": [ + { + "label": "An Coláiste Ollscoile Baile Átha Cliath", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "GRID": { + "all": "grid.7886.1", + "preferred": "grid.7886.1" + }, + "ISNI": { + "all": [ + "0000 0001 0768 2743" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1068258" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05m88q091.json b/v1.47/v1/05m88q091.json new file mode 100644 index 000000000..69c727448 --- /dev/null +++ b/v1.47/v1/05m88q091.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/05m88q091", + "name": "Institut de Recherche en Sciences de la Santé", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique et Technologique", + "type": "Parent", + "id": "https://ror.org/01tytrg27" + } + ], + "addresses": [ + { + "lat": 12.36566, + "lng": -1.53388, + "state": null, + "state_code": null, + "city": "Ouagadougou", + "geonames_city": { + "id": 2357048, + "city": "Ouagadougou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.irss.bf" + ], + "aliases": [], + "acronyms": [ + "IRSS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Burkina Faso", + "country_code": "BF" + }, + "external_ids": { + "GRID": { + "all": "grid.457337.1", + "preferred": "grid.457337.1" + }, + "ISNI": { + "all": [ + "0000 0004 0564 0509" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05mq93331.json b/v1.47/v1/05mq93331.json new file mode 100644 index 000000000..52aa6e52b --- /dev/null +++ b/v1.47/v1/05mq93331.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/05mq93331", + "name": "Military Hospital Brno", + "email_address": null, + "ip_addresses": [], + "established": 1784, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Ministry of Defence", + "type": "Parent", + "id": "https://ror.org/00r7raa16" + } + ], + "addresses": [ + { + "lat": 49.19522, + "lng": 16.60796, + "state": null, + "state_code": null, + "city": "Brno", + "geonames_city": { + "id": 3078610, + "city": "Brno", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vnbrno.cz" + ], + "aliases": [], + "acronyms": [ + "VNBRNO" + ], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Vojensk%C3%A1_nemocnice_Brno", + "labels": [ + { + "label": "Vojenská nemocnice Brno", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6022 9202" + ], + "preferred": "0000 0004 6022 9202" + }, + "Wikidata": { + "all": [ + "Q27038324" + ], + "preferred": "Q27038324" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05nf86y53.json b/v1.47/v1/05nf86y53.json new file mode 100644 index 000000000..c3a3446a9 --- /dev/null +++ b/v1.47/v1/05nf86y53.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/05nf86y53", + "name": "Japan Atomic Energy Agency", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Advanced Science Research Center", + "type": "Child", + "id": "https://ror.org/05xrbcc66" + }, + { + "label": "Japan Proton Accelerator Research Complex", + "type": "Child", + "id": "https://ror.org/02vck8g64" + }, + { + "label": "International Network of Nuclear Reaction Data Centres", + "type": "Child", + "id": "https://ror.org/00e50mf91" + } + ], + "addresses": [ + { + "lat": 36.46078, + "lng": 140.58058, + "state": null, + "state_code": null, + "city": "Tōkai Mura", + "geonames_city": { + "id": 2110767, + "city": "Tōkai Mura", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.jaea.go.jp/english/index.html" + ], + "aliases": [], + "acronyms": [ + "JAEA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Japan_Atomic_Energy_Agency", + "labels": [ + { + "label": "日本原子力研究開発機構", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.20256.33", + "preferred": "grid.20256.33" + }, + "ISNI": { + "all": [ + "0000 0001 0372 1485" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1300624", + "Q39652817" + ], + "preferred": "Q1300624" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05nfypp21.json b/v1.47/v1/05nfypp21.json new file mode 100644 index 000000000..b63a09962 --- /dev/null +++ b/v1.47/v1/05nfypp21.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/05nfypp21", + "name": "Délégation Aquitaine", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre de Recherche Cardio-Thoracique de Bordeaux", + "type": "Child", + "id": "https://ror.org/04vgc9p51" + }, + { + "label": "Immunology from Concept and Experiments to Translation", + "type": "Child", + "id": "https://ror.org/02dsacc67" + }, + { + "label": "Institute for Cognitive Science", + "type": "Child", + "id": "https://ror.org/058hz8544" + }, + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Plateforme Technologique d'Innovation Biomédicale", + "type": "Child", + "id": "https://ror.org/05367a632" + }, + { + "label": "Régulations Naturelle et Artificielle", + "type": "Child", + "id": "https://ror.org/0208m5v39" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 44.80849, + "lng": -0.58915, + "state": null, + "state_code": null, + "city": "Talence", + "geonames_city": { + "id": 2973495, + "city": "Talence", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aquitaine.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR15" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457024.0", + "preferred": "grid.457024.0" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05q3vnk25.json b/v1.47/v1/05q3vnk25.json new file mode 100644 index 000000000..0c0e2a9e2 --- /dev/null +++ b/v1.47/v1/05q3vnk25.json @@ -0,0 +1,459 @@ +{ + "id": "https://ror.org/05q3vnk25", + "name": "Institut de Recherche pour le Développement", + "email_address": null, + "ip_addresses": [], + "established": 1937, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "AGroecologies, Innovations & Ruralities", + "type": "Child", + "id": "https://ror.org/01sjmsj73" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "Child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "Botany and Modelling of Plant Architecture and Vegetation", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Center for Social Studies on African, American and Asian Worlds", + "type": "Child", + "id": "https://ror.org/03pnk9016" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Diversité, adaptation, développement des plantes", + "type": "Child", + "id": "https://ror.org/02banhz78" + }, + { + "label": "Economic & Social Sciences, Health Systems & Medical Informatics", + "type": "Child", + "id": "https://ror.org/0508wny29" + }, + { + "label": "European Institute for Marine Studies", + "type": "Child", + "id": "https://ror.org/04pfr1b11" + }, + { + "label": "Functional Ecology and Biogeochemistry of Soils and Agrosystems", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Géoazur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Gouvernance, Risque, Environnement, Développement", + "type": "Child", + "id": "https://ror.org/01h4rra97" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Institut Pythéas Observatoire des Sciences de l’Univers", + "type": "Child", + "id": "https://ror.org/00f945z63" + }, + { + "label": "Institut de Recherche Pour le Développement", + "type": "Child", + "id": "https://ror.org/05kf9jb93" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/051ykjw41" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/044vzpb64" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/015q23935" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/01j4h9t83" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/00bnthp71" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/03xx98n35" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/032qezt74" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "Institute of Mineralogy, Materials Physics and Cosmochemistry", + "type": "Child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire des Sciences de l'Environnement Marin", + "type": "Child", + "id": "https://ror.org/05h929866" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratory HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "Child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Marine Biodiversity Exploitation and Conservation", + "type": "Child", + "id": "https://ror.org/049dk3691" + }, + { + "label": "Mediterranean Institute of Marine and Terrestrial Biodiversity and Ecology", + "type": "Child", + "id": "https://ror.org/0409c3995" + }, + { + "label": "Mediterranean Institute of Oceanography", + "type": "Child", + "id": "https://ror.org/05258q350" + }, + { + "label": "Mère et Enfant en Milieu Tropical", + "type": "Child", + "id": "https://ror.org/00rd22143" + }, + { + "label": "Pharmacochimie et Pharmacologie pour le Développement", + "type": "Child", + "id": "https://ror.org/03p7xrr08" + }, + { + "label": "Population Environment Development Laboratory", + "type": "Child", + "id": "https://ror.org/017qtjx43" + }, + { + "label": "Population and Development Center", + "type": "Child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "Child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Rhizogenesis Lab", + "type": "Child", + "id": "https://ror.org/04pzw3j14" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Unité de Modélisation Mathématique et Informatique des Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/053kxkj53" + }, + { + "label": "Écologie Marine Tropicale des Océans Pacifique et Indien", + "type": "Child", + "id": "https://ror.org/05kxt4539" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "Child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "Patrimoines locaux, Environnement et Globalisation", + "type": "Child", + "id": "https://ror.org/00mryrd39" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "Child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "Ecosystèmes Insulaires Océaniens", + "type": "Child", + "id": "https://ror.org/001j26r80" + }, + { + "label": "Interactions hotes-vecteurs-parasites-environnement dans les maladies tropicales négligées dues aux trypanosomatides", + "type": "Child", + "id": "https://ror.org/05ye29x39" + }, + { + "label": "UMR Développement et Sociétés", + "type": "Child", + "id": "https://ror.org/00waz9262" + }, + { + "label": "Soutenabilité et Résilence", + "type": "Child", + "id": "https://ror.org/047rqcm40" + }, + { + "label": "Savoirs, Environnement, Sociétés", + "type": "Child", + "id": "https://ror.org/04gpe6h67" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Languedoc-Roussillon Universities", + "type": "Parent", + "id": "https://ror.org/04f6hmf16" + }, + { + "label": "Ministère de l'Europe et des Affaires étrangères", + "type": "Parent", + "id": "https://ror.org/00dfd1509" + }, + { + "label": "Ministry of Higher Education and Research", + "type": "Parent", + "id": "https://ror.org/03sjk9a61" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://en.ird.fr/" + ], + "aliases": [], + "acronyms": [ + "IRD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_de_recherche_pour_le_d%C3%A9veloppement", + "labels": [ + { + "label": "Institute of Research for Development", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.4399.7", + "preferred": "grid.4399.7" + }, + "ISNI": { + "all": [ + "0000 0001 2287 9528" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2910510" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05qajvd42.json b/v1.47/v1/05qajvd42.json new file mode 100644 index 000000000..f3ce88dbb --- /dev/null +++ b/v1.47/v1/05qajvd42.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05qajvd42", + "name": "Australia Telescope National Facility", + "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": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.atnf.csiro.au" + ], + "aliases": [], + "acronyms": [ + "ATNF" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Australia_Telescope_National_Facility", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.421683.a", + "preferred": "grid.421683.a" + }, + "ISNI": { + "all": [ + "0000 0000 9629 7531" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4823603" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05qhvy459.json b/v1.47/v1/05qhvy459.json new file mode 100644 index 000000000..e36dc9a85 --- /dev/null +++ b/v1.47/v1/05qhvy459.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05qhvy459", + "name": "Språkbanken", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Språkbanken Tal", + "type": "Child", + "id": "https://ror.org/05kbck686" + }, + { + "label": "Språkbanken Text", + "type": "Child", + "id": "https://ror.org/03xfh2n14" + }, + { + "label": "Språkbanken Sam", + "type": "Child", + "id": "https://ror.org/01mqjeb88" + } + ], + "addresses": [ + { + "lat": 59.85882, + "lng": 17.63889, + "state": null, + "state_code": null, + "city": "Uppsala", + "geonames_city": { + "id": 2666199, + "city": "Uppsala", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sprakbanken.se" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://sv.wikipedia.org/wiki/Nationella_spr%C3%A5kbanken", + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q95580135" + ], + "preferred": "Q95580135" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05qjm4845.json b/v1.47/v1/05qjm4845.json new file mode 100644 index 000000000..a15f96ad5 --- /dev/null +++ b/v1.47/v1/05qjm4845.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05qjm4845", + "name": "Botswana University of Agriculture and Natural Resources", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -24.65451, + "lng": 25.90859, + "state": null, + "state_code": null, + "city": "Gaborone", + "geonames_city": { + "id": 933773, + "city": "Gaborone", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.bca.bw" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Botswana_University_of_Agriculture_and_Natural_Resources", + "labels": [], + "country": { + "country_name": "Botswana", + "country_code": "BW" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0566 8307" + ], + "preferred": "0000 0001 0566 8307" + }, + "Wikidata": { + "all": [ + "Q3388063" + ], + "preferred": "Q3388063" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05qpz1x62.json b/v1.47/v1/05qpz1x62.json new file mode 100644 index 000000000..6477e760f --- /dev/null +++ b/v1.47/v1/05qpz1x62.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/05qpz1x62", + "name": "Friedrich Schiller University Jena", + "email_address": null, + "ip_addresses": [], + "established": 1558, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Jena University Hospital", + "type": "Related", + "id": "https://ror.org/035rzkx15" + }, + { + "label": "Zentralklinik Bad Berka", + "type": "Related", + "id": "https://ror.org/00zfe1b87" + }, + { + "label": "Thüringer Universitäts- und Landesbibliothek", + "type": "Child", + "id": "https://ror.org/0493yt138" + } + ], + "addresses": [ + { + "lat": 50.92878, + "lng": 11.5899, + "state": null, + "state_code": null, + "city": "Jena", + "geonames_city": { + "id": 2895044, + "city": "Jena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni-jena.de/en" + ], + "aliases": [], + "acronyms": [ + "FSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Jena", + "labels": [ + { + "label": "Friedrich-Schiller-Universität Jena", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.9613.d", + "preferred": "grid.9613.d" + }, + "ISNI": { + "all": [ + "0000 0001 1939 2794" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q154561" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05qrfxd25.json b/v1.47/v1/05qrfxd25.json new file mode 100644 index 000000000..c98fec9aa --- /dev/null +++ b/v1.47/v1/05qrfxd25.json @@ -0,0 +1,361 @@ +{ + "id": "https://ror.org/05qrfxd25", + "name": "Russian Academy of Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1724, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "All-Russian Scientific Research Institute of Butter and Cheese Making", + "type": "Child", + "id": "https://ror.org/01wxbtj35" + }, + { + "label": "Bioengineering Center", + "type": "Child", + "id": "https://ror.org/04f0ydx59" + }, + { + "label": "Computer Equipment and Technologies", + "type": "Child", + "id": "https://ror.org/00tgr2h49" + }, + { + "label": "Dagestan Scientific Center of the Russian Academy of Sciences", + "type": "Child", + "id": "https://ror.org/01fz81h65" + }, + { + "label": "Department of Agricultural Sciences", + "type": "Child", + "id": "https://ror.org/05wtp9w08" + }, + { + "label": "Department of Biological Sciences", + "type": "Child", + "id": "https://ror.org/038rjvd86" + }, + { + "label": "Department of Chemistry and Material Sciences", + "type": "Child", + "id": "https://ror.org/059tqvg48" + }, + { + "label": "Department of Earth Sciences", + "type": "Child", + "id": "https://ror.org/0554h7e84" + }, + { + "label": "Department of Energy, Engineering, Mechanics and Control Processes", + "type": "Child", + "id": "https://ror.org/05kknxr83" + }, + { + "label": "Department of Global Issues and International Relations", + "type": "Child", + "id": "https://ror.org/021eek248" + }, + { + "label": "Department of Mathematical Sciences", + "type": "Child", + "id": "https://ror.org/02xkdev90" + }, + { + "label": "Department of Medical Sciences", + "type": "Child", + "id": "https://ror.org/019zcmj26" + }, + { + "label": "Department of Physiological Sciences", + "type": "Child", + "id": "https://ror.org/0218eta95" + }, + { + "label": "Department of Social Sciences", + "type": "Child", + "id": "https://ror.org/01twn9665" + }, + { + "label": "Division of Historical and Philological Sciences", + "type": "Child", + "id": "https://ror.org/02ae4g054" + }, + { + "label": "Experimental Factory of Scientific Engineering and Special Design Department", + "type": "Child", + "id": "https://ror.org/010rhww45" + }, + { + "label": "Far Eastern Branch of the Russian Academy of Sciences", + "type": "Child", + "id": "https://ror.org/05t43vz03" + }, + { + "label": "Federal State Budgetary Institution of Science \"Scientific and Technological Center of Unique Instrumentation\" of the Russian Academy of Sciences", + "type": "Child", + "id": "https://ror.org/046npx426" + }, + { + "label": "Institute for Complex Analysis of Regional Problems", + "type": "Child", + "id": "https://ror.org/04d2pnx52" + }, + { + "label": "Institute for International Economic and Political Studies", + "type": "Child", + "id": "https://ror.org/00fr05644" + }, + { + "label": "Institute of Anthropology and Ethnography", + "type": "Child", + "id": "https://ror.org/04f3vpm64" + }, + { + "label": "Institute of Biology of Komi Scientific Centre", + "type": "Child", + "id": "https://ror.org/00029be75" + }, + { + "label": "Institute of Ecology of Mountain Territories", + "type": "Child", + "id": "https://ror.org/037jk8996" + }, + { + "label": "Institute of Far Eastern Studies", + "type": "Child", + "id": "https://ror.org/02ggnh308" + }, + { + "label": "Institute of Marine Geology and Geophysics", + "type": "Child", + "id": "https://ror.org/021923v79" + }, + { + "label": "Institute of Mineralogy, Geochemistry and Crystallochemistry of Rare Elements", + "type": "Child", + "id": "https://ror.org/041v5wj47" + }, + { + "label": "Institute of Physics and Technology", + "type": "Child", + "id": "https://ror.org/005n3yy14" + }, + { + "label": "Institute of Physics of Molecules and Crystals", + "type": "Child", + "id": "https://ror.org/03a8ase89" + }, + { + "label": "Institute of Precision Mechanics and Computer Science S.A. Lebedev", + "type": "Child", + "id": "https://ror.org/00sv3ym08" + }, + { + "label": "Institute of Scientific Information on Social Sciences", + "type": "Child", + "id": "https://ror.org/04j4xtm35" + }, + { + "label": "Institute of Social and Economic Studies of Population", + "type": "Child", + "id": "https://ror.org/03cdkd641" + }, + { + "label": "Institute of Superhigh-Frequency Semiconductor Electronics of the Russian Academy of Sciences", + "type": "Child", + "id": "https://ror.org/003gcpg05" + }, + { + "label": "Kabardino-Balkarian Scientific Center", + "type": "Child", + "id": "https://ror.org/031aa5q21" + }, + { + "label": "Library of the Russian Academy of Sciences", + "type": "Child", + "id": "https://ror.org/01brhxa96" + }, + { + "label": "Mavlyutov Institute of Mechanics", + "type": "Child", + "id": "https://ror.org/00bh9qz66" + }, + { + "label": "North Caucasian Research Institute of Mountain and Foothill Agriculture", + "type": "Child", + "id": "https://ror.org/049cw4s75" + }, + { + "label": "Physical Sciences Division", + "type": "Child", + "id": "https://ror.org/00ns9pc83" + }, + { + "label": "Program Systems Institute of RAS", + "type": "Child", + "id": "https://ror.org/040r4cv22" + }, + { + "label": "Pushchino State Institute of Natural Sciences", + "type": "Child", + "id": "https://ror.org/05tc61k56" + }, + { + "label": "Regional Research Centres", + "type": "Child", + "id": "https://ror.org/05rbd6k73" + }, + { + "label": "S.I. Vavilov Institute for the History of Science and Technology", + "type": "Child", + "id": "https://ror.org/04kybmr51" + }, + { + "label": "Saratov Research Center", + "type": "Child", + "id": "https://ror.org/044037f11" + }, + { + "label": "Scientific Research Institute of Introscopy", + "type": "Child", + "id": "https://ror.org/005n4rr58" + }, + { + "label": "Siberian Branch of the Russian Academy of Sciences", + "type": "Child", + "id": "https://ror.org/02frkq021" + }, + { + "label": "Southern Scientific Center", + "type": "Child", + "id": "https://ror.org/053nrfb18" + }, + { + "label": "Submicron Heterostructures for Microelectronics Research and Engineering Center", + "type": "Child", + "id": "https://ror.org/045dz4566" + }, + { + "label": "The Institute of Europe of the Russian Academy of Sciences", + "type": "Child", + "id": "https://ror.org/049zx9d10" + }, + { + "label": "Tomsk National Research Medical Center", + "type": "Child", + "id": "https://ror.org/01z0w8p93" + }, + { + "label": "Ural Branch of the Russian Academy of Sciences", + "type": "Child", + "id": "https://ror.org/02s4h3z39" + }, + { + "label": "Vernadsky State Geological Museum", + "type": "Child", + "id": "https://ror.org/02qhbts44" + }, + { + "label": "St. Petersburg Research Center of the Russian Academy of Sciences", + "type": "Child", + "id": "https://ror.org/0028hwj42" + }, + { + "label": "Institute of Limnology of the Russian Academy of Sciences", + "type": "Child", + "id": "https://ror.org/04prhhh77" + }, + { + "label": "Science Center for Information Technologies in Design", + "type": "Child", + "id": "https://ror.org/05kmgev50" + } + ], + "addresses": [ + { + "lat": 55.75222, + "lng": 37.61556, + "state": null, + "state_code": null, + "city": "Moscow", + "geonames_city": { + "id": 524901, + "city": "Moscow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ras.ru/" + ], + "aliases": [ + "Rossíiskaya Akadémiya Naúk" + ], + "acronyms": [ + "RAS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Russian_Academy_of_Sciences", + "labels": [ + { + "label": "Российская академия наук", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.4886.2", + "preferred": "grid.4886.2" + }, + "ISNI": { + "all": [ + "0000 0001 2192 9124" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q83172" + ], + "preferred": "Q83172" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05qy72j51.json b/v1.47/v1/05qy72j51.json new file mode 100644 index 000000000..31dcb25e8 --- /dev/null +++ b/v1.47/v1/05qy72j51.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/05qy72j51", + "name": "dsafsdf", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "VIPS²" + ], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/05r1hax23.json b/v1.47/v1/05r1hax23.json new file mode 100644 index 000000000..46f396d7f --- /dev/null +++ b/v1.47/v1/05r1hax23.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/05r1hax23", + "name": "Armed Forces Hospital Southern Region", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 18.3, + "lng": 42.73333, + "state": null, + "state_code": null, + "city": "Khamis Mushait", + "geonames_city": { + "id": 105072, + "city": "Khamis Mushait", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.afhsr.med.sa" + ], + "aliases": [], + "acronyms": [ + "AFHSR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "مستشفى القوات المسلحة بالجنوب", + "iso639": "ar" + } + ], + "country": { + "country_name": "Saudi Arabia", + "country_code": "SA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/05rfrd414.json b/v1.47/v1/05rfrd414.json new file mode 100644 index 000000000..c59903486 --- /dev/null +++ b/v1.47/v1/05rfrd414.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05rfrd414", + "name": "Saint Michael College of Caraga", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 8.96917, + "lng": 125.29472, + "state": null, + "state_code": null, + "city": "Nasipit", + "geonames_city": { + "id": 1698063, + "city": "Nasipit", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://smccnasipit.edu.ph" + ], + "aliases": [ + "Saint Michael's Institute", + "St. Michael College of Caraga" + ], + "acronyms": [ + "SMCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saint_Michael_College_of_Caraga", + "labels": [ + { + "label": "Dalubhasaang San Miguel ng Caraga", + "iso639": "tl" + } + ], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q7401915" + ], + "preferred": "Q7401915" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05rrcem69.json b/v1.47/v1/05rrcem69.json new file mode 100644 index 000000000..35fc9ff13 --- /dev/null +++ b/v1.47/v1/05rrcem69.json @@ -0,0 +1,140 @@ +{ + "id": "https://ror.org/05rrcem69", + "name": "University of California, Davis", + "email_address": null, + "ip_addresses": [], + "established": 1905, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "NeuroMab", + "type": "Child", + "id": "https://ror.org/00fyrp007" + }, + { + "label": "Tahoe Environmental Research Center", + "type": "Child", + "id": "https://ror.org/00xcmeq33" + }, + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "San Joaquin General Hospital", + "type": "Related", + "id": "https://ror.org/02ha38c24" + }, + { + "label": "UC Davis Children's Hospital", + "type": "Related", + "id": "https://ror.org/05ehe8t08" + }, + { + "label": "UC Davis Health System", + "type": "Related", + "id": "https://ror.org/05q8kyc69" + }, + { + "label": "University of California Davis Medical Center", + "type": "Related", + "id": "https://ror.org/05t6gpm70" + }, + { + "label": "Veterinary Medical Teaching Hospital", + "type": "Related", + "id": "https://ror.org/026t0fx73" + } + ], + "addresses": [ + { + "lat": 38.54491, + "lng": -121.74052, + "state": null, + "state_code": null, + "city": "Davis", + "geonames_city": { + "id": 5341704, + "city": "Davis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ucdavis.edu" + ], + "aliases": [ + "UC Davis" + ], + "acronyms": [ + "UCD" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_California,_Davis", + "labels": [ + { + "label": "Universidad de California en Davis", + "iso639": "es" + }, + { + "label": "Université de Californie à Davis", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.27860.3b", + "preferred": "grid.27860.3b" + }, + "ISNI": { + "all": [ + "0000 0004 1936 9684" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q129421" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05rsdqb94.json b/v1.47/v1/05rsdqb94.json new file mode 100644 index 000000000..30b8ddb9d --- /dev/null +++ b/v1.47/v1/05rsdqb94.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05rsdqb94", + "name": "Mercy Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "HCA Healthcare", + "type": "Parent", + "id": "https://ror.org/0237c2m81" + } + ], + "addresses": [ + { + "lat": 25.77427, + "lng": -80.19366, + "state": null, + "state_code": null, + "city": "Miami", + "geonames_city": { + "id": 4164138, + "city": "Miami", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mercy_Hospital_(Miami)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.415370.4", + "preferred": "grid.415370.4" + }, + "ISNI": { + "all": [ + "0000 0004 0441 0381" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6818757" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05s056h84.json b/v1.47/v1/05s056h84.json new file mode 100644 index 000000000..d2835f7d9 --- /dev/null +++ b/v1.47/v1/05s056h84.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/05s056h84", + "name": "Faculdade Católica de Cuiabá", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "União das Faculdades Católicas de Mato Grosso", + "type": "Parent", + "id": "https://ror.org/02jj0ar17" + } + ], + "addresses": [ + { + "lat": -15.59611, + "lng": -56.09667, + "state": null, + "state_code": null, + "city": "Cuiabá", + "geonames_city": { + "id": 3465038, + "city": "Cuiabá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unifacc.com.br/faculdade-catolica-de-cuiaba/" + ], + "aliases": [], + "acronyms": [ + "FACC-CBA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/05s4t4n85.json b/v1.47/v1/05s4t4n85.json new file mode 100644 index 000000000..3d55465db --- /dev/null +++ b/v1.47/v1/05s4t4n85.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/05s4t4n85", + "name": "Faculdade Católica de Mato Grosso", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "União das Faculdades Católicas de Mato Grosso", + "type": "Parent", + "id": "https://ror.org/02jj0ar17" + } + ], + "addresses": [ + { + "lat": -15.59611, + "lng": -56.09667, + "state": null, + "state_code": null, + "city": "Cuiabá", + "geonames_city": { + "id": 3465038, + "city": "Cuiabá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unifacc.com.br/faculdade-catolica-de-mato-grosso/" + ], + "aliases": [], + "acronyms": [ + "FACC-MT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/05s5aag36.json b/v1.47/v1/05s5aag36.json new file mode 100644 index 000000000..029d7d15d --- /dev/null +++ b/v1.47/v1/05s5aag36.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/05s5aag36", + "name": "Queensland Department of Agriculture and Fisheries", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Queensland Government", + "type": "Parent", + "id": "https://ror.org/037405308" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.daf.qld.gov.au/" + ], + "aliases": [ + "Department of Agriculture and Fisheries" + ], + "acronyms": [ + "DAF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Agriculture_and_Fisheries_(Queensland)", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.492998.7", + "preferred": "grid.492998.7" + }, + "ISNI": { + "all": [ + "0000 0001 0729 4564" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5260137" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05s6rge65.json b/v1.47/v1/05s6rge65.json new file mode 100644 index 000000000..0800fdbfb --- /dev/null +++ b/v1.47/v1/05s6rge65.json @@ -0,0 +1,154 @@ +{ + "id": "https://ror.org/05s6rge65", + "name": "École Centrale de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 1857, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Field Observatory in Urban Hydrology", + "type": "Child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Institut des Nanotechnologies de Lyon", + "type": "Child", + "id": "https://ror.org/04jsk0b74" + }, + { + "label": "Interactions, Corpus, Apprentissages, Représentations", + "type": "Child", + "id": "https://ror.org/04mn0nr69" + }, + { + "label": "Laboratoire Ampère", + "type": "Child", + "id": "https://ror.org/04xbczw40" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "Child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "Child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Laboratoire de Tribologie et Dynamique des Systèmes", + "type": "Child", + "id": "https://ror.org/015vtcw98" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + } + ], + "addresses": [ + { + "lat": 45.77437, + "lng": 4.77758, + "state": null, + "state_code": null, + "city": "Écully", + "geonames_city": { + "id": 3020392, + "city": "Écully", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ec-lyon.fr/en" + ], + "aliases": [], + "acronyms": [ + "ECL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_centrale_de_Lyon", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.15401.31", + "preferred": "grid.15401.31" + }, + "ISNI": { + "all": [ + "0000 0001 2181 0799" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10177" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05sz45x40.json b/v1.47/v1/05sz45x40.json new file mode 100644 index 000000000..3241821f7 --- /dev/null +++ b/v1.47/v1/05sz45x40.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05sz45x40", + "name": "Queensland Department of the Premier and Cabinet", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Queensland Government", + "type": "Parent", + "id": "https://ror.org/037405308" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.premiers.qld.gov.au/" + ], + "aliases": [ + "Department of the Premier and Cabinet" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_the_Premier_and_Cabinet_(Queensland)", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.468065.9", + "preferred": "grid.468065.9" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05tqdk852.json b/v1.47/v1/05tqdk852.json new file mode 100644 index 000000000..385082b03 --- /dev/null +++ b/v1.47/v1/05tqdk852.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/05tqdk852", + "name": "Laboratoire d'Excellence Dynamiques Territoriales et Spatiales", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.91667, + "lng": 2.38333, + "state": null, + "state_code": null, + "city": "Aubervilliers", + "geonames_city": { + "id": 3036386, + "city": "Aubervilliers", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://labex-dynamite.com" + ], + "aliases": [ + "LabEx DynamiTe" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/05tvhac84.json b/v1.47/v1/05tvhac84.json new file mode 100644 index 000000000..a20be2d39 --- /dev/null +++ b/v1.47/v1/05tvhac84.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/05tvhac84", + "name": "Andorra Recerca + Innovació", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.46372, + "lng": 1.49129, + "state": null, + "state_code": null, + "city": "Sant Julià de Lòria", + "geonames_city": { + "id": 3039163, + "city": "Sant Julià de Lòria", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ari.ad" + ], + "aliases": [ + "Andorra Recerca Innovació", + "Andorra Research & Innovation", + "Andorra Research + Innovation" + ], + "acronyms": [ + "AR+I" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Andorra", + "country_code": "AD" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/05v2x6b69.json b/v1.47/v1/05v2x6b69.json new file mode 100644 index 000000000..51b7d7d3d --- /dev/null +++ b/v1.47/v1/05v2x6b69.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05v2x6b69", + "name": "Imam Khomeini Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1931, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Tehran University of Medical Sciences", + "type": "Parent", + "id": "https://ror.org/01c4pz451" + } + ], + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ikhc.tums.ac.ir" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Imam_Khomeini_Hospital_Complex", + "labels": [ + { + "label": "بیمارستان امام خمینی تهران", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "GRID": { + "all": "grid.414574.7", + "preferred": "grid.414574.7" + }, + "ISNI": { + "all": [ + "0000 0004 0369 3463" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6003087" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05vnsdr62.json b/v1.47/v1/05vnsdr62.json new file mode 100644 index 000000000..c742fc4d2 --- /dev/null +++ b/v1.47/v1/05vnsdr62.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/05vnsdr62", + "name": "Tumu College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.87645, + "lng": -1.97911, + "state": null, + "state_code": null, + "city": "Tumu", + "geonames_city": { + "id": 2294342, + "city": "Tumu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tuce.edu.gh" + ], + "aliases": [], + "acronyms": [ + "TuCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Tumu_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996990" + ], + "preferred": "Q46996990" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05wkbzn97.json b/v1.47/v1/05wkbzn97.json new file mode 100644 index 000000000..23a5efb47 --- /dev/null +++ b/v1.47/v1/05wkbzn97.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05wkbzn97", + "name": "Seattle Public Utilities", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of Seattle", + "type": "Parent", + "id": "https://ror.org/05x3f0345" + } + ], + "addresses": [ + { + "lat": 47.60621, + "lng": -122.33207, + "state": null, + "state_code": null, + "city": "Seattle", + "geonames_city": { + "id": 5809844, + "city": "Seattle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.seattle.gov/utilities" + ], + "aliases": [ + "City of Seattle Public Utilities" + ], + "acronyms": [ + "SPU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Seattle_Public_Utilities", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 8952 5196" + ], + "preferred": "0000 0000 8952 5196" + }, + "Wikidata": { + "all": [ + "Q7442159" + ], + "preferred": "Q7442159" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05x3f0345.json b/v1.47/v1/05x3f0345.json new file mode 100644 index 000000000..e80adf9f6 --- /dev/null +++ b/v1.47/v1/05x3f0345.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05x3f0345", + "name": "Government of Seattle", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Seattle Public Utilities", + "type": "Child", + "id": "https://ror.org/05wkbzn97" + } + ], + "addresses": [ + { + "lat": 47.60621, + "lng": -122.33207, + "state": null, + "state_code": null, + "city": "Seattle", + "geonames_city": { + "id": 5809844, + "city": "Seattle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.seattle.gov" + ], + "aliases": [ + "Government of the City of Seattle", + "Seattle City Government", + "Seattle Government" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q55127905" + ], + "preferred": "Q55127905" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05xde4j27.json b/v1.47/v1/05xde4j27.json new file mode 100644 index 000000000..d13943c86 --- /dev/null +++ b/v1.47/v1/05xde4j27.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05xde4j27", + "name": "United States Naval Hospital Okinawa", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "United States Navy", + "type": "Parent", + "id": "https://ror.org/03cs53d16" + } + ], + "addresses": [ + { + "lat": 26.33583, + "lng": 127.80139, + "state": null, + "state_code": null, + "city": "Okinawa", + "geonames_city": { + "id": 1894616, + "city": "Okinawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.med.navy.mil/sites/nhoki/SitePages/default.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "米国海軍病院", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.417051.6", + "preferred": "grid.417051.6" + }, + "ISNI": { + "all": [ + "0000 0004 0419 9571" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05xgfr295.json b/v1.47/v1/05xgfr295.json new file mode 100644 index 000000000..ed97a30d7 --- /dev/null +++ b/v1.47/v1/05xgfr295.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05xgfr295", + "name": "Canadian Sleep & Circadian Network", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.50884, + "lng": -73.58781, + "state": null, + "state_code": null, + "city": "Montreal", + "geonames_city": { + "id": 6077243, + "city": "Montreal", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cscnweb.ca/" + ], + "aliases": [ + "Center for Advanced Research in Sleep Medicine" + ], + "acronyms": [ + "CSCN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre d'Études Avancées en Médecine du Sommeil", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.505609.f", + "preferred": "grid.505609.f" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05xn4js35.json b/v1.47/v1/05xn4js35.json new file mode 100644 index 000000000..af2483204 --- /dev/null +++ b/v1.47/v1/05xn4js35.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05xn4js35", + "name": "University of Belgrade - Faculty of Geography", + "email_address": null, + "ip_addresses": [], + "established": 1893, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Belgrade", + "type": "Parent", + "id": "https://ror.org/02qsmb048" + } + ], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://gef.bg.ac.rs" + ], + "aliases": [], + "acronyms": [ + "UB-GEF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Univerzitet u Beogradu - Geografski fakultet", + "iso639": "sr" + }, + { + "label": "Универзитет у Београду – Географски факултет", + "iso639": "sr" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0474 6125" + ], + "preferred": "0000 0004 0474 6125" + }, + "Wikidata": { + "all": [ + "Q12750164" + ], + "preferred": "Q12750164" + } + } +} \ No newline at end of file diff --git a/v1.47/v1/05y5s3h28.json b/v1.47/v1/05y5s3h28.json new file mode 100644 index 000000000..31f7bebaa --- /dev/null +++ b/v1.47/v1/05y5s3h28.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05y5s3h28", + "name": "Plant Health Institute de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "University of Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://umr-phim.cirad.fr" + ], + "aliases": [ + "Plant Health Institute of Montpellier" + ], + "acronyms": [ + "PHIM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.47/v1/05ycwtk34.json b/v1.47/v1/05ycwtk34.json new file mode 100644 index 000000000..06f6810c8 --- /dev/null +++ b/v1.47/v1/05ycwtk34.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05ycwtk34", + "name": "Agence Thématique de Recherche en Sciences et Technologie", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.72028, + "lng": 3.145, + "state": null, + "state_code": null, + "city": "El Harrach", + "geonames_city": { + "id": 2498056, + "city": "El Harrach", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Agence Nationale pour le Développement de la Recherche Universitaire" + ], + "acronyms": [ + "ANDRU", + "ATRST" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6087 8384" + ], + "preferred": "0000 0004 6087 8384" + }, + "Wikidata": { + "all": [ + "Q45136024" + ], + "preferred": "Q45136024" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0000n5x09.json b/v1.49/v1/0000n5x09.json new file mode 100644 index 000000000..ec69503b0 --- /dev/null +++ b/v1.49/v1/0000n5x09.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/0000n5x09", + "name": "Agropolymerpolymer Engineering and Emerging Technologies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "Parent", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://umr-iate.cirad.fr/en" + ], + "aliases": [], + "acronyms": [ + "IATE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Ingénierie des Agropolymères et Technologies Emergentes", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463886.7", + "preferred": "grid.463886.7" + }, + "ISNI": { + "all": [ + "0000 0004 0373 6662" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0003ege03.json b/v1.49/v1/0003ege03.json new file mode 100644 index 000000000..513f2b837 --- /dev/null +++ b/v1.49/v1/0003ege03.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/0003ege03", + "name": "Centre de Recherches sur les Macromolécules Végétales", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17997, + "lng": 5.78935, + "state": null, + "state_code": null, + "city": "Gières", + "geonames_city": { + "id": 3016089, + "city": "Gières", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cermav.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CERMAV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462875.a", + "preferred": "grid.462875.a" + }, + "ISNI": { + "all": [ + "0000 0001 1882 3513" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0005r2j17.json b/v1.49/v1/0005r2j17.json new file mode 100644 index 000000000..e756490d2 --- /dev/null +++ b/v1.49/v1/0005r2j17.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/0005r2j17", + "name": "Institut Agronomique Méditerranéen de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre International deHautes Etudes Agronomiques Méditerranéennes", + "type": "Parent", + "id": "https://ror.org/04abkkz03" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iamm.ciheam.org/" + ], + "aliases": [], + "acronyms": [ + "IAMM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Mediterranean Agronomic Institute of Montpellier", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.493228.6", + "preferred": "grid.493228.6" + }, + "ISNI": { + "all": [ + "0000 0001 2200 2101" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0018c4h73.json b/v1.49/v1/0018c4h73.json new file mode 100644 index 000000000..123e37e85 --- /dev/null +++ b/v1.49/v1/0018c4h73.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0018c4h73", + "name": "Institut Charles Viollette", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université d'Artois", + "type": "Parent", + "id": "https://ror.org/053x9s498" + }, + { + "label": "JUNIA", + "type": "Parent", + "id": "https://ror.org/02evec030" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université du littoral côte d'opale", + "type": "Parent", + "id": "https://ror.org/02gdcg342" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://institutcharlesviollette.univ-lille.fr/fr_FR/accueil" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503226.0", + "preferred": "grid.503226.0" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0018tj392.json b/v1.49/v1/0018tj392.json new file mode 100644 index 000000000..e0a841d5b --- /dev/null +++ b/v1.49/v1/0018tj392.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/0018tj392", + "name": "Humanities Kansas", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 39.04833, + "lng": -95.67804, + "state": null, + "state_code": null, + "city": "Topeka", + "geonames_city": { + "id": 4280539, + "city": "Topeka", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.humanitieskansas.org" + ], + "aliases": [ + "Kansas Humanities Council" + ], + "acronyms": [ + "KHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446794.c", + "preferred": "grid.446794.c" + }, + "ISNI": { + "all": [ + "0000 0004 5902 4744" + ], + "preferred": "0000 0004 5902 4744" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/001dmmw97.json b/v1.49/v1/001dmmw97.json new file mode 100644 index 000000000..a1f0a8f8b --- /dev/null +++ b/v1.49/v1/001dmmw97.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/001dmmw97", + "name": "Leipzig Research Centre Global Dynamics", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.33962, + "lng": 12.37129, + "state": null, + "state_code": null, + "city": "Leipzig", + "geonames_city": { + "id": 2879139, + "city": "Leipzig", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://recentglobe.uni-leipzig.de" + ], + "aliases": [ + "ReCentGlobe" + ], + "acronyms": [], + "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.49/v1/001f39w38.json b/v1.49/v1/001f39w38.json new file mode 100644 index 000000000..bda6104f0 --- /dev/null +++ b/v1.49/v1/001f39w38.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/001f39w38", + "name": "Clermont Auvergne INP", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Sigma Clermont", + "type": "Child", + "id": "https://ror.org/02n5evf44" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.clermont-auvergne-inp.fr" + ], + "aliases": [ + "Institut national polytechnique Clermont Auvergne", + "Polytechnic Institute of Clermont-Auvergne" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Polytechnic_Institute_of_Clermont-Auvergne", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q105809850" + ], + "preferred": "Q105809850" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/001vq2a15.json b/v1.49/v1/001vq2a15.json new file mode 100644 index 000000000..604f40b2a --- /dev/null +++ b/v1.49/v1/001vq2a15.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/001vq2a15", + "name": "University of the South Pacific", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of the South Pacific", + "type": "Parent", + "id": "https://ror.org/008stv805" + } + ], + "addresses": [ + { + "lat": -9.43333, + "lng": 159.95, + "state": null, + "state_code": null, + "city": "Honiara", + "geonames_city": { + "id": 2108502, + "city": "Honiara", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usp.ac.fj/" + ], + "aliases": [], + "acronyms": [ + "USP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_the_South_Pacific", + "labels": [], + "country": { + "country_name": "Solomon Islands", + "country_code": "SB" + }, + "external_ids": { + "GRID": { + "all": "grid.449748.2", + "preferred": "grid.449748.2" + }, + "ISNI": { + "all": [ + "0000 0004 0393 3869" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7896771" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0027wax95.json b/v1.49/v1/0027wax95.json new file mode 100644 index 000000000..f226ed96d --- /dev/null +++ b/v1.49/v1/0027wax95.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/0027wax95", + "name": "Cal Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.calhum.org/" + ], + "aliases": [ + "California Council for the Humanities" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446428.8", + "preferred": "grid.446428.8" + }, + "ISNI": { + "all": [ + "0000 0004 8306 5538" + ], + "preferred": "0000 0004 8306 5538" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/002ty1h48.json b/v1.49/v1/002ty1h48.json new file mode 100644 index 000000000..bdd7265b0 --- /dev/null +++ b/v1.49/v1/002ty1h48.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/002ty1h48", + "name": "Laboratoire pour l'utilisation des lasers intenses", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://luli.ip-paris.fr" + ], + "aliases": [], + "acronyms": [ + "LULI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory for the User of Intense Lasers", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463726.2", + "preferred": "grid.463726.2" + }, + "ISNI": { + "all": [ + "0000 0000 9029 5703" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3214506" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/002v40q27.json b/v1.49/v1/002v40q27.json new file mode 100644 index 000000000..caec2fe10 --- /dev/null +++ b/v1.49/v1/002v40q27.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/002v40q27", + "name": "Institut des Neurosciences Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.7326, + "lng": 2.16923, + "state": null, + "state_code": null, + "city": "Saclay", + "geonames_city": { + "id": 2982043, + "city": "Saclay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://neuropsi.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "Neuro-PSI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut des Neurosciences Paris Saclay", + "iso639": "fr" + }, + { + "label": "Paris-Saclay Institute of Neuroscience", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.465540.6", + "preferred": "grid.465540.6" + }, + "Wikidata": { + "all": [ + "Q30261478" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/002yp7f20.json b/v1.49/v1/002yp7f20.json new file mode 100644 index 000000000..df3948fba --- /dev/null +++ b/v1.49/v1/002yp7f20.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/002yp7f20", + "name": "Thammasat University", + "email_address": null, + "ip_addresses": [], + "established": 1934, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Thammasat University Hospital", + "type": "Related", + "id": "https://ror.org/02s7hnh67" + } + ], + "addresses": [ + { + "lat": 13.75398, + "lng": 100.50144, + "state": null, + "state_code": null, + "city": "Bangkok", + "geonames_city": { + "id": 1609350, + "city": "Bangkok", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tu.ac.th" + ], + "aliases": [ + "Mahawitthayalai Thammasat" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Thammasat_University", + "labels": [ + { + "label": "มหาวิทยาลัยธรรมศาสตร์", + "iso639": "th" + } + ], + "country": { + "country_name": "Thailand", + "country_code": "TH" + }, + "external_ids": { + "GRID": { + "all": "grid.412434.4", + "preferred": "grid.412434.4" + }, + "ISNI": { + "all": [ + "0000 0004 1937 1127" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1209733" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/002zc3t08.json b/v1.49/v1/002zc3t08.json new file mode 100644 index 000000000..7ee6f9725 --- /dev/null +++ b/v1.49/v1/002zc3t08.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/002zc3t08", + "name": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Observatoire de Paris", + "type": "Parent", + "id": "https://ror.org/029nkcm90" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.imcce.fr" + ], + "aliases": [], + "acronyms": [ + "IMCCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_de_m%C3%A9canique_c%C3%A9leste_et_de_calcul_des_%C3%A9ph%C3%A9m%C3%A9rides", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462516.2", + "preferred": "grid.462516.2" + }, + "ISNI": { + "all": [ + "0000 0001 0672 5780" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3152052" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0033f4j54.json b/v1.49/v1/0033f4j54.json new file mode 100644 index 000000000..93b6ca03f --- /dev/null +++ b/v1.49/v1/0033f4j54.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/0033f4j54", + "name": "Royal Numismatic Society", + "email_address": null, + "ip_addresses": [], + "established": 1836, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://numismatics.org.uk" + ], + "aliases": [], + "acronyms": [ + "RNS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Royal_Numismatic_Society", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2164 3441" + ], + "preferred": "0000 0001 2164 3441" + }, + "Wikidata": { + "all": [ + "Q3942072" + ], + "preferred": "Q3942072" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0033vhx30.json b/v1.49/v1/0033vhx30.json new file mode 100644 index 000000000..c7ae88c33 --- /dev/null +++ b/v1.49/v1/0033vhx30.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/0033vhx30", + "name": "Université Paris-Seine", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.03645, + "lng": 2.07613, + "state": null, + "state_code": null, + "city": "Cergy", + "geonames_city": { + "id": 3027883, + "city": "Cergy", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.universiteparisseine.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Paris-Seine", + "labels": [ + { + "label": "University of Paris-Seine", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.460792.e", + "preferred": "grid.460792.e" + }, + "Wikidata": { + "all": [ + "Q3247880" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00357kh21.json b/v1.49/v1/00357kh21.json new file mode 100644 index 000000000..4cbd02eef --- /dev/null +++ b/v1.49/v1/00357kh21.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00357kh21", + "name": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.mivegec.ird.fr/fr/" + ], + "aliases": [], + "acronyms": [ + "MIVEGEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462603.5", + "preferred": "grid.462603.5" + }, + "ISNI": { + "all": [ + "0000 0004 0382 3424" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/003fs1j49.json b/v1.49/v1/003fs1j49.json new file mode 100644 index 000000000..c3c78aa4a --- /dev/null +++ b/v1.49/v1/003fs1j49.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/003fs1j49", + "name": "Savoirs, Textes, Langage", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://stl.univ-lille.fr/" + ], + "aliases": [], + "acronyms": [ + "STL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.483682.3", + "preferred": "grid.483682.3" + }, + "ISNI": { + "all": [ + "0000 0001 0790 5038" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/003qhrc72.json b/v1.49/v1/003qhrc72.json new file mode 100644 index 000000000..612db8c01 --- /dev/null +++ b/v1.49/v1/003qhrc72.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/003qhrc72", + "name": "Unité de Nutrition Humaine", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.ara.inrae.fr/unh/" + ], + "aliases": [ + "Human Nutrition Unit" + ], + "acronyms": [ + "UNH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462642.0", + "preferred": "grid.462642.0" + }, + "ISNI": { + "all": [ + "0000 0004 0502 1580" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261518" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/003sscq03.json b/v1.49/v1/003sscq03.json new file mode 100644 index 000000000..4dbdb354e --- /dev/null +++ b/v1.49/v1/003sscq03.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/003sscq03", + "name": "Physiologie et Médecine Expérimentale du Coeur et des Muscles", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Centre Hospitalier Universitaire de Montpellier", + "type": "Parent", + "id": "https://ror.org/00mthsf17" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://u1046.edu.umontpellier.fr/version-anglaise-2/" + ], + "aliases": [], + "acronyms": [ + "PHYMEDEXP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Physiology & Experimental Medicine of the Heart and Muscles", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503383.e", + "preferred": "grid.503383.e" + }, + "ISNI": { + "all": [ + "0000 0004 1778 0103" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51782591" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/003vg9w96.json b/v1.49/v1/003vg9w96.json new file mode 100644 index 000000000..0a1c34038 --- /dev/null +++ b/v1.49/v1/003vg9w96.json @@ -0,0 +1,778 @@ +{ + "id": "https://ror.org/003vg9w96", + "name": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "AgroResonance Platform", + "type": "Child", + "id": "https://ror.org/01wzg9f04" + }, + { + "label": "Agroécologie", + "type": "Child", + "id": "https://ror.org/00mkad321" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "Child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Fonctionnelle Insectes et Interactions", + "type": "Child", + "id": "https://ror.org/03d1jma17" + }, + { + "label": "Biologie des Oiseaux et Aviculture", + "type": "Child", + "id": "https://ror.org/02y3mfk39" + }, + { + "label": "Carnot Institute Qualiment", + "type": "Child", + "id": "https://ror.org/032k75171" + }, + { + "label": "Centre Bourgogne-Franche-Comté", + "type": "Child", + "id": "https://ror.org/002jby155" + }, + { + "label": "Centre Bretagne-Normandie", + "type": "Child", + "id": "https://ror.org/01v6wmk25" + }, + { + "label": "Centre Clermont-Auvergne-Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04aqtsh50" + }, + { + "label": "Centre INRAE Grand-Est - Colmar", + "type": "Child", + "id": "https://ror.org/00zg31r41" + }, + { + "label": "Centre Nouvelle Aquitaine-Bordeaux", + "type": "Child", + "id": "https://ror.org/00tebkv94" + }, + { + "label": "Centre Occitanie-Montpellier", + "type": "Child", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre Occitanie-Toulouse", + "type": "Child", + "id": "https://ror.org/02sxjwh33" + }, + { + "label": "Centre Pays de la Loire", + "type": "Child", + "id": "https://ror.org/020jynt45" + }, + { + "label": "Centre Provence-Alpes-Côte d'Azur", + "type": "Child", + "id": "https://ror.org/03qbdej90" + }, + { + "label": "Centre Régional d’Innovation et de Transferts Technologiques des Industries du Bois", + "type": "Child", + "id": "https://ror.org/016crzw98" + }, + { + "label": "Centre Val de Loire", + "type": "Child", + "id": "https://ror.org/03ntmtb29" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Centre de Corse", + "type": "Child", + "id": "https://ror.org/04hrbdg71" + }, + { + "label": "Centre de Recherche en Nutrition Humaine d'Auvergne", + "type": "Child", + "id": "https://ror.org/03rzyjb72" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "Child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre Île-de-France - Jouy-en-Josas - Antony", + "type": "Child", + "id": "https://ror.org/00gtg0p11" + }, + { + "label": "Centre Île-de-France - Versailles-Grignon", + "type": "Child", + "id": "https://ror.org/02cbapb21" + }, + { + "label": "Dynamique des Génomes et Adaptation Microbienne", + "type": "Child", + "id": "https://ror.org/01gbppd30" + }, + { + "label": "Département Alimentation Humaine", + "type": "Child", + "id": "https://ror.org/00pgyqh43" + }, + { + "label": "Département Biologie et Amélioration des Plantes", + "type": "Child", + "id": "https://ror.org/05r63mf91" + }, + { + "label": "Département Environnement et Agronomie", + "type": "Child", + "id": "https://ror.org/01e7wth34" + }, + { + "label": "Département Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/011emb038" + }, + { + "label": "Département Microbiologie et Chaîne Alimentaire", + "type": "Child", + "id": "https://ror.org/03n4vkw74" + }, + { + "label": "Département Physiologie Animale et Systèmes d’Élevage", + "type": "Child", + "id": "https://ror.org/03tpcfk14" + }, + { + "label": "Département Santé Animale", + "type": "Child", + "id": "https://ror.org/024409k12" + }, + { + "label": "Département Santé des Plantes et Environnement", + "type": "Child", + "id": "https://ror.org/0455v8x20" + }, + { + "label": "Département Sciences pour l’Action et le Développement", + "type": "Child", + "id": "https://ror.org/03vxmn596" + }, + { + "label": "Département Sciences sociales, agriculture et alimentation, espace et environnement", + "type": "Child", + "id": "https://ror.org/012221e05" + }, + { + "label": "Département Génétique Animale", + "type": "Child", + "id": "https://ror.org/029xmsm82" + }, + { + "label": "Département Écologie des Forêts, Prairies et Milieux Aquatiques", + "type": "Child", + "id": "https://ror.org/00yv4p972" + }, + { + "label": "Ecologie des Forêts de Guyane", + "type": "Child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Field Observatory in Urban Hydrology", + "type": "Child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fish Physiology and Genomics Institute", + "type": "Child", + "id": "https://ror.org/04xtaw673" + }, + { + "label": "Fractionnation of AgroResources and Environment", + "type": "Child", + "id": "https://ror.org/00136g547" + }, + { + "label": "Genomics and Biotechnology of the Fruits Laboratory", + "type": "Child", + "id": "https://ror.org/01z0xsq42" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Laboratoire d'Economie Appliquée de Grenoble", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Groupe de Recherche en Droit, Économie, Gestion", + "type": "Child", + "id": "https://ror.org/00rfccx09" + }, + { + "label": "Génétique Animale et Biologie Intégrative", + "type": "Child", + "id": "https://ror.org/03rkgeb39" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Unité de Nutrition Humaine", + "type": "Child", + "id": "https://ror.org/003qhrc72" + }, + { + "label": "Infectiologie Animale et Santé Publique", + "type": "Child", + "id": "https://ror.org/0454zjr22" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "Child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Institut Jean-Pierre Bourgin", + "type": "Child", + "id": "https://ror.org/01wqd6v19" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "Child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut de Génétique, Environnement et Protection des Plantes", + "type": "Child", + "id": "https://ror.org/038kxsm48" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institut de Mécanique et d'Ingénierie", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire CarMeN", + "type": "Child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Biologiques et des Procédés", + "type": "Child", + "id": "https://ror.org/01yypjb30" + }, + { + "label": "Laboratoire de Biotechnologie de l'Environnement", + "type": "Child", + "id": "https://ror.org/022m8c549" + }, + { + "label": "Laboratoire de Génétique Cellulaire", + "type": "Child", + "id": "https://ror.org/05k317v03" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "Child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "Child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Ecologie Microbienne Lyon", + "type": "Child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Nutrition, Obésité et Risque Thrombotique", + "type": "Child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "PhysioPathologie des Adaptations Nutritionnelles", + "type": "Child", + "id": "https://ror.org/05vb5nm66" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "Child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Soil Agro and Hydrosystems Spatialization", + "type": "Child", + "id": "https://ror.org/03k4s1p46" + }, + { + "label": "Institut Cellule Souche et Cerveau", + "type": "Child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Stress Abiotiques et Différenciation des Végétaux Cultivés", + "type": "Child", + "id": "https://ror.org/03wzth680" + }, + { + "label": "TRANSFORM", + "type": "Child", + "id": "https://ror.org/00sxj6k90" + }, + { + "label": "UMR BIOdiversity, GEnes & Communities", + "type": "Child", + "id": "https://ror.org/033ebya06" + }, + { + "label": "UMR Territoires", + "type": "Child", + "id": "https://ror.org/026tc4g97" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "Child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité Mixte de Recherche sur les Herbivores", + "type": "Child", + "id": "https://ror.org/03yvemy54" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "Child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "Unité de Recherche Pluridisciplinaire Prairies et Plantes Fourragères", + "type": "Child", + "id": "https://ror.org/04247y265" + }, + { + "label": "Zone Atelier Moselle", + "type": "Child", + "id": "https://ror.org/016vxbe23" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "Child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "Child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Unité Mixte de Recherche sur les Fromages", + "type": "Child", + "id": "https://ror.org/01xbd2h58" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Agri Obtentions (France)", + "type": "Child", + "id": "https://ror.org/04db8q179" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Centre Alpin sur les Réseaux Trophiques et Ecosystèmes Lacustre", + "type": "Child", + "id": "https://ror.org/037vdeb02" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "Child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "Child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "PAnTher - Physiopathologie Animale et bioThérapie du muscle et du système nerveux", + "type": "Child", + "id": "https://ror.org/05vex5m10" + }, + { + "label": "Biomécanique et Pathologie Locomotrice du Cheval", + "type": "Child", + "id": "https://ror.org/001rmv394" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "Child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "Child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "EMMAH - Environnement Méditerranéen et Modélisation des Agro-Hydrosystèmes", + "type": "Child", + "id": "https://ror.org/048bnmc64" + }, + { + "label": "GESTE - Gestion Territoriale de l'Eau et de l'Environnement", + "type": "Child", + "id": "https://ror.org/00pz29t13" + }, + { + "label": "Laboratoire d'Ecophysiologie Végétale, Agronomie & nutritions N.C.S", + "type": "Child", + "id": "https://ror.org/01s4cye48" + }, + { + "label": "Laboratoire Agronomie et Environnement", + "type": "Child", + "id": "https://ror.org/01dg9a450" + }, + { + "label": "Virologie", + "type": "Child", + "id": "https://ror.org/0318tzh81" + }, + { + "label": "ITAP - Technologies et Méthodes pour les Agricultures de demain", + "type": "Child", + "id": "https://ror.org/00ftatp57" + }, + { + "label": "Ecologie Comportementale et Biologie des Populations de Poissons", + "type": "Child", + "id": "https://ror.org/02brsbg31" + }, + { + "label": "Dynamiques et écologie des paysages agriforestiers", + "type": "Child", + "id": "https://ror.org/04wa4se75" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Biologie Epidémiologie et Analyse de Risque en santé animale", + "type": "Child", + "id": "https://ror.org/059h64789" + }, + { + "label": "Structures et Marchés Agricoles, Ressources et Territoires", + "type": "Child", + "id": "https://ror.org/04fa3ke77" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Centre de Recherche Épidémiologie et Statistique", + "type": "Child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "Child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "Épidémiologie des maladies Animales et zoonotiques", + "type": "Child", + "id": "https://ror.org/03e04sg66" + }, + { + "label": "Unité Mixte de Recherche sur l'Ecosystème Prairial", + "type": "Child", + "id": "https://ror.org/02c3c9255" + }, + { + "label": "Biodiversité, Agroécologie et Aménagement du Paysage", + "type": "Child", + "id": "https://ror.org/04byv8g40" + }, + { + "label": "Biologie intégrée pour la valorisation de la diversité des arbres et de la forêt", + "type": "Child", + "id": "https://ror.org/04f6qd925" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Innovations thérapeutiques et résistances", + "type": "Child", + "id": "https://ror.org/01shz5j60" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "Child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "Child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Unité de Recherche Agrosystèmes tropicaux", + "type": "Child", + "id": "https://ror.org/00vxck708" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Etude et Compréhension de la biodiversité", + "type": "Child", + "id": "https://ror.org/042w6m452" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "ABSys", + "type": "Child", + "id": "https://ror.org/00n2c0309" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "Child", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "Laboratoire EcoSystèmes et Sociétés En Montagne", + "type": "Child", + "id": "https://ror.org/01a0ez112" + }, + { + "label": "Groupe de Recherche en Management", + "type": "Child", + "id": "https://ror.org/023cs7p87" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inrae.fr/" + ], + "aliases": [], + "acronyms": [ + "INRAE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Research Institute for Agriculture, Food and Environment", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.507621.7", + "preferred": "grid.507621.7" + }, + "Wikidata": { + "all": [ + "Q70571774" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0042xzm63.json b/v1.49/v1/0042xzm63.json new file mode 100644 index 000000000..ab35d08a8 --- /dev/null +++ b/v1.49/v1/0042xzm63.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/0042xzm63", + "name": "NOAA RESTORE Science Program", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "NOAA National Ocean Service", + "type": "Parent", + "id": "https://ror.org/02k4h0334" + }, + { + "label": "NOAA National Centers for Coastal Ocean Science", + "type": "Parent", + "id": "https://ror.org/05ba43f71" + }, + { + "label": "United States Fish and Wildlife Service", + "type": "Related", + "id": "https://ror.org/04k7dar27" + }, + { + "label": "Gulf States Marine Fisheries Commission", + "type": "Related", + "id": "https://ror.org/05tqpe068" + }, + { + "label": "Gulf of Mexico Fishery Management Council", + "type": "Related", + "id": "https://ror.org/02an5tz90" + } + ], + "addresses": [ + { + "lat": 38.99067, + "lng": -77.02609, + "state": null, + "state_code": null, + "city": "Silver Spring", + "geonames_city": { + "id": 4369596, + "city": "Silver Spring", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://restoreactscienceprogram.noaa.gov" + ], + "aliases": [ + "RESTORE Science Program" + ], + "acronyms": [ + "NOAA RESTORE" + ], + "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.49/v1/0047rmf80.json b/v1.49/v1/0047rmf80.json new file mode 100644 index 000000000..7068860f4 --- /dev/null +++ b/v1.49/v1/0047rmf80.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/0047rmf80", + "name": "Centre de Recherche en Économie et Management", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Université de Caen Normandie", + "type": "Parent", + "id": "https://ror.org/051kpcy16" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crem.univ-rennes.fr" + ], + "aliases": [ + "Center for Research in Economics and Management", + "Centre de recherche en économie & management" + ], + "acronyms": [ + "CREM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463840.d", + "preferred": "grid.463840.d" + }, + "ISNI": { + "all": [ + "0000 0000 8620 5859" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262227" + ], + "preferred": "Q30262227" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/004raaa70.json b/v1.49/v1/004raaa70.json new file mode 100644 index 000000000..12c97ba82 --- /dev/null +++ b/v1.49/v1/004raaa70.json @@ -0,0 +1,182 @@ +{ + "id": "https://ror.org/004raaa70", + "name": "Université de Toulouse", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Toulouse-I-Capitole", + "type": "Child", + "id": "https://ror.org/0443n9e75" + }, + { + "label": "Université Toulouse - Jean Jaurès", + "type": "Child", + "id": "https://ror.org/04ezk3x31" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Child", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Institut National Polytechnique de Toulouse", + "type": "Child", + "id": "https://ror.org/033p9g875" + }, + { + "label": "Institut National des Sciences Appliquées de Toulouse", + "type": "Child", + "id": "https://ror.org/01h8pf755" + }, + { + "label": "Institut Superieur de l'Aeronautique et de l'Espace (ISAE-SUPAERO)", + "type": "Child", + "id": "https://ror.org/04gyj6s21" + }, + { + "label": "Centre Universitaire Jean-François-Champollion", + "type": "Child", + "id": "https://ror.org/03078mv10" + }, + { + "label": "École Nationale de l’Aviation Civile", + "type": "Child", + "id": "https://ror.org/022zdgq74" + }, + { + "label": "École Nationale d'Ingénieurs de Tarbes", + "type": "Child", + "id": "https://ror.org/01fdvj254" + }, + { + "label": "École Nationale Supérieure d'Architecture de Toulouse", + "type": "Child", + "id": "https://ror.org/019xp4858" + }, + { + "label": "École Nationale Vétérinaire de Toulouse", + "type": "Child", + "id": "https://ror.org/03m3gzv89" + }, + { + "label": "École Nationale Supérieure de Formation de l’Enseignement Agricole", + "type": "Child", + "id": "https://ror.org/03ac68784" + }, + { + "label": "Institut Catholique d'Arts et Métiers", + "type": "Child", + "id": "https://ror.org/04155vc40" + }, + { + "label": "IMT Mines Albi", + "type": "Child", + "id": "https://ror.org/00bq8vv83" + }, + { + "label": "École Supérieure de Commerce de Toulouse", + "type": "Child", + "id": "https://ror.org/0349y2q65" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "Child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "CALMIP", + "type": "Child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-toulouse.fr" + ], + "aliases": [ + "Federal University of Toulouse Midi-Pyrénées", + "Université Fédérale de Toulouse Midi-Pyrénées" + ], + "acronyms": [ + "UFTMP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_University_of_Toulouse_Midi-Pyr%C3%A9n%C3%A9es", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.508721.9", + "preferred": "grid.508721.9" + }, + "ISNI": { + "all": [ + "0000 0001 2353 1689" + ], + "preferred": "0000 0001 2353 1689" + }, + "Wikidata": { + "all": [ + "Q20669873" + ], + "preferred": "Q20669873" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/004yvsb77.json b/v1.49/v1/004yvsb77.json new file mode 100644 index 000000000..ea3d30655 --- /dev/null +++ b/v1.49/v1/004yvsb77.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/004yvsb77", + "name": "Centre National de Recherche en Génomique Humaine", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 48.63389, + "lng": 2.44417, + "state": null, + "state_code": null, + "city": "Évry-Courcouronnes", + "geonames_city": { + "id": 6454878, + "city": "Évry-Courcouronnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cea.fr/drf/ifrancoisjacob/Pages/Departements/CNRGH.aspx" + ], + "aliases": [], + "acronyms": [ + "CNRGH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Center of Human Genomics Research", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418135.a", + "preferred": "grid.418135.a" + }, + "ISNI": { + "all": [ + "0000 0004 0641 3404" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945917" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0050cbz19.json b/v1.49/v1/0050cbz19.json new file mode 100644 index 000000000..b4a4f4fd1 --- /dev/null +++ b/v1.49/v1/0050cbz19.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/0050cbz19", + "name": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.jouy.inrae.fr/mosar" + ], + "aliases": [ + "Modelisation Systemique Appliquee aux Ruminants" + ], + "acronyms": [ + "MoSAR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785610" + ], + "preferred": "Q51785610" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0050w9p71.json b/v1.49/v1/0050w9p71.json new file mode 100644 index 000000000..93ff696b6 --- /dev/null +++ b/v1.49/v1/0050w9p71.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/0050w9p71", + "name": "Cancéropôle Est", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National du Cancer", + "type": "Parent", + "id": "https://ror.org/03m8vkq32" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.canceropole-est.org/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.493837.2", + "preferred": "grid.493837.2" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0052svj16.json b/v1.49/v1/0052svj16.json new file mode 100644 index 000000000..8ad053d95 --- /dev/null +++ b/v1.49/v1/0052svj16.json @@ -0,0 +1,192 @@ +{ + "id": "https://ror.org/0052svj16", + "name": "Abbott (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1888, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Abbott (Austria)", + "type": "Child", + "id": "https://ror.org/01pa6t272" + }, + { + "label": "Abbott (Belgium)", + "type": "Child", + "id": "https://ror.org/04x0p4p48" + }, + { + "label": "Abbott (Canada)", + "type": "Child", + "id": "https://ror.org/00z21v095" + }, + { + "label": "Abbott (Chile)", + "type": "Child", + "id": "https://ror.org/01qypmk37" + }, + { + "label": "Abbott (China)", + "type": "Child", + "id": "https://ror.org/02j488654" + }, + { + "label": "Abbott (France)", + "type": "Child", + "id": "https://ror.org/05wz8pk64" + }, + { + "label": "Abbott (Germany)", + "type": "Child", + "id": "https://ror.org/02x2gk324" + }, + { + "label": "Abbott (India)", + "type": "Child", + "id": "https://ror.org/01fhw0y06" + }, + { + "label": "Abbott (Ireland)", + "type": "Child", + "id": "https://ror.org/02bfj0n71" + }, + { + "label": "Abbott (Japan)", + "type": "Child", + "id": "https://ror.org/04v748538" + }, + { + "label": "Abbott (Netherlands)", + "type": "Child", + "id": "https://ror.org/0219f2672" + }, + { + "label": "Abbott (Singapore)", + "type": "Child", + "id": "https://ror.org/00rhats79" + }, + { + "label": "Abbott (South Korea)", + "type": "Child", + "id": "https://ror.org/053evkn98" + }, + { + "label": "Abbott (Spain)", + "type": "Child", + "id": "https://ror.org/01w8r0j67" + }, + { + "label": "Abbott (Sweden)", + "type": "Child", + "id": "https://ror.org/04qh5fy32" + }, + { + "label": "Abbott (Switzerland)", + "type": "Child", + "id": "https://ror.org/03rn2e120" + }, + { + "label": "Abbott (United Kingdom)", + "type": "Child", + "id": "https://ror.org/03wnay029" + }, + { + "label": "Abbott Vascular (United States)", + "type": "Child", + "id": "https://ror.org/05d67dc31" + }, + { + "label": "Abbott Nutrition (United States)", + "type": "Child", + "id": "https://ror.org/00p99t114" + }, + { + "label": "Abbott Diabetes Care (United States)", + "type": "Child", + "id": "https://ror.org/03vb88585" + } + ], + "addresses": [ + { + "lat": 41.85003, + "lng": -87.65005, + "state": null, + "state_code": null, + "city": "Chicago", + "geonames_city": { + "id": 4887398, + "city": "Chicago", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.abbott.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Abbott_Laboratories", + "labels": [ + { + "label": "Laboratoires Abbott", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.417574.4", + "preferred": "grid.417574.4" + }, + "ISNI": { + "all": [ + "0000 0004 0366 7505" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q306764" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/005fjj927.json b/v1.49/v1/005fjj927.json new file mode 100644 index 000000000..8665ae3f9 --- /dev/null +++ b/v1.49/v1/005fjj927.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/005fjj927", + "name": "Ecosystèmes, Biodiversité, Evolution", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "Parent", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ecobio.univ-rennes.fr" + ], + "aliases": [], + "acronyms": [ + "ECOBIO", + "UMR ECOBIO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464156.4", + "preferred": "grid.464156.4" + }, + "ISNI": { + "all": [ + "0000 0004 0609 866X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262508" + ], + "preferred": "Q30262508" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/005tvz367.json b/v1.49/v1/005tvz367.json new file mode 100644 index 000000000..e8202b25b --- /dev/null +++ b/v1.49/v1/005tvz367.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/005tvz367", + "name": "Société de Réanimation de Langue Française", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.srlf.org/english/index.phtml" + ], + "aliases": [], + "acronyms": [ + "FICS", + "SRLF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French Intensive Care Society", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.458512.f", + "preferred": "grid.458512.f" + }, + "ISNI": { + "all": [ + "0000 0000 9519 3255" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/005wz0e45.json b/v1.49/v1/005wz0e45.json new file mode 100644 index 000000000..4ec5b2334 --- /dev/null +++ b/v1.49/v1/005wz0e45.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/005wz0e45", + "name": "Colorado Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 39.61721, + "lng": -104.95081, + "state": null, + "state_code": null, + "city": "Greenwood Village", + "geonames_city": { + "id": 5423908, + "city": "Greenwood Village", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.coloradohumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446509.a", + "preferred": "grid.446509.a" + }, + "ISNI": { + "all": [ + "0000 0004 5904 9159" + ], + "preferred": "0000 0004 5904 9159" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/005yfhm28.json b/v1.49/v1/005yfhm28.json new file mode 100644 index 000000000..00f3937ec --- /dev/null +++ b/v1.49/v1/005yfhm28.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/005yfhm28", + "name": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Aix-Marseille Université", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 43.68504, + "lng": 5.70775, + "state": null, + "state_code": null, + "city": "Saint-Paul-lès-Durance", + "geonames_city": { + "id": 2977644, + "city": "Saint-Paul-lès-Durance", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cite-des-energies.fr/biam/" + ], + "aliases": [], + "acronyms": [ + "BIAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Bioscience and Biotechnology Institute of Aix-Marseille", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52607033" + ], + "preferred": "Q52607033" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0068n3903.json b/v1.49/v1/0068n3903.json new file mode 100644 index 000000000..eec0cf3fe --- /dev/null +++ b/v1.49/v1/0068n3903.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/0068n3903", + "name": "Guangzhou Xinhua University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.xhxyedu.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E5%B9%BF%E5%B7%9E%E6%96%B0%E5%8D%8E%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "广州新华学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q32166318" + ], + "preferred": "Q32166318" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/006kxhp52.json b/v1.49/v1/006kxhp52.json new file mode 100644 index 000000000..78e51f91d --- /dev/null +++ b/v1.49/v1/006kxhp52.json @@ -0,0 +1,189 @@ +{ + "id": "https://ror.org/006kxhp52", + "name": "United Nations", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Food and Agriculture Organization of the United Nations", + "type": "Child", + "id": "https://ror.org/00pe0tf51" + }, + { + "label": "Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services", + "type": "Child", + "id": "https://ror.org/01jn16g31" + }, + { + "label": "Joint United Nations Programme on HIV/AIDS", + "type": "Child", + "id": "https://ror.org/0109p9r67" + }, + { + "label": "United Nations Children's Fund", + "type": "Child", + "id": "https://ror.org/02dg0pv02" + }, + { + "label": "United Nations Department of Economic and Social Affairs", + "type": "Child", + "id": "https://ror.org/050bms902" + }, + { + "label": "United Nations Department of Peacekeeping Operations", + "type": "Child", + "id": "https://ror.org/00bs41j64" + }, + { + "label": "United Nations Economic and Social Council", + "type": "Child", + "id": "https://ror.org/01eb8ek77" + }, + { + "label": "United Nations Environment Programme", + "type": "Child", + "id": "https://ror.org/015z29x25" + }, + { + "label": "United Nations Human Settlements Programme", + "type": "Child", + "id": "https://ror.org/020qt9g11" + }, + { + "label": "United Nations Office for Project Services", + "type": "Child", + "id": "https://ror.org/00rb4xa96" + }, + { + "label": "United Nations Office for the Coordination of Humanitarian Affairs", + "type": "Child", + "id": "https://ror.org/00aahzn97" + }, + { + "label": "United Nations Population Fund", + "type": "Child", + "id": "https://ror.org/058qtt435" + }, + { + "label": "United Nations Relief and Works Agency for Palestine Refugees in the Near East", + "type": "Child", + "id": "https://ror.org/04rr9xy49" + }, + { + "label": "United Nations Research Institute for Social Development", + "type": "Child", + "id": "https://ror.org/00rs5qv51" + }, + { + "label": "United Nations System Staff College", + "type": "Child", + "id": "https://ror.org/03d4czf80" + }, + { + "label": "University for Peace", + "type": "Child", + "id": "https://ror.org/00cxrw595" + }, + { + "label": "United Nations University", + "type": "Related", + "id": "https://ror.org/01cdrde68" + }, + { + "label": "United Nations Office for Outer Space Affairs", + "type": "Child", + "id": "https://ror.org/04qsamf92" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.un.org/en/index.html" + ], + "aliases": [], + "acronyms": [ + "ONU", + "UN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_Nations", + "labels": [ + { + "label": "Organisation des Nations Unies", + "iso639": "fr" + }, + { + "label": "Organización de las Naciones Unidas", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.452939.0", + "preferred": "grid.452939.0" + }, + "ISNI": { + "all": [ + "0000 0004 0441 2096" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1065" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/006vqpx82.json b/v1.49/v1/006vqpx82.json new file mode 100644 index 000000000..985c6709c --- /dev/null +++ b/v1.49/v1/006vqpx82.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/006vqpx82", + "name": "Laboratoire de Virologie - Pathogenèse virale", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/006z7v557.json b/v1.49/v1/006z7v557.json new file mode 100644 index 000000000..4d0bbcf66 --- /dev/null +++ b/v1.49/v1/006z7v557.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/006z7v557", + "name": "Laboratoire d'Automatique, de Mécanique et d'Informatique Industrielles et Humaines", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "Université Polytechnique Hauts-de-France", + "type": "Parent", + "id": "https://ror.org/02ezch769" + } + ], + "addresses": [ + { + "lat": 50.35909, + "lng": 3.52506, + "state": null, + "state_code": null, + "city": "Valenciennes", + "geonames_city": { + "id": 2971041, + "city": "Valenciennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-valenciennes.fr/LAMIH/en" + ], + "aliases": [], + "acronyms": [ + "LAMIH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Industrial and Human Automation Control, Mechanical Engineering and Computer Science", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.473800.8", + "preferred": "grid.473800.8" + }, + "ISNI": { + "all": [ + "0000 0001 2201 3679" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00780az30.json b/v1.49/v1/00780az30.json new file mode 100644 index 000000000..cdd049369 --- /dev/null +++ b/v1.49/v1/00780az30.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00780az30", + "name": "Mathématiques et Informatique Appliquées", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.agroparistech.fr/recherche/unites-recherche/mathematiques-informatique-appliquees-paris-mia-paris" + ], + "aliases": [ + "MIA Paris-Saclay", + "MIA-Paris", + "Mathématiques et Informatique Appliquées - Paris-Saclay" + ], + "acronyms": [ + "MIA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782612" + ], + "preferred": "Q51782612" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/007jd4588.json b/v1.49/v1/007jd4588.json new file mode 100644 index 000000000..591d37e74 --- /dev/null +++ b/v1.49/v1/007jd4588.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/007jd4588", + "name": "Joint Programming Initiative Urban Europe", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 48.2082, + "lng": 16.37169, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761367, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://jpi-urbaneurope.eu" + ], + "aliases": [ + "JPI Urban Europe", + "Joint Programming Initiative - Urban Europe" + ], + "acronyms": [ + "JPI UE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7864 4332" + ], + "preferred": "0000 0004 7864 4332" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/007y9b339.json b/v1.49/v1/007y9b339.json new file mode 100644 index 000000000..6d3dd2a3a --- /dev/null +++ b/v1.49/v1/007y9b339.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/007y9b339", + "name": "Centre de Recherche en Design", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "École Nationale Supérieure de Création Industrielle", + "type": "Parent", + "id": "https://ror.org/056atnc19" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crd.ens-paris-saclay.ensci.com" + ], + "aliases": [], + "acronyms": [ + "CRD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109584042" + ], + "preferred": "Q109584042" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0086epd30.json b/v1.49/v1/0086epd30.json new file mode 100644 index 000000000..0a74b8b8a --- /dev/null +++ b/v1.49/v1/0086epd30.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/0086epd30", + "name": "Médicaments et Molécules pour Agir sur les Systèmes Vivants", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Parent", + "id": "https://ror.org/05k9skc85" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.deprezlab.fr" + ], + "aliases": [], + "acronyms": [ + "M2SV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Drugs and Molecules for Living Systems", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/0087n5v55.json b/v1.49/v1/0087n5v55.json new file mode 100644 index 000000000..00ed5cda8 --- /dev/null +++ b/v1.49/v1/0087n5v55.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0087n5v55", + "name": "Centre d’histoire culturelle des sociétés contemporaines", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.77334, + "lng": 2.07393, + "state": null, + "state_code": null, + "city": "Guyancourt", + "geonames_city": { + "id": 3014143, + "city": "Guyancourt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chcsc.uvsq.fr" + ], + "aliases": [ + "Centre for Cultural History of Contemporary Societies" + ], + "acronyms": [ + "CHCSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 1941 7015" + ], + "preferred": "0000 0001 1941 7015" + }, + "Wikidata": { + "all": [ + "Q47008419" + ], + "preferred": "Q47008419" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/008axfh28.json b/v1.49/v1/008axfh28.json new file mode 100644 index 000000000..246c470b6 --- /dev/null +++ b/v1.49/v1/008axfh28.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/008axfh28", + "name": "École Nationale Supérieure d'Architecture Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.montpellier.archi.fr/" + ], + "aliases": [], + "acronyms": [ + "ENSAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National School of Architecture of Montpellier", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.466326.3", + "preferred": "grid.466326.3" + }, + "ISNI": { + "all": [ + "0000 0001 2114 8395" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/008hxwy89.json b/v1.49/v1/008hxwy89.json new file mode 100644 index 000000000..4e9bd0b1f --- /dev/null +++ b/v1.49/v1/008hxwy89.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/008hxwy89", + "name": "Institut de recherches arctiques Jean Malaurie", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.77334, + "lng": 2.07393, + "state": null, + "state_code": null, + "city": "Guyancourt", + "geonames_city": { + "id": 3014143, + "city": "Guyancourt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uvsq.fr/institut-de-recherches-arctique-jean-malaurie-iram-malaurie-institute-of-arctic-research-monaco-uvsq" + ], + "aliases": [ + "Jean Malaurie Institute" + ], + "acronyms": [ + "IRAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Malaurie Institute of Arctic Research", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/008kngs41.json b/v1.49/v1/008kngs41.json new file mode 100644 index 000000000..6afa3a978 --- /dev/null +++ b/v1.49/v1/008kngs41.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/008kngs41", + "name": "St. Xavier's University Kolkata", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.56263, + "lng": 88.36304, + "state": null, + "state_code": null, + "city": "Kolkata", + "geonames_city": { + "id": 1275004, + "city": "Kolkata", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sxuk.edu.in" + ], + "aliases": [ + "St. Xaviers University, Kolkata" + ], + "acronyms": [ + "SXUK" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/008qs6838.json b/v1.49/v1/008qs6838.json new file mode 100644 index 000000000..5abc98bc8 --- /dev/null +++ b/v1.49/v1/008qs6838.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/008qs6838", + "name": "Mécanismes moléculaires dans les démences neurodégénératives", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mmdn.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "MMDN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Comparative Functional Genomics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780329" + ], + "preferred": "Q51780329" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/008rcjb67.json b/v1.49/v1/008rcjb67.json new file mode 100644 index 000000000..1255f38b0 --- /dev/null +++ b/v1.49/v1/008rcjb67.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/008rcjb67", + "name": "Régie des transports métropolitains", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rtm.fr" + ], + "aliases": [ + "Transport Authority of Marseille" + ], + "acronyms": [ + "RTM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.437415.0", + "preferred": "grid.437415.0" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/008rywf59.json b/v1.49/v1/008rywf59.json new file mode 100644 index 000000000..ab132a88f --- /dev/null +++ b/v1.49/v1/008rywf59.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/008rywf59", + "name": "Centre d'Écologie Fonctionnelle et Évolutive", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "Parent", + "id": "https://ror.org/00qhdy563" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cefe.cnrs.fr/fr/" + ], + "aliases": [], + "acronyms": [ + "CEFE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.433534.6", + "preferred": "grid.433534.6" + }, + "ISNI": { + "all": [ + "0000 0001 2169 1275" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30255991" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/008stv805.json b/v1.49/v1/008stv805.json new file mode 100644 index 000000000..7ad2a2ba6 --- /dev/null +++ b/v1.49/v1/008stv805.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/008stv805", + "name": "University of the South Pacific", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of the South Pacific", + "type": "Child", + "id": "https://ror.org/03be9n013" + }, + { + "label": "University of the South Pacific", + "type": "Child", + "id": "https://ror.org/001vq2a15" + } + ], + "addresses": [ + { + "lat": -18.13683, + "lng": 178.42531, + "state": null, + "state_code": null, + "city": "Suva", + "geonames_city": { + "id": 2198148, + "city": "Suva", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usp.ac.fj/" + ], + "aliases": [], + "acronyms": [ + "USP" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_the_South_Pacific", + "labels": [], + "country": { + "country_name": "Fiji", + "country_code": "FJ" + }, + "external_ids": { + "GRID": { + "all": "grid.33998.38", + "preferred": "grid.33998.38" + }, + "ISNI": { + "all": [ + "0000 0001 2171 4027" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1062121" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/009445d52.json b/v1.49/v1/009445d52.json new file mode 100644 index 000000000..6cbb7b9f8 --- /dev/null +++ b/v1.49/v1/009445d52.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/009445d52", + "name": "Michigan Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 42.73253, + "lng": -84.55553, + "state": null, + "state_code": null, + "city": "Lansing", + "geonames_city": { + "id": 4998830, + "city": "Lansing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.michiganhumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446952.8", + "preferred": "grid.446952.8" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0095dt357.json b/v1.49/v1/0095dt357.json new file mode 100644 index 000000000..e15bd1ee9 --- /dev/null +++ b/v1.49/v1/0095dt357.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/0095dt357", + "name": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École Nationale Supérieure des Mines de Paris", + "type": "Parent", + "id": "https://ror.org/04y8cs423" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://curie.fr/unite/u900" + ], + "aliases": [ + "Biologie des systèmes, épidémiologie et biostatistiques cliniques du cancer" + ], + "acronyms": [ + "CBIO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784614" + ], + "preferred": "Q51784614" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/009jmsj64.json b/v1.49/v1/009jmsj64.json new file mode 100644 index 000000000..5ee9fb6b1 --- /dev/null +++ b/v1.49/v1/009jmsj64.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/009jmsj64", + "name": "Syndicat des Sélectionneurs Avicoles et Aquacoles Français", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.54499, + "lng": 0.74623, + "state": null, + "state_code": null, + "city": "Nouzilly", + "geonames_city": { + "id": 2989945, + "city": "Nouzilly", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sysaaf.fr" + ], + "aliases": [ + "French Poultry and Aquaculture Breeders Association" + ], + "acronyms": [ + "SNAA", + "SYSAAF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.438338.7", + "preferred": "grid.438338.7" + }, + "ISNI": { + "all": [ + "0000 0000 8727 184X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/009ps2x93.json b/v1.49/v1/009ps2x93.json new file mode 100644 index 000000000..8fdaee75b --- /dev/null +++ b/v1.49/v1/009ps2x93.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/009ps2x93", + "name": "Département des Systèmes Basses Températures", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.d-sbt.fr" + ], + "aliases": [ + "Low Temperature Systems Department" + ], + "acronyms": [ + "DSBT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/009twqt47.json b/v1.49/v1/009twqt47.json new file mode 100644 index 000000000..72690d55a --- /dev/null +++ b/v1.49/v1/009twqt47.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/009twqt47", + "name": "Official Development Assistance", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gov.uk/government/collections/official-development-assistance-oda--2" + ], + "aliases": [], + "acronyms": [ + "ODA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.483866.7", + "preferred": "grid.483866.7" + }, + "Wikidata": { + "all": [ + "Q33121724" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00adwkx90.json b/v1.49/v1/00adwkx90.json new file mode 100644 index 000000000..af0573ab0 --- /dev/null +++ b/v1.49/v1/00adwkx90.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/00adwkx90", + "name": "Institut des Sciences Chimiques de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences Appliquées de Rennes", + "type": "Parent", + "id": "https://ror.org/04xaa4j22" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "École Nationale Supérieure de Chimie de Rennes", + "type": "Parent", + "id": "https://ror.org/01h0ffh48" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iscr.univ-rennes.fr" + ], + "aliases": [], + "acronyms": [ + "ISCR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Rennes Institute of Chemical Sciences", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461889.a", + "preferred": "grid.461889.a" + }, + "ISNI": { + "all": [ + "0000 0004 0385 6584" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261343" + ], + "preferred": "Q30261343" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00ajjta07.json b/v1.49/v1/00ajjta07.json new file mode 100644 index 000000000..0172bb809 --- /dev/null +++ b/v1.49/v1/00ajjta07.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/00ajjta07", + "name": "Institut des Sciences des Plantes de Paris Saclay", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Parent", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ips2.u-psud.fr" + ], + "aliases": [ + "Institute of Plant Sciences of Paris Saclay", + "Paris Saclay Institute of Plant Sciences" + ], + "acronyms": [ + "IPS2" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503243.3", + "preferred": "grid.503243.3" + }, + "Wikidata": { + "all": [ + "Q51784779" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00amdr662.json b/v1.49/v1/00amdr662.json new file mode 100644 index 000000000..88700b80a --- /dev/null +++ b/v1.49/v1/00amdr662.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00amdr662", + "name": "Virgin Islands Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 18.34537, + "lng": -64.92755, + "state": null, + "state_code": null, + "city": "Saint Thomas Island", + "geonames_city": { + "id": 7267904, + "city": "Saint Thomas Island", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.vihumanities.org/" + ], + "aliases": [], + "acronyms": [ + "VIHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "U.S. Virgin Islands", + "country_code": "VI" + }, + "external_ids": { + "GRID": { + "all": "grid.447587.d", + "preferred": "grid.447587.d" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00aqyg778.json b/v1.49/v1/00aqyg778.json new file mode 100644 index 000000000..77ef6bde6 --- /dev/null +++ b/v1.49/v1/00aqyg778.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00aqyg778", + "name": "St. Teresa's College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.15181, + "lng": 0.47362, + "state": null, + "state_code": null, + "city": "Hohoe", + "geonames_city": { + "id": 2300372, + "city": "Hohoe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://teresco.edu.gh" + ], + "aliases": [ + "Saint Teresa's College of Education" + ], + "acronyms": [ + "TERESCO", + "WOTRACO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Teresa%27s_College_of_Education", + "labels": [ + { + "label": "Kwalejin Ilimi ta St. Teresa", + "iso639": "ha" + } + ], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996988" + ], + "preferred": "Q46996988" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00aycez97.json b/v1.49/v1/00aycez97.json new file mode 100644 index 000000000..262f61d70 --- /dev/null +++ b/v1.49/v1/00aycez97.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/00aycez97", + "name": "Laboratoire HydroSciences Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.hydrosciences.org/" + ], + "aliases": [ + "HydroSciences Montpellier" + ], + "acronyms": [ + "HSM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory HydroSciences Montpellier", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463853.f", + "preferred": "grid.463853.f" + }, + "ISNI": { + "all": [ + "0000 0004 0384 4663" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00az7j379.json b/v1.49/v1/00az7j379.json new file mode 100644 index 000000000..1e21ba652 --- /dev/null +++ b/v1.49/v1/00az7j379.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00az7j379", + "name": "Le Laboratoire des Maladies Neurodégénératives", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 48.79325, + "lng": 2.29275, + "state": null, + "state_code": null, + "city": "Fontenay-aux-Roses", + "geonames_city": { + "id": 3017924, + "city": "Fontenay-aux-Roses", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://jacob.cea.fr/drf/ifrancoisjacob/Pages/Departements/MIRCen/UMR9199.aspx" + ], + "aliases": [ + "Laboratoire de maladies neurodégénératives : mécanismes, thérapies, imagerie" + ], + "acronyms": [ + "LMN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782157" + ], + "preferred": "Q51782157" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00b25kb57.json b/v1.49/v1/00b25kb57.json new file mode 100644 index 000000000..b225ba435 --- /dev/null +++ b/v1.49/v1/00b25kb57.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00b25kb57", + "name": "EDP Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1920, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.68167, + "lng": 2.16944, + "state": null, + "state_code": null, + "city": "Les Ulis", + "geonames_city": { + "id": 6615536, + "city": "Les Ulis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://publications.edpsciences.org" + ], + "aliases": [ + "Édition Diffusion Presse Sciences" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/EDP_Sciences", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.473214.7", + "preferred": "grid.473214.7" + }, + "ISNI": { + "all": [ + "0000 0001 1135 5331" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00b4q1853.json b/v1.49/v1/00b4q1853.json new file mode 100644 index 000000000..7e21d77be --- /dev/null +++ b/v1.49/v1/00b4q1853.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00b4q1853", + "name": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Franco-Allemand de Recherches de Saint-Louis", + "type": "Parent", + "id": "https://ror.org/05bea9918" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 47.59206, + "lng": 7.55923, + "state": null, + "state_code": null, + "city": "Saint-Louis", + "geonames_city": { + "id": 2978742, + "city": "Saint-Louis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ns3e.prod.lamp.cnrs.fr/" + ], + "aliases": [], + "acronyms": [ + "NS3E" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464144.7", + "preferred": "grid.464144.7" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00b7rd089.json b/v1.49/v1/00b7rd089.json new file mode 100644 index 000000000..ca1ebe4ba --- /dev/null +++ b/v1.49/v1/00b7rd089.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00b7rd089", + "name": "Institute of Management Technology, Dubai", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 25.07725, + "lng": 55.30927, + "state": null, + "state_code": null, + "city": "Dubai", + "geonames_city": { + "id": 292223, + "city": "Dubai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.imt.ac.ae" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_of_Management_Technology%2C_Dubai", + "labels": [], + "country": { + "country_name": "United Arab Emirates", + "country_code": "AE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1763 6988" + ], + "preferred": "0000 0004 1763 6988" + }, + "Wikidata": { + "all": [ + "Q6040520" + ], + "preferred": "Q6040520" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00b80ez59.json b/v1.49/v1/00b80ez59.json new file mode 100644 index 000000000..f9a31489b --- /dev/null +++ b/v1.49/v1/00b80ez59.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/00b80ez59", + "name": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "Parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umr-ecosols.fr/en/" + ], + "aliases": [ + "Eco & Sols" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Functional Ecology and Biogeochemistry of Soils and Agrosystems", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503166.7", + "preferred": "grid.503166.7" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00b8mh310.json b/v1.49/v1/00b8mh310.json new file mode 100644 index 000000000..98c101969 --- /dev/null +++ b/v1.49/v1/00b8mh310.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00b8mh310", + "name": "Institute for Regenerative Medicine & Biotherapy", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Centre Hospitalier Universitaire de Montpellier", + "type": "Parent", + "id": "https://ror.org/00mthsf17" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.irmb-inserm.fr/" + ], + "aliases": [], + "acronyms": [ + "IRMB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462469.b", + "preferred": "grid.462469.b" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00b9dvn87.json b/v1.49/v1/00b9dvn87.json new file mode 100644 index 000000000..606b17388 --- /dev/null +++ b/v1.49/v1/00b9dvn87.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00b9dvn87", + "name": "Gruppo Nazionale per le Strutture Algebriche, Geometriche e le loro Applicazioni", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Istituto Nazionale di Alta Matematica Francesco Severi", + "type": "Parent", + "id": "https://ror.org/01vx64p53" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.altamatematica.it/gnsaga/" + ], + "aliases": [], + "acronyms": [ + "GNSAGA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Group for Algebraic, Geometric Structures and their Applications", + "iso639": "en" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00bf6bf92.json b/v1.49/v1/00bf6bf92.json new file mode 100644 index 000000000..bdf0fc326 --- /dev/null +++ b/v1.49/v1/00bf6bf92.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00bf6bf92", + "name": "Oncogenesis Stress Signaling", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Eugène Marquis", + "type": "Parent", + "id": "https://ror.org/01yezas83" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://oss-clcc-rennes.com/" + ], + "aliases": [], + "acronyms": [ + "OSS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.497647.f", + "preferred": "grid.497647.f" + }, + "Wikidata": { + "all": [ + "Q51784763" + ], + "preferred": "Q51784763" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00bf7t669.json b/v1.49/v1/00bf7t669.json new file mode 100644 index 000000000..283eade00 --- /dev/null +++ b/v1.49/v1/00bf7t669.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00bf7t669", + "name": "Ushahidi, Inc. (Kenya)", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -1.28333, + "lng": 36.81667, + "state": null, + "state_code": null, + "city": "Nairobi", + "geonames_city": { + "id": 184745, + "city": "Nairobi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ushahidi.com" + ], + "aliases": [ + "Ushahidi", + "Ushahidi Network" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ushahidi", + "labels": [ + { + "label": "Ushahidi, Inc.", + "iso639": null + } + ], + "country": { + "country_name": "Kenya", + "country_code": "KE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q2357100" + ], + "preferred": "Q2357100" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00bwykg15.json b/v1.49/v1/00bwykg15.json new file mode 100644 index 000000000..5ea706448 --- /dev/null +++ b/v1.49/v1/00bwykg15.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00bwykg15", + "name": "Centre d'Etude des Arts Contemporains", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ceac.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "CEAC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2115 8067" + ], + "preferred": "0000 0001 2115 8067" + }, + "Wikidata": { + "all": [ + "Q51781569" + ], + "preferred": "Q51781569" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00byxdz40.json b/v1.49/v1/00byxdz40.json new file mode 100644 index 000000000..7f9820f4a --- /dev/null +++ b/v1.49/v1/00byxdz40.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00byxdz40", + "name": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Laboratoire Biosciences et bioingénierie pour la Santé", + "type": "Child", + "id": "https://ror.org/039j4x695" + }, + { + "label": "Département des Systèmes Basses Températures", + "type": "Child", + "id": "https://ror.org/009ps2x93" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cea.fr/drf/IRIG/Pages/Presentation.aspx" + ], + "aliases": [], + "acronyms": [ + "IRIG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.512394.8", + "preferred": "grid.512394.8" + }, + "ISNI": { + "all": [ + "0000 0004 7665 414X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00cb23x68.json b/v1.49/v1/00cb23x68.json new file mode 100644 index 000000000..57985d789 --- /dev/null +++ b/v1.49/v1/00cb23x68.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/00cb23x68", + "name": "Kwame Nkrumah University of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "All Nations University", + "type": "Child", + "id": "https://ror.org/00cdwva22" + }, + { + "label": "University College of Management Studies", + "type": "Child", + "id": "https://ror.org/01jthvx19" + }, + { + "label": "Accra Institute of Technology", + "type": "Related", + "id": "https://ror.org/03ajsbp04" + }, + { + "label": "Komfo Anokye Teaching Hospital", + "type": "Related", + "id": "https://ror.org/05ks08368" + }, + { + "label": "St. Joseph's College of Education", + "type": "Related", + "id": "https://ror.org/05ba8sq03" + }, + { + "label": "Akrokerri College of Education", + "type": "Related", + "id": "https://ror.org/00w49ww42" + }, + { + "label": "Wesley College of Education", + "type": "Related", + "id": "https://ror.org/02yv7k107" + } + ], + "addresses": [ + { + "lat": 6.68848, + "lng": -1.62443, + "state": null, + "state_code": null, + "city": "Kumasi", + "geonames_city": { + "id": 2298890, + "city": "Kumasi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.knust.edu.gh/" + ], + "aliases": [], + "acronyms": [ + "KNUST" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Kwame_Nkrumah_University_of_Science_and_Technology", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.9829.a", + "preferred": "grid.9829.a" + }, + "ISNI": { + "all": [ + "0000 0001 0946 6120" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1654025" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00cc69h98.json b/v1.49/v1/00cc69h98.json new file mode 100644 index 000000000..673840320 --- /dev/null +++ b/v1.49/v1/00cc69h98.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00cc69h98", + "name": "Pennsylvania Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 39.95238, + "lng": -75.16362, + "state": null, + "state_code": null, + "city": "Philadelphia", + "geonames_city": { + "id": 4560349, + "city": "Philadelphia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pahumanities.org/" + ], + "aliases": [], + "acronyms": [ + "PHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447586.c", + "preferred": "grid.447586.c" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00ccaam24.json b/v1.49/v1/00ccaam24.json new file mode 100644 index 000000000..eba968571 --- /dev/null +++ b/v1.49/v1/00ccaam24.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00ccaam24", + "name": "Centre Interuniversitaire de Recherche en Education de Lille", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cirel.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "CIREL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780021" + ], + "preferred": "Q51780021" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00cesps27.json b/v1.49/v1/00cesps27.json new file mode 100644 index 000000000..c5034659d --- /dev/null +++ b/v1.49/v1/00cesps27.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/00cesps27", + "name": "Observatoire des Sciences de l'Univers OREME", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://oreme.org" + ], + "aliases": [ + "Observatoire de Recherche Montpelliérain de l'Environnement", + "Observatoire de Recherche Méditerranéen de l'Environnement" + ], + "acronyms": [ + "OREME" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785020" + ], + "preferred": "Q51785020" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00cs28a13.json b/v1.49/v1/00cs28a13.json new file mode 100644 index 000000000..d02bee5cc --- /dev/null +++ b/v1.49/v1/00cs28a13.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00cs28a13", + "name": "KISTI National Supercomputing Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Korea Institute of Science & Technology Information", + "type": "Parent", + "id": "https://ror.org/01k4yrm29" + } + ], + "addresses": [ + { + "lat": 36.34913, + "lng": 127.38493, + "state": null, + "state_code": null, + "city": "Daejeon", + "geonames_city": { + "id": 1835235, + "city": "Daejeon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "KISTI Supercomputing Center", + "Korea Institute of Science and Technology Information National Supercomputing Center", + "Korea Institute of Science and Technology Information Supercomputing Center" + ], + "acronyms": [ + "KSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "국가슈퍼컴퓨팅센터는", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00cs79398.json b/v1.49/v1/00cs79398.json new file mode 100644 index 000000000..0d1221a6a --- /dev/null +++ b/v1.49/v1/00cs79398.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/00cs79398", + "name": "Japan Cardiovascular Research Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 34.69379, + "lng": 135.50107, + "state": null, + "state_code": null, + "city": "Osaka", + "geonames_city": { + "id": 1853909, + "city": "Osaka", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.jcvrf.jp" + ], + "aliases": [], + "acronyms": [ + "JCRF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "公益財団法人 循環器病研究振興財団", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00d0nc645.json b/v1.49/v1/00d0nc645.json new file mode 100644 index 000000000..2822cef43 --- /dev/null +++ b/v1.49/v1/00d0nc645.json @@ -0,0 +1,195 @@ +{ + "id": "https://ror.org/00d0nc645", + "name": "Microsoft (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "LinkedIn (United States)", + "type": "Child", + "id": "https://ror.org/02fyxhe35" + }, + { + "label": "Microsoft (Belgium)", + "type": "Child", + "id": "https://ror.org/05168yk81" + }, + { + "label": "Microsoft (Brazil)", + "type": "Child", + "id": "https://ror.org/00hc2mf91" + }, + { + "label": "Microsoft (Canada)", + "type": "Child", + "id": "https://ror.org/04xhxg104" + }, + { + "label": "Microsoft (Denmark)", + "type": "Child", + "id": "https://ror.org/015drfm81" + }, + { + "label": "Microsoft (Finland)", + "type": "Child", + "id": "https://ror.org/01nehjf29" + }, + { + "label": "Microsoft (France)", + "type": "Child", + "id": "https://ror.org/0521n7n83" + }, + { + "label": "Microsoft (Germany)", + "type": "Child", + "id": "https://ror.org/001dd4s60" + }, + { + "label": "Microsoft (India)", + "type": "Child", + "id": "https://ror.org/04ww0w091" + }, + { + "label": "Microsoft (Ireland)", + "type": "Child", + "id": "https://ror.org/017fqk185" + }, + { + "label": "Microsoft (Israel)", + "type": "Child", + "id": "https://ror.org/03819cc96" + }, + { + "label": "Microsoft (Netherlands)", + "type": "Child", + "id": "https://ror.org/01x21tj82" + }, + { + "label": "Microsoft (Norway)", + "type": "Child", + "id": "https://ror.org/03jtz4s80" + }, + { + "label": "Microsoft (Portugal)", + "type": "Child", + "id": "https://ror.org/00eqfbw40" + }, + { + "label": "Microsoft (Switzerland)", + "type": "Child", + "id": "https://ror.org/03zryq964" + }, + { + "label": "Microsoft (United Kingdom)", + "type": "Child", + "id": "https://ror.org/01rw27z95" + }, + { + "label": "Microsoft Research (India)", + "type": "Child", + "id": "https://ror.org/02w7f3w92" + }, + { + "label": "Microsoft Research (United Kingdom)", + "type": "Child", + "id": "https://ror.org/05k87vq12" + }, + { + "label": "Microsoft Research Asia (China)", + "type": "Child", + "id": "https://ror.org/0300m5276" + }, + { + "label": "Ninja Theory (United Kingdom)", + "type": "Child", + "id": "https://ror.org/04xrsn650" + }, + { + "label": "Microsoft Research New England (United States)", + "type": "Child", + "id": "https://ror.org/010wkqn50" + } + ], + "addresses": [ + { + "lat": 47.67399, + "lng": -122.12151, + "state": null, + "state_code": null, + "city": "Redmond", + "geonames_city": { + "id": 5808079, + "city": "Redmond", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.microsoft.com/en-us" + ], + "aliases": [ + "Microsoft Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Microsoft", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.419815.0", + "preferred": "grid.419815.0" + }, + "ISNI": { + "all": [ + "0000 0001 2181 3404" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2283", + "Q47462228" + ], + "preferred": "Q2283" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00d0rke27.json b/v1.49/v1/00d0rke27.json new file mode 100644 index 000000000..546ec3d33 --- /dev/null +++ b/v1.49/v1/00d0rke27.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/00d0rke27", + "name": "Institut d’Optique Graduate School", + "email_address": null, + "ip_addresses": [], + "established": 1917, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire Charles Fabry", + "type": "Child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Laboratoire Hubert Curien", + "type": "Child", + "id": "https://ror.org/0028p8r67" + }, + { + "label": "Laboratoire Photonique, Numérique et Nanosciences", + "type": "Child", + "id": "https://ror.org/03vdg7e33" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.institutoptique.fr" + ], + "aliases": [ + "École Supérieure d'Optique, SupOptique" + ], + "acronyms": [ + "IOGS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_sup%C3%A9rieure_d%27optique", + "labels": [ + { + "label": "Higher school of optics", + "iso639": "en" + }, + { + "label": "Institut d'optique théorique et appliquée", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.425181.b", + "preferred": "grid.425181.b" + }, + "ISNI": { + "all": [ + "0000 0001 0282 5557" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q898448" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00davry38.json b/v1.49/v1/00davry38.json new file mode 100644 index 000000000..68584d05e --- /dev/null +++ b/v1.49/v1/00davry38.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/00davry38", + "name": "National Technological Institute of Mexico", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Instituto Tecnológico de Boca del Río", + "type": "Child", + "id": "https://ror.org/0302jbz39" + }, + { + "label": "Instituto Tecnológico Superior de Los Reyes", + "type": "Child", + "id": "https://ror.org/05p299b07" + }, + { + "label": "Instituto Tecnológico de La Paz", + "type": "Child", + "id": "https://ror.org/0460tzy11" + }, + { + "label": "Instituto Tecnológico de San Luis Potosí", + "type": "Child", + "id": "https://ror.org/04w0a0617" + }, + { + "label": "Secretariat of Public Education", + "type": "Parent", + "id": "https://ror.org/02e1c4h55" + }, + { + "label": "Instituto Tecnólogico de La Laguna", + "type": "Child", + "id": "https://ror.org/00xbw4a70" + } + ], + "addresses": [ + { + "lat": 19.42847, + "lng": -99.12766, + "state": null, + "state_code": null, + "city": "Mexico City", + "geonames_city": { + "id": 3530597, + "city": "Mexico City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.tecnm.mx/" + ], + "aliases": [], + "acronyms": [ + "TecNM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Tecnológico Nacional de México", + "iso639": "es" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.484694.3", + "preferred": "grid.484694.3" + }, + "ISNI": { + "all": [ + "0000 0004 5988 7021" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00dqry546.json b/v1.49/v1/00dqry546.json new file mode 100644 index 000000000..8cd7596c0 --- /dev/null +++ b/v1.49/v1/00dqry546.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/00dqry546", + "name": "Batterjee Medical College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.49012, + "lng": 39.18624, + "state": null, + "state_code": null, + "city": "Jeddah", + "geonames_city": { + "id": 105343, + "city": "Jeddah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bmc.edu.sa" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Saudi Arabia", + "country_code": "SA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00drqbm04.json b/v1.49/v1/00drqbm04.json new file mode 100644 index 000000000..4a6c0c29b --- /dev/null +++ b/v1.49/v1/00drqbm04.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00drqbm04", + "name": "Sheikh Saqr Laboratory", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 13.07854, + "lng": 77.60692, + "state": null, + "state_code": null, + "city": "Jakkūr", + "geonames_city": { + "id": 10854699, + "city": "Jakkūr", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iwam-rakcam.com/sheikh-saqr-lab.html" + ], + "aliases": [], + "acronyms": [ + "SSL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7754 5682" + ], + "preferred": "0000 0004 7754 5682" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00dyt5s15.json b/v1.49/v1/00dyt5s15.json new file mode 100644 index 000000000..d8182f682 --- /dev/null +++ b/v1.49/v1/00dyt5s15.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/00dyt5s15", + "name": "Center for Infection and Immunity of Lille", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Régionale Nord Ouest", + "type": "Parent", + "id": "https://ror.org/00jmxvy70" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Parent", + "id": "https://ror.org/05k9skc85" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://u1019.lille.inserm.fr/?lang=en" + ], + "aliases": [], + "acronyms": [ + "CIIL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre d'infection et d'immunité de Lille", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463727.3", + "preferred": "grid.463727.3" + }, + "ISNI": { + "all": [ + "0000 0004 0386 3856" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00e4pqm50.json b/v1.49/v1/00e4pqm50.json new file mode 100644 index 000000000..157cea4d3 --- /dev/null +++ b/v1.49/v1/00e4pqm50.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00e4pqm50", + "name": "Laboratoire de Géographie Physique et Environnementale", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + }, + { + "label": "Université de Limoges", + "type": "Parent", + "id": "https://ror.org/02cp04407" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://geolab.univ-bpclermont.fr/" + ], + "aliases": [], + "acronyms": [ + "GEOLAB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463861.e", + "preferred": "grid.463861.e" + }, + "ISNI": { + "all": [ + "0000 0000 8863 9896" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00e59cf80.json b/v1.49/v1/00e59cf80.json new file mode 100644 index 000000000..f045a932a --- /dev/null +++ b/v1.49/v1/00e59cf80.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/00e59cf80", + "name": "Instituto Tecnológico Superior de Naranjos", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.35087, + "lng": -97.68656, + "state": null, + "state_code": null, + "city": "Naranjos", + "geonames_city": { + "id": 3522804, + "city": "Naranjos", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.itsna.edu.mx" + ], + "aliases": [ + "TecNM Campus Instituto Tecnológico de Naranjos", + "Tecnologico Nacional de Mexico Campus de Naranjos" + ], + "acronyms": [ + "ITSNa" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4679 4758" + ], + "preferred": "0000 0004 4679 4758" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00e96v939.json b/v1.49/v1/00e96v939.json new file mode 100644 index 000000000..716d0d3b7 --- /dev/null +++ b/v1.49/v1/00e96v939.json @@ -0,0 +1,159 @@ +{ + "id": "https://ror.org/00e96v939", + "name": "Université d'Évry Val-d'Essonne", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Anthropologie et Histoire des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Informatique, Biologie Intégrative et Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/01aqxgr98" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "type": "Child", + "id": "https://ror.org/03p76m698" + }, + { + "label": "Integrated Genetic Approaches in Therapeutic Discovery for Rare Diseases", + "type": "Child", + "id": "https://ror.org/04az3m568" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "Child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire de Mathématiques et Modélisation d'Évry", + "type": "Child", + "id": "https://ror.org/03jca6281" + }, + { + "label": "Laboratoire en Innovation, Technologies, Economie et Management", + "type": "Child", + "id": "https://ror.org/04d5x5x34" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "Child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.63389, + "lng": 2.44417, + "state": null, + "state_code": null, + "city": "Évry-Courcouronnes", + "geonames_city": { + "id": 6454878, + "city": "Évry-Courcouronnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-evry.fr/en/index.html" + ], + "aliases": [], + "acronyms": [ + "UEVE" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_%C3%89vry_Val_d'Essonne", + "labels": [ + { + "label": "University of Évry Val d'Essonne", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.8390.2", + "preferred": "grid.8390.2" + }, + "ISNI": { + "all": [ + "0000 0001 2180 5818" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1531014" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00embpk79.json b/v1.49/v1/00embpk79.json new file mode 100644 index 000000000..d47666033 --- /dev/null +++ b/v1.49/v1/00embpk79.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00embpk79", + "name": "East West College of Natural Medicine", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.33643, + "lng": -82.53065, + "state": null, + "state_code": null, + "city": "Sarasota", + "geonames_city": { + "id": 4172131, + "city": "Sarasota", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ewcollege.edu/" + ], + "aliases": [], + "acronyms": [ + "EWCNM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/East_West_College_of_Natural_Medicine", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.465736.5", + "preferred": "grid.465736.5" + }, + "ISNI": { + "all": [ + "0000 0004 0529 7122" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16934156" + ], + "preferred": "Q16934156" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00enct420.json b/v1.49/v1/00enct420.json new file mode 100644 index 000000000..1e80847b2 --- /dev/null +++ b/v1.49/v1/00enct420.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00enct420", + "name": "Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Délégation Ile-de-France Sud", + "type": "Parent", + "id": "https://ror.org/01y8j9r24" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://iramis.cea.fr/en/Phocea/Vie_des_labos/Ast/ast_service.php?id_unit=6" + ], + "aliases": [], + "acronyms": [ + "SIS2M" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462538.e", + "preferred": "grid.462538.e" + }, + "ISNI": { + "all": [ + "0000 0001 0628 2641" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261486" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00ex3jm11.json b/v1.49/v1/00ex3jm11.json new file mode 100644 index 000000000..0cf62fc19 --- /dev/null +++ b/v1.49/v1/00ex3jm11.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/00ex3jm11", + "name": "Cohortes épidémiologiques en population", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.7939, + "lng": 2.35992, + "state": null, + "state_code": null, + "city": "Villejuif", + "geonames_city": { + "id": 2968705, + "city": "Villejuif", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ovsq.uvsq.fr/cohorte-constances" + ], + "aliases": [ + "Cohorte Constances" + ], + "acronyms": [ + "CONSTANCES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109587149" + ], + "preferred": "Q109587149" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00f5hap04.json b/v1.49/v1/00f5hap04.json new file mode 100644 index 000000000..5b7c033a1 --- /dev/null +++ b/v1.49/v1/00f5hap04.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/00f5hap04", + "name": "Acteurs, Ressources et Territoires dans le Développement", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "Parent", + "id": "https://ror.org/00qhdy563" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://art-dev.cnrs.fr/" + ], + "aliases": [], + "acronyms": [ + "ART-Dev" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503075.4", + "preferred": "grid.503075.4" + }, + "ISNI": { + "all": [ + "0000 0001 2289 8235" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51780609" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00fh1dw28.json b/v1.49/v1/00fh1dw28.json new file mode 100644 index 000000000..0c6a52704 --- /dev/null +++ b/v1.49/v1/00fh1dw28.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00fh1dw28", + "name": "Laboratoire de Génie Civil et Géo Environnement", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université d'Artois", + "type": "Parent", + "id": "https://ror.org/053x9s498" + }, + { + "label": "IMT Nord Europe", + "type": "Parent", + "id": "https://ror.org/042rh9p26" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lgcge.fr" + ], + "aliases": [], + "acronyms": [ + "LGCgE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784013" + ], + "preferred": "Q51784013" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00ft2kj97.json b/v1.49/v1/00ft2kj97.json new file mode 100644 index 000000000..99f83e05e --- /dev/null +++ b/v1.49/v1/00ft2kj97.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00ft2kj97", + "name": "Sichuan Medical Association", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.66667, + "lng": 104.06667, + "state": null, + "state_code": null, + "city": "Chengdu", + "geonames_city": { + "id": 1815286, + "city": "Chengdu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sma.org.cn" + ], + "aliases": [], + "acronyms": [ + "SMA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "四川省医学会", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00fw8bp86.json b/v1.49/v1/00fw8bp86.json new file mode 100644 index 000000000..7cc47cb62 --- /dev/null +++ b/v1.49/v1/00fw8bp86.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/00fw8bp86", + "name": "Centre de physique des particules de Marseille", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Aix-Marseille Université", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Parent", + "id": "https://ror.org/03fd77x13" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cppm.in2p3.fr" + ], + "aliases": [], + "acronyms": [ + "CPPM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Center for Particle Physics of Marseilles", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.470046.1", + "preferred": "grid.470046.1" + }, + "ISNI": { + "all": [ + "0000 0004 0452 0652" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30265181" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00g241p78.json b/v1.49/v1/00g241p78.json new file mode 100644 index 000000000..ce16e322d --- /dev/null +++ b/v1.49/v1/00g241p78.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00g241p78", + "name": "Istanbul Topkapi University", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.01384, + "lng": 28.94966, + "state": null, + "state_code": null, + "city": "Istanbul", + "geonames_city": { + "id": 745044, + "city": "Istanbul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.topkapi.edu.tr" + ], + "aliases": [ + "Istanbul Ayvansaray University", + "Plato College of Higher Education", + "Plato Meslek Yüksekokulu", + "İstanbul Ayvansaray Üniversitesi" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Plato_College_of_Higher_Education", + "labels": [ + { + "label": "İstanbul Topkapı Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "GRID": { + "all": "grid.466761.4", + "preferred": "grid.466761.4" + }, + "ISNI": { + "all": [ + "0000 0004 0471 9274", + "0000 0004 6004 9009" + ], + "preferred": "0000 0004 6004 9009" + }, + "Wikidata": { + "all": [ + "Q6082132" + ], + "preferred": "Q6082132" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00g2j5111.json b/v1.49/v1/00g2j5111.json new file mode 100644 index 000000000..7dc05b2c0 --- /dev/null +++ b/v1.49/v1/00g2j5111.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00g2j5111", + "name": "Institut Pasteur in Ho Chi Minh City", + "email_address": null, + "ip_addresses": [], + "established": 1891, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 10.82302, + "lng": 106.62965, + "state": null, + "state_code": null, + "city": "Ho Chi Minh City", + "geonames_city": { + "id": 1566083, + "city": "Ho Chi Minh City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur.fr/en/international/institut-pasteur-international-network/institutes-network/ho-chi-minh-city" + ], + "aliases": [ + "Pasteur Institute - Sai Gon" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_Pasteur_in_Ho_Chi_Minh_City", + "labels": [], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": { + "GRID": { + "all": "grid.452689.4", + "preferred": "grid.452689.4" + }, + "Wikidata": { + "all": [ + "Q3151786" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00g32ep81.json b/v1.49/v1/00g32ep81.json new file mode 100644 index 000000000..e12402538 --- /dev/null +++ b/v1.49/v1/00g32ep81.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00g32ep81", + "name": "Centre d'Histoire Judiciaire", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://chj-cnrs.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "CHJ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 1931 4294" + ], + "preferred": "0000 0001 1931 4294" + }, + "Wikidata": { + "all": [ + "Q51782200" + ], + "preferred": "Q51782200" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00g8zjy95.json b/v1.49/v1/00g8zjy95.json new file mode 100644 index 000000000..f5b61cd60 --- /dev/null +++ b/v1.49/v1/00g8zjy95.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00g8zjy95", + "name": "Bergen School of Architecture", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 60.39299, + "lng": 5.32415, + "state": null, + "state_code": null, + "city": "Bergen", + "geonames_city": { + "id": 3161732, + "city": "Bergen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bas.org" + ], + "aliases": [], + "acronyms": [ + "BAS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bergen_School_of_Architecture", + "labels": [], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "GRID": { + "all": "grid.458968.e", + "preferred": "grid.458968.e" + }, + "Wikidata": { + "all": [ + "Q4891549" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00gdtta79.json b/v1.49/v1/00gdtta79.json new file mode 100644 index 000000000..cc9d1a8a0 --- /dev/null +++ b/v1.49/v1/00gdtta79.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00gdtta79", + "name": "Laboratoire Méthodes Formelles", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lmf.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "LMF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Formal Method Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109042513" + ], + "preferred": "Q109042513" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00h43mz31.json b/v1.49/v1/00h43mz31.json new file mode 100644 index 000000000..26e690ca1 --- /dev/null +++ b/v1.49/v1/00h43mz31.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00h43mz31", + "name": "Maryland Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 39.29038, + "lng": -76.61219, + "state": null, + "state_code": null, + "city": "Baltimore", + "geonames_city": { + "id": 4347778, + "city": "Baltimore", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://mdhc.org/" + ], + "aliases": [], + "acronyms": [ + "MHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.450993.2", + "preferred": "grid.450993.2" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00h8wdb33.json b/v1.49/v1/00h8wdb33.json new file mode 100644 index 000000000..07ab9e6a8 --- /dev/null +++ b/v1.49/v1/00h8wdb33.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00h8wdb33", + "name": "Federal Polytechnic, Bauchi", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.31032, + "lng": 9.84388, + "state": null, + "state_code": null, + "city": "Bauchi", + "geonames_city": { + "id": 2347470, + "city": "Bauchi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fptb.edu.ng" + ], + "aliases": [], + "acronyms": [ + "FPTB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_Polytechnic%2C_Bauchi", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q18207057" + ], + "preferred": "Q18207057" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00hgbrg14.json b/v1.49/v1/00hgbrg14.json new file mode 100644 index 000000000..872a3a6cf --- /dev/null +++ b/v1.49/v1/00hgbrg14.json @@ -0,0 +1,159 @@ +{ + "id": "https://ror.org/00hgbrg14", + "name": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Observatoire de la Côte d’Azur", + "type": "Parent", + "id": "https://ror.org/039fj2469" + }, + { + "label": "Conservatoire National des Arts et Métiers", + "type": "Parent", + "id": "https://ror.org/0175hh227" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Office National d'Études et de Recherches Aérospatiales", + "type": "Parent", + "id": "https://ror.org/005y2ap84" + }, + { + "label": "École nationale supérieure de techniques avancées Bretagne", + "type": "Parent", + "id": "https://ror.org/059n54003" + }, + { + "label": "Institut Polytechnique de Bordeaux", + "type": "Parent", + "id": "https://ror.org/054qv7y42" + }, + { + "label": "Aix-Marseille Université", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + }, + { + "label": "Université Bourgogne Franche-Comté", + "type": "Parent", + "id": "https://ror.org/02dn7x778" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "ChocoDyn", + "Federation ChocoDyn", + "Fédération de recherche Chocodyn" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French Network on Material Under high Strain Rate. Applications to Material Under Extreme Conditions, Processes and Structures", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123694986" + ], + "preferred": "Q123694986" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00hwfn059.json b/v1.49/v1/00hwfn059.json new file mode 100644 index 000000000..62d206b4d --- /dev/null +++ b/v1.49/v1/00hwfn059.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/00hwfn059", + "name": "College of Technological Studies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.34361, + "lng": 47.94611, + "state": null, + "state_code": null, + "city": "Ash Shuwaykh", + "geonames_city": { + "id": 285713, + "city": "Ash Shuwaykh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://e.paaet.edu.kw/colleges/EN/CollegeOfTechnologicalStudies/Pages/default.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Kuwait", + "country_code": "KW" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00hx6zz33.json b/v1.49/v1/00hx6zz33.json new file mode 100644 index 000000000..ef01c9495 --- /dev/null +++ b/v1.49/v1/00hx6zz33.json @@ -0,0 +1,165 @@ +{ + "id": "https://ror.org/00hx6zz33", + "name": "École Normale Supérieure Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 1892, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre d'Économie de la Sorbonne", + "type": "Child", + "id": "https://ror.org/006shqv80" + }, + { + "label": "Institut des Sciences Sociales du Politique", + "type": "Child", + "id": "https://ror.org/03jdg7625" + }, + { + "label": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "type": "Child", + "id": "https://ror.org/03p76m698" + }, + { + "label": "Laboratoire de Biologie et Pharmacologie Appliquée", + "type": "Child", + "id": "https://ror.org/03njrcx45" + }, + { + "label": "Laboratoire de Photophysique et Photochimie Supramoléculaires et Macromoléculaires", + "type": "Child", + "id": "https://ror.org/03r7eh527" + }, + { + "label": "Laboratoire de Photonique Quantique et Moléculaire", + "type": "Child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "Child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "Centre de Recherche en Design", + "type": "Child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "Child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "Child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "Child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ens-paris-saclay.fr/" + ], + "aliases": [ + "ENS Cachan", + "Normale Sup' Cachan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure_de_Cachan", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.6390.c", + "preferred": "grid.6390.c" + }, + "ISNI": { + "all": [ + "0000 0004 1765 0915" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273604" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00hxwjw54.json b/v1.49/v1/00hxwjw54.json new file mode 100644 index 000000000..52e4cb124 --- /dev/null +++ b/v1.49/v1/00hxwjw54.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/00hxwjw54", + "name": "Centro Universitário Internacional UNINTER", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -25.42778, + "lng": -49.27306, + "state": null, + "state_code": null, + "city": "Curitiba", + "geonames_city": { + "id": 3464975, + "city": "Curitiba", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uninter.com/centro-universitario-internacional/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Centro_Universit%C3%A1rio_Internacional", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00hz02a80.json b/v1.49/v1/00hz02a80.json new file mode 100644 index 000000000..19dd61544 --- /dev/null +++ b/v1.49/v1/00hz02a80.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00hz02a80", + "name": "Adiposité Médullaire et Os", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université du littoral côte d'opale", + "type": "Parent", + "id": "https://ror.org/02gdcg342" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pmoi.univ-littoral.fr" + ], + "aliases": [ + "Marrow Adiposity and Bone Lab" + ], + "acronyms": [ + "MABLAB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Marrow Adiposity & Bone Lab", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00j65mz88.json b/v1.49/v1/00j65mz88.json new file mode 100644 index 000000000..262091c1d --- /dev/null +++ b/v1.49/v1/00j65mz88.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/00j65mz88", + "name": "Universitas Amikom Yogyakarta", + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://amikom.ac.id" + ], + "aliases": [ + "Amikom Yogyakarta", + "University of Amikom Yogyakarta" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0385 0959" + ], + "preferred": "0000 0004 0385 0959" + }, + "Wikidata": { + "all": [ + "Q12511331" + ], + "preferred": "Q12511331" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00jjx8s55.json b/v1.49/v1/00jjx8s55.json new file mode 100644 index 000000000..e2c682614 --- /dev/null +++ b/v1.49/v1/00jjx8s55.json @@ -0,0 +1,409 @@ +{ + "id": "https://ror.org/00jjx8s55", + "name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire AstroParticule et Cosmologie", + "type": "Child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "CEA Cadarache", + "type": "Child", + "id": "https://ror.org/01rs1gy10" + }, + { + "label": "CEA DAM Île-de-France", + "type": "Child", + "id": "https://ror.org/00kn4eb29" + }, + { + "label": "CEA Fontenay-aux-Roses", + "type": "Child", + "id": "https://ror.org/010j2gw05" + }, + { + "label": "CEA Grenoble", + "type": "Child", + "id": "https://ror.org/02mg6n827" + }, + { + "label": "Centre Lasers Intenses et Applications", + "type": "Child", + "id": "https://ror.org/02910d597" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "Child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherche sur les Ions, les Matériaux et la Photonique", + "type": "Child", + "id": "https://ror.org/02y0gk295" + }, + { + "label": "Laboratoire Chrono-Environnement", + "type": "Child", + "id": "https://ror.org/028cef883" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "Child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Direction des énergies", + "type": "Child", + "id": "https://ror.org/03cwzta72" + }, + { + "label": "Direction de la Recherche Fondamentale", + "type": "Child", + "id": "https://ror.org/01yvj5k91" + }, + { + "label": "Direction de la Recherche Technologique", + "type": "Child", + "id": "https://ror.org/02ggzyd20" + }, + { + "label": "Frédéric Joliot Institute for Life Sciences", + "type": "Child", + "id": "https://ror.org/016pnwd02" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "Child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Institut National de l'Énergie Solaire", + "type": "Child", + "id": "https://ror.org/00qk0vr83" + }, + { + "label": "Institut de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Institut de Radiobiologie Cellulaire et Moléculaire", + "type": "Child", + "id": "https://ror.org/04ef91678" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "Child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Institut de Chimie Séparative de Marcoule", + "type": "Child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institut de Biologie Intégrative de la Cellule", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Institut de Chimie Organique et Analytique", + "type": "Child", + "id": "https://ror.org/03ywn7d79" + }, + { + "label": "Laboratoire des Solides Irradiés", + "type": "Child", + "id": "https://ror.org/015x8rz21" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "Child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire Léon Brillouin", + "type": "Child", + "id": "https://ror.org/029rmm934" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "Child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire des Composites Thermo Structuraux", + "type": "Child", + "id": "https://ror.org/02n2h9t24" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Nanosciences et Innovation pour les Matériaux, la Biomédecine et l'Énergie", + "type": "Child", + "id": "https://ror.org/04vg26t07" + }, + { + "label": "Centre National de Recherche en Génomique Humaine", + "type": "Child", + "id": "https://ror.org/004yvsb77" + }, + { + "label": "Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux", + "type": "Child", + "id": "https://ror.org/00enct420" + }, + { + "label": "Service de Physique de l'État Condensé", + "type": "Child", + "id": "https://ror.org/0247p4w70" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "Child", + "id": "https://ror.org/00byxdz40" + }, + { + "label": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "type": "Child", + "id": "https://ror.org/005yfhm28" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "Child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Laboratoire Modélisation et Exploration des Matériaux", + "type": "Child", + "id": "https://ror.org/00ndvqf03" + }, + { + "label": "Transporteurs, Imagerie et Radiothérapie en Oncologie - Mécanismes Biologiques des Altérations du Tissu Osseux", + "type": "Child", + "id": "https://ror.org/051c1vb08" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "Child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "Child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire Biologie et Biotechnologie pour la Santé", + "type": "Child", + "id": "https://ror.org/0557vhy43" + }, + { + "label": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "type": "Child", + "id": "https://ror.org/0535cbn94" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cea.fr/" + ], + "aliases": [], + "acronyms": [ + "CEA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/French_Alternative_Energies_and_Atomic_Energy_Commission", + "labels": [ + { + "label": "Atomic Energy and Alternative Energies Commission", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.5583.b", + "preferred": "grid.5583.b" + }, + "ISNI": { + "all": [ + "0000 0001 2299 8025" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q868550" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00jp4qe04.json b/v1.49/v1/00jp4qe04.json new file mode 100644 index 000000000..fc9682a29 --- /dev/null +++ b/v1.49/v1/00jp4qe04.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00jp4qe04", + "name": "Société Française de Statistique", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sfds.asso.fr" + ], + "aliases": [], + "acronyms": [ + "SFdS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/French_Statistical_Society", + "labels": [ + { + "label": "French Statistical Society", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2152 0652" + ], + "preferred": "0000 0001 2152 0652" + }, + "Wikidata": { + "all": [ + "Q3488327" + ], + "preferred": "Q3488327" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00jp5dw81.json b/v1.49/v1/00jp5dw81.json new file mode 100644 index 000000000..f759611ed --- /dev/null +++ b/v1.49/v1/00jp5dw81.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00jp5dw81", + "name": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Institut Gustave Roussy", + "type": "Parent", + "id": "https://ror.org/0321g0743" + } + ], + "addresses": [ + { + "lat": 48.7939, + "lng": 2.35992, + "state": null, + "state_code": null, + "city": "Villejuif", + "geonames_city": { + "id": 2968705, + "city": "Villejuif", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gustaveroussy.fr/fr/umr-1030" + ], + "aliases": [], + "acronyms": [ + "RaMo-IT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782610" + ], + "preferred": "Q51782610" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00jsgkx16.json b/v1.49/v1/00jsgkx16.json new file mode 100644 index 000000000..61c5fdd06 --- /dev/null +++ b/v1.49/v1/00jsgkx16.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00jsgkx16", + "name": "Lille School of Management Research Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "SKEMA Business School", + "type": "Parent", + "id": "https://ror.org/036h8vg94" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://iaelille.fr/recherche/lille-school-management-research-center" + ], + "aliases": [], + "acronyms": [ + "LSMRC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0387 2592" + ], + "preferred": "0000 0004 0387 2592" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00jxe7243.json b/v1.49/v1/00jxe7243.json new file mode 100644 index 000000000..4f08f85b0 --- /dev/null +++ b/v1.49/v1/00jxe7243.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/00jxe7243", + "name": "Laboratoire Physiologie Cellulaire & Végétale", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lpcv.fr" + ], + "aliases": [], + "acronyms": [ + "LPCV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratoire de Physiologie Cellulaire Végétale", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462518.c", + "preferred": "grid.462518.c" + }, + "ISNI": { + "all": [ + "0000 0004 0613 5141" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261479" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00k3ph542.json b/v1.49/v1/00k3ph542.json new file mode 100644 index 000000000..2e1badd48 --- /dev/null +++ b/v1.49/v1/00k3ph542.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00k3ph542", + "name": "Complexité, Innovation et Activités Motrices et Sportives", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université d'Orléans", + "type": "Parent", + "id": "https://ror.org/014zrew76" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.faculte-sciences-sport.universite-paris-saclay.fr/recherche/presentation-unite-de-recherche-ciams" + ], + "aliases": [ + "Laboratoire CIAMS", + "Laboratoire Complexité, Innovation et Activités Motrices et Sportives" + ], + "acronyms": [ + "CIAMS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503134.0", + "preferred": "grid.503134.0" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00k8f0571.json b/v1.49/v1/00k8f0571.json new file mode 100644 index 000000000..7e653905a --- /dev/null +++ b/v1.49/v1/00k8f0571.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/00k8f0571", + "name": "Federal College of Forestry, Ibadan", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.37756, + "lng": 3.90591, + "state": null, + "state_code": null, + "city": "Ibadan", + "geonames_city": { + "id": 2339354, + "city": "Ibadan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fcfibadan.edu.ng" + ], + "aliases": [ + "FCFI Ibadan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00kcctq66.json b/v1.49/v1/00kcctq66.json new file mode 100644 index 000000000..71987cd51 --- /dev/null +++ b/v1.49/v1/00kcctq66.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/00kcctq66", + "name": "Saint Petersburg Pasteur Institute", + "email_address": null, + "ip_addresses": [], + "established": 1887, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 59.93863, + "lng": 30.31413, + "state": null, + "state_code": null, + "city": "St Petersburg", + "geonames_city": { + "id": 498817, + "city": "St Petersburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://pasteurorg.ru/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Федеральное бюджетное учреждение науки Санкт-Петербургский научно-исследовательский институт эпидемиологии и микробиологии им. Пастера", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.419591.1", + "preferred": "grid.419591.1" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00kcjks51.json b/v1.49/v1/00kcjks51.json new file mode 100644 index 000000000..e76697317 --- /dev/null +++ b/v1.49/v1/00kcjks51.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00kcjks51", + "name": "Universidad de América", + "email_address": null, + "ip_addresses": [], + "established": 1956, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uamerica.edu.co" + ], + "aliases": [ + "University of America" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_America", + "labels": [ + { + "label": "Fundación Universidad de América", + "iso639": "es" + }, + { + "label": "University of America", + "iso639": "en" + } + ], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "GRID": { + "all": "grid.442159.f", + "preferred": "grid.442159.f" + }, + "ISNI": { + "all": [ + "0000 0004 0486 5407" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q11050122" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00kk89y84.json b/v1.49/v1/00kk89y84.json new file mode 100644 index 000000000..02fba16c4 --- /dev/null +++ b/v1.49/v1/00kk89y84.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00kk89y84", + "name": "Écologie, Systématique et Évolution", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ese.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "ESE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463962.c", + "preferred": "grid.463962.c" + }, + "ISNI": { + "all": [ + "0000 0004 0445 9548" + ], + "preferred": "0000 0004 0445 9548" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00kn4eb29.json b/v1.49/v1/00kn4eb29.json new file mode 100644 index 000000000..a56c5f0da --- /dev/null +++ b/v1.49/v1/00kn4eb29.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/00kn4eb29", + "name": "CEA DAM Île-de-France", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "CEA Gramat", + "type": "Child", + "id": "https://ror.org/00j8epd55" + }, + { + "label": "CEA Le Ripault", + "type": "Child", + "id": "https://ror.org/01hjhm267" + }, + { + "label": "CEA Valduc", + "type": "Child", + "id": "https://ror.org/03ze07515" + }, + { + "label": "Centre d'Études Scientifiques et Techniques d'Aquitaine", + "type": "Child", + "id": "https://ror.org/026ma2c10" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 48.58868, + "lng": 2.18991, + "state": null, + "state_code": null, + "city": "Bruyères-le-Châtel", + "geonames_city": { + "id": 3029717, + "city": "Bruyères-le-Châtel", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www-dam.cea.fr/" + ], + "aliases": [], + "acronyms": [ + "CEA DIF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457347.6", + "preferred": "grid.457347.6" + }, + "ISNI": { + "all": [ + "0000 0001 1956 9481" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2931222" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00kqccw49.json b/v1.49/v1/00kqccw49.json new file mode 100644 index 000000000..cc76c326f --- /dev/null +++ b/v1.49/v1/00kqccw49.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00kqccw49", + "name": "New York Council for the Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nyhumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447473.7", + "preferred": "grid.447473.7" + }, + "ISNI": { + "all": [ + "0000 0001 0085 5453" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00kvxt616.json b/v1.49/v1/00kvxt616.json new file mode 100644 index 000000000..ad2cb8ff4 --- /dev/null +++ b/v1.49/v1/00kvxt616.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00kvxt616", + "name": "Hajee Mohammad Danesh Science and Technology University", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 25.62745, + "lng": 88.63779, + "state": null, + "state_code": null, + "city": "Dinajpur", + "geonames_city": { + "id": 1203891, + "city": "Dinajpur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hstu.ac.bd" + ], + "aliases": [ + "Hajee Danesh University" + ], + "acronyms": [ + "HSTU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hajee_Mohammad_Danesh_Science_%26_Technology_University", + "labels": [ + { + "label": "হাজী মোহাম্মদ দানেশ বিজ্ঞান ও প্রযুক্তি বিশ্ববিদ্যালয়", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "GRID": { + "all": "grid.443067.2", + "preferred": "grid.443067.2" + }, + "Wikidata": { + "all": [ + "Q5639859" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00m090414.json b/v1.49/v1/00m090414.json new file mode 100644 index 000000000..db457f253 --- /dev/null +++ b/v1.49/v1/00m090414.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/00m090414", + "name": "Maison Européenne des Sciences de l'Homme et de la Société", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université d'Artois", + "type": "Parent", + "id": "https://ror.org/053x9s498" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Polytechnique Hauts-de-France", + "type": "Parent", + "id": "https://ror.org/02ezch769" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + }, + { + "label": "Université du littoral côte d'opale", + "type": "Parent", + "id": "https://ror.org/02gdcg342" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.meshs.fr/" + ], + "aliases": [ + "Maison Européenne des Sciences" + ], + "acronyms": [ + "MESHS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "European Center for the Humanities and Social Sciences", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464005.3", + "preferred": "grid.464005.3" + }, + "ISNI": { + "all": [ + "0000 0004 0520 7633" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00m4rxj18.json b/v1.49/v1/00m4rxj18.json new file mode 100644 index 000000000..880d8bcc6 --- /dev/null +++ b/v1.49/v1/00m4rxj18.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00m4rxj18", + "name": "Arènes: politique, santé publique, environnement, médias", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Rennes 2", + "type": "Parent", + "id": "https://ror.org/01m84wm78" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Sciences Po Rennes", + "type": "Parent", + "id": "https://ror.org/01fmctt82" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "École des Hautes Études en Santé Publique", + "type": "Parent", + "id": "https://ror.org/01sc83v92" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://arenes.eu" + ], + "aliases": [ + "Arènes", + "Arènes : Centre de Recherches sur l’Action Politique en Europe" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00m7zca23.json b/v1.49/v1/00m7zca23.json new file mode 100644 index 000000000..9761a90b2 --- /dev/null +++ b/v1.49/v1/00m7zca23.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00m7zca23", + "name": "Science et Ingénierie des Matériaux et Procédés", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.1787, + "lng": 5.76281, + "state": null, + "state_code": null, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 2978317, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://simap.grenoble-inp.fr" + ], + "aliases": [], + "acronyms": [ + "SIMAP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462639.c", + "preferred": "grid.462639.c" + }, + "ISNI": { + "all": [ + "0000 0001 2170 1576" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00mghmd60.json b/v1.49/v1/00mghmd60.json new file mode 100644 index 000000000..39f417301 --- /dev/null +++ b/v1.49/v1/00mghmd60.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/00mghmd60", + "name": "Centre Lillois d'Etudes et de Recherches Sociologiques et Economiques", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://clerse.univ-lille1.fr/?lang=fr" + ], + "aliases": [], + "acronyms": [ + "CLERSÉ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462897.6", + "preferred": "grid.462897.6" + }, + "ISNI": { + "all": [ + "0000 0001 2192 5545" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00mgjz918.json b/v1.49/v1/00mgjz918.json new file mode 100644 index 000000000..36cc72994 --- /dev/null +++ b/v1.49/v1/00mgjz918.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/00mgjz918", + "name": "Instituto Superior de Angola", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -8.83682, + "lng": 13.23432, + "state": null, + "state_code": null, + "city": "Luanda", + "geonames_city": { + "id": 2240449, + "city": "Luanda", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://isa.ao" + ], + "aliases": [ + "Higher Institute of Angola" + ], + "acronyms": [ + "ISA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Angola", + "country_code": "AO" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00mthsf17.json b/v1.49/v1/00mthsf17.json new file mode 100644 index 000000000..ea841aec1 --- /dev/null +++ b/v1.49/v1/00mthsf17.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/00mthsf17", + "name": "Centre Hospitalier Universitaire de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpital Arnaud de Villeneuve", + "type": "Child", + "id": "https://ror.org/04m6sq715" + }, + { + "label": "Hôpital Lapeyronie", + "type": "Child", + "id": "https://ror.org/03xzagw65" + }, + { + "label": "Hôpital Saint Eloi", + "type": "Child", + "id": "https://ror.org/04pwyfk22" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "Child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Physiologie et Médecine Expérimentale du Coeur et des Muscles", + "type": "Child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Université de Montpellier", + "type": "Related", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.chu-montpellier.fr/" + ], + "aliases": [], + "acronyms": [ + "CHRU MTP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "University Hospital of Montpellier", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.157868.5", + "preferred": "grid.157868.5" + }, + "ISNI": { + "all": [ + "0000 0000 9961 060X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q55596074" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00myn0z94.json b/v1.49/v1/00myn0z94.json new file mode 100644 index 000000000..2c9c22169 --- /dev/null +++ b/v1.49/v1/00myn0z94.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/00myn0z94", + "name": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "IMT Atlantique", + "type": "Parent", + "id": "https://ror.org/030hj3061" + }, + { + "label": "Institut National des Sciences Appliquées de Rennes", + "type": "Parent", + "id": "https://ror.org/04xaa4j22" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Université de Bretagne Sud", + "type": "Parent", + "id": "https://ror.org/04ed7fw48" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.irisa.fr/en" + ], + "aliases": [], + "acronyms": [ + "IRISA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Research_Institute_of_Computer_Science_and_Random_Systems", + "labels": [ + { + "label": "Institute for Research in IT and Random Systems", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.420225.3", + "preferred": "grid.420225.3" + }, + "ISNI": { + "all": [ + "0000 0001 2298 7270" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3152091" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00n2c0309.json b/v1.49/v1/00n2c0309.json new file mode 100644 index 000000000..83e973e49 --- /dev/null +++ b/v1.49/v1/00n2c0309.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00n2c0309", + "name": "ABSys", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Centre International deHautes Etudes Agronomiques Méditerranéennes", + "type": "Parent", + "id": "https://ror.org/04abkkz03" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "L'Institut Agro", + "type": "Parent", + "id": "https://ror.org/01dkyve95" + }, + { + "label": "Fonctionnement et Conduite des Systèmes de Culture Tropicaux et Méditerranéens", + "type": "Predecessor", + "id": "https://ror.org/033x0mt18" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://umr-absys.cirad.fr" + ], + "aliases": [ + "Agrosystèmes Biodiversifiés", + "UMR ABSys", + "UMR Agrosystèmes Biodiversifiés" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00n4xrr40.json b/v1.49/v1/00n4xrr40.json new file mode 100644 index 000000000..eccdcba2c --- /dev/null +++ b/v1.49/v1/00n4xrr40.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00n4xrr40", + "name": "Institución Universitaria Centro de Estudios Superiores María Goretti", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 1.21361, + "lng": -77.28111, + "state": null, + "state_code": null, + "city": "Pasto", + "geonames_city": { + "id": 3672778, + "city": "Pasto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unicesmag.edu.co" + ], + "aliases": [ + "Universidad CESMAG", + "Universidad Centro de Estudios Superiores María Goretti" + ], + "acronyms": [ + "IU CESMAG", + "UNICESMAG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "GRID": { + "all": "grid.442021.1", + "preferred": "grid.442021.1" + }, + "ISNI": { + "all": [ + "0000 0004 0467 1725" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5917112" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00nbx9b54.json b/v1.49/v1/00nbx9b54.json new file mode 100644 index 000000000..8e9f423c7 --- /dev/null +++ b/v1.49/v1/00nbx9b54.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/00nbx9b54", + "name": "Institut des Sciences de la Mécanique et Applications Industrielles", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École Nationale Supérieure de Techniques Avancées", + "type": "Parent", + "id": "https://ror.org/0309cs235" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Parent", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Électricité de France (France)", + "type": "Parent", + "id": "https://ror.org/03wb8xz10" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.imsia.cnrs.fr" + ], + "aliases": [ + "Institute of Mechanical Sciences and Industrial Applications" + ], + "acronyms": [ + "IMSIA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783924" + ], + "preferred": "Q51783924" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00ndvqf03.json b/v1.49/v1/00ndvqf03.json new file mode 100644 index 000000000..4247330ad --- /dev/null +++ b/v1.49/v1/00ndvqf03.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00ndvqf03", + "name": "Laboratoire Modélisation et Exploration des Matériaux", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cea.fr/drf/irig/Pages/Laboratoires/MEM.aspx" + ], + "aliases": [ + "Modélisation et Exploration des Matériaux" + ], + "acronyms": [ + "MEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783748" + ], + "preferred": "Q51783748" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00nf46858.json b/v1.49/v1/00nf46858.json new file mode 100644 index 000000000..f535c9c2a --- /dev/null +++ b/v1.49/v1/00nf46858.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/00nf46858", + "name": "Clermont Recherche Management", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://clerma.uca.fr/" + ], + "aliases": [], + "acronyms": [ + "CleRMa" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Clermont Research Management", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.507594.a", + "preferred": "grid.507594.a" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00nrbzg90.json b/v1.49/v1/00nrbzg90.json new file mode 100644 index 000000000..7f2ea3be6 --- /dev/null +++ b/v1.49/v1/00nrbzg90.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/00nrbzg90", + "name": "Laboratoire Univers et Particules de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Parent", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lupm.univ-montp2.fr/" + ], + "aliases": [], + "acronyms": [ + "LUPM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464184.b", + "preferred": "grid.464184.b" + }, + "ISNI": { + "all": [ + "0000 0004 0382 470X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00nvvw130.json b/v1.49/v1/00nvvw130.json new file mode 100644 index 000000000..d56f9190d --- /dev/null +++ b/v1.49/v1/00nvvw130.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00nvvw130", + "name": "Stabilité Génétique, Cellules Souches et Radiations", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 48.79325, + "lng": 2.29275, + "state": null, + "state_code": null, + "city": "Fontenay-aux-Roses", + "geonames_city": { + "id": 3017924, + "city": "Fontenay-aux-Roses", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://jacob.cea.fr/drf/ifrancoisjacob/Pages/Departements/IRCM/Laboratoires.aspx" + ], + "aliases": [], + "acronyms": [ + "SGCSR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109621801" + ], + "preferred": "Q109621801" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00p5j4e25.json b/v1.49/v1/00p5j4e25.json new file mode 100644 index 000000000..2a29aba0f --- /dev/null +++ b/v1.49/v1/00p5j4e25.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/00p5j4e25", + "name": "Panteia (Netherlands)", + "email_address": null, + "ip_addresses": [], + "established": 1930, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.0575, + "lng": 4.49306, + "state": null, + "state_code": null, + "city": "Zoetermeer", + "geonames_city": { + "id": 2743856, + "city": "Zoetermeer", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://panteia.nl" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Panteia", + "iso639": null + } + ], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "GRID": { + "all": "grid.425615.1", + "preferred": "grid.425615.1" + }, + "ISNI": { + "all": [ + "0000 0004 0637 4636" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00p73bw06.json b/v1.49/v1/00p73bw06.json new file mode 100644 index 000000000..272fd9c0b --- /dev/null +++ b/v1.49/v1/00p73bw06.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00p73bw06", + "name": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut Gustave Roussy", + "type": "Parent", + "id": "https://ror.org/0321g0743" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.7939, + "lng": 2.35992, + "state": null, + "state_code": null, + "city": "Villejuif", + "geonames_city": { + "id": 2968705, + "city": "Villejuif", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gustaveroussy.fr/fr/umr-1170" + ], + "aliases": [ + "Dynamique moleculaire de la transformation hematopoietique", + "Dynamo", + "Hematopoeise normale et pathologique", + "Hématopoïèse normale et pathologique" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782149", + "Q109613823" + ], + "preferred": "Q109613823" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00pdj3j56.json b/v1.49/v1/00pdj3j56.json new file mode 100644 index 000000000..1e5a88428 --- /dev/null +++ b/v1.49/v1/00pdj3j56.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00pdj3j56", + "name": "Tamale College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 9.40079, + "lng": -0.8393, + "state": null, + "state_code": null, + "city": "Tamale", + "geonames_city": { + "id": 2294877, + "city": "Tamale", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tace.edu.gh" + ], + "aliases": [], + "acronyms": [ + "TACE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Tamale_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996989" + ], + "preferred": "Q46996989" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00pwbq328.json b/v1.49/v1/00pwbq328.json new file mode 100644 index 000000000..761b349b3 --- /dev/null +++ b/v1.49/v1/00pwbq328.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/00pwbq328", + "name": "Islamic Azad University, Babol", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.55102, + "lng": 52.6786, + "state": null, + "state_code": null, + "city": "Babol", + "geonames_city": { + "id": 142363, + "city": "Babol", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://babol.iau.ir" + ], + "aliases": [ + "Islamic Azad University, Babol Branch" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://fa.wikipedia.org/wiki/%D8%AF%D8%A7%D9%86%D8%B4%DA%AF%D8%A7%D9%87_%D8%A2%D8%B2%D8%A7%D8%AF_%D8%A7%D8%B3%D9%84%D8%A7%D9%85%DB%8C_%D9%88%D8%A7%D8%AD%D8%AF_%D8%A8%D8%A7%D8%A8%D9%84", + "labels": [ + { + "label": "دانشگاه آزاد اسلامی واحد بابل", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q17174149" + ], + "preferred": "Q17174149" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00qa63322.json b/v1.49/v1/00qa63322.json new file mode 100644 index 000000000..b4f9d266d --- /dev/null +++ b/v1.49/v1/00qa63322.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00qa63322", + "name": "Atal Bihari Vajpayee Institute of Medical Sciences and Dr. Ram Manohar Lohia Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1932, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.62137, + "lng": 77.2148, + "state": null, + "state_code": null, + "city": "New Delhi", + "geonames_city": { + "id": 1261481, + "city": "New Delhi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://rmlh.nic.in" + ], + "aliases": [ + "ABVIMS & Dr. RMLH", + "Atal Bihari Vajpayee Institute of Medical Sciences", + "Dr. Ram Manohar Lohia Hospital", + "Willingdon Hospital" + ], + "acronyms": [ + "ABVIMS", + "RMLH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ram_Manohar_Lohia_Hospital", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.414117.6", + "preferred": "grid.414117.6" + }, + "ISNI": { + "all": [ + "0000 0004 1767 6509" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7288522" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00qk0vr83.json b/v1.49/v1/00qk0vr83.json new file mode 100644 index 000000000..9c0dde471 --- /dev/null +++ b/v1.49/v1/00qk0vr83.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/00qk0vr83", + "name": "Institut National de l'Énergie Solaire", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Agence Nationale de la Recherche", + "type": "Parent", + "id": "https://ror.org/00rbzpz17" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Délégation Rhône Auvergne", + "type": "Parent", + "id": "https://ror.org/00bjjqs38" + }, + { + "label": "Université Savoie Mont Blanc", + "type": "Parent", + "id": "https://ror.org/04gqg1a07" + } + ], + "addresses": [ + { + "lat": 45.65362, + "lng": 5.8549, + "state": null, + "state_code": null, + "city": "Le Bourget-du-Lac", + "geonames_city": { + "id": 3005081, + "city": "Le Bourget-du-Lac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ines-solaire.org/" + ], + "aliases": [], + "acronyms": [ + "INES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Solar Energy Institute", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503251.0", + "preferred": "grid.503251.0" + }, + "ISNI": { + "all": [ + "0000 0004 0513 9853" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3152393" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00qx5am02.json b/v1.49/v1/00qx5am02.json new file mode 100644 index 000000000..e196b22c3 --- /dev/null +++ b/v1.49/v1/00qx5am02.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/00qx5am02", + "name": "Lo.La Peak Solutions GmbH (Austria)", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.08333, + "lng": 11.41667, + "state": null, + "state_code": null, + "city": "Trins", + "geonames_city": { + "id": 2763348, + "city": "Trins", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lo-la.info" + ], + "aliases": [ + "Lo.La Peak Solutions" + ], + "acronyms": [ + "Lo.La" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Lo.La Peak Solutions GmbH", + "iso639": null + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q108273380" + ], + "preferred": "Q108273380" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00r1edq15.json b/v1.49/v1/00r1edq15.json new file mode 100644 index 000000000..237fd0f6c --- /dev/null +++ b/v1.49/v1/00r1edq15.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/00r1edq15", + "name": "Universität Greifswald", + "email_address": null, + "ip_addresses": [], + "established": 1456, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut für Klimaschutz, Energie und Mobilität", + "type": "Child", + "id": "https://ror.org/03rvn2t89" + }, + { + "label": "Dietrich Bonhoeffer Klinikum", + "type": "Related", + "id": "https://ror.org/04qa46285" + }, + { + "label": "Universitätsmedizin Greifswald", + "type": "Related", + "id": "https://ror.org/025vngs54" + }, + { + "label": "Stiftung Alfried Krupp Kolleg Greifswald", + "type": "Related", + "id": "https://ror.org/036b8pc68" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni-greifswald.de" + ], + "aliases": [ + "University of Greifswald" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Greifswald", + "labels": [ + { + "label": "Ernst-Moritz-Arndt-Universität Greifswald", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.5603.0", + "preferred": "grid.5603.0" + }, + "ISNI": { + "all": [ + "0000 0001 2353 1531" + ], + "preferred": "0000 0001 2353 1531" + }, + "Wikidata": { + "all": [ + "Q165528" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00rd81916.json b/v1.49/v1/00rd81916.json new file mode 100644 index 000000000..fd6ee59b9 --- /dev/null +++ b/v1.49/v1/00rd81916.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00rd81916", + "name": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lisn.upsaclay.fr" + ], + "aliases": [], + "acronyms": [ + "LISN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109620676" + ], + "preferred": "Q109620676" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00rfccx09.json b/v1.49/v1/00rfccx09.json new file mode 100644 index 000000000..90139093a --- /dev/null +++ b/v1.49/v1/00rfccx09.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/00rfccx09", + "name": "Groupe de Recherche en Droit, Économie, Gestion", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.62235, + "lng": 7.04721, + "state": null, + "state_code": null, + "city": "Sophia Antipolis", + "geonames_city": { + "id": 6640252, + "city": "Sophia Antipolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://gredeg.univ-cotedazur.fr" + ], + "aliases": [], + "acronyms": [ + "GREDEG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503200.4", + "preferred": "grid.503200.4" + }, + "ISNI": { + "all": [ + "0000 0004 0638 0614" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51780887" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00rgfaj93.json b/v1.49/v1/00rgfaj93.json new file mode 100644 index 000000000..9c5109abe --- /dev/null +++ b/v1.49/v1/00rgfaj93.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00rgfaj93", + "name": "TÜV Nord (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1869, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "TÜV Nord (Czechia)", + "type": "Child", + "id": "https://ror.org/01tp4m681" + }, + { + "label": "TÜV Nord (United States)", + "type": "Child", + "id": "https://ror.org/04b7zk537" + } + ], + "addresses": [ + { + "lat": 52.37052, + "lng": 9.73322, + "state": null, + "state_code": null, + "city": "Hanover", + "geonames_city": { + "id": 2910831, + "city": "Hanover", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tuev-nord.de/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/T%C3%9CV_Nord", + "labels": [ + { + "label": "Technischer Überwachungsverein", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.438276.c", + "preferred": "grid.438276.c" + }, + "Wikidata": { + "all": [ + "Q2463547" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00rj6k558.json b/v1.49/v1/00rj6k558.json new file mode 100644 index 000000000..7b8c29884 --- /dev/null +++ b/v1.49/v1/00rj6k558.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00rj6k558", + "name": "Candela (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.3626, + "lng": -71.36145, + "state": null, + "state_code": null, + "city": "Wayland", + "geonames_city": { + "id": 4954654, + "city": "Wayland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://candelamedical.com" + ], + "aliases": [ + "Syneron Candela" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Syneron_Medical", + "labels": [ + { + "label": "Candela", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.489321.5", + "preferred": "grid.489321.5" + }, + "ISNI": { + "all": [ + "0000 0004 0416 5152", + "0000 0004 0506 058X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5031634" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00rs6vg23.json b/v1.49/v1/00rs6vg23.json new file mode 100644 index 000000000..5d266c1d7 --- /dev/null +++ b/v1.49/v1/00rs6vg23.json @@ -0,0 +1,153 @@ +{ + "id": "https://ror.org/00rs6vg23", + "name": "The Ohio State University", + "email_address": null, + "ip_addresses": [], + "established": 1870, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Muscle Health and Neuromuscular Disorders", + "type": "Child", + "id": "https://ror.org/00n9sps80" + }, + { + "label": "The Ohio State University Newark", + "type": "Child", + "id": "https://ror.org/01r8m0a35" + }, + { + "label": "The Ohio State University at Lima", + "type": "Child", + "id": "https://ror.org/00qa31321" + }, + { + "label": "The Ohio State University at Mansfield", + "type": "Child", + "id": "https://ror.org/05h8s0v03" + }, + { + "label": "The Ohio State University at Marion", + "type": "Child", + "id": "https://ror.org/03646q924" + }, + { + "label": "University System of Ohio", + "type": "Parent", + "id": "https://ror.org/0561zqn56" + }, + { + "label": "The Ohio State University Comprehensive Cancer Center – Arthur G. James Cancer Hospital and Richard J. Solove Research Institute", + "type": "Related", + "id": "https://ror.org/028t46f04" + }, + { + "label": "Nationwide Children's Hospital", + "type": "Related", + "id": "https://ror.org/003rfsp33" + }, + { + "label": "Ohio State University Hospital", + "type": "Related", + "id": "https://ror.org/020yh1f96" + }, + { + "label": "The Ohio State University Wexner Medical Center", + "type": "Related", + "id": "https://ror.org/00c01js51" + }, + { + "label": "Byrd Polar and Climate Research Center", + "type": "Child", + "id": "https://ror.org/030e1gk87" + } + ], + "addresses": [ + { + "lat": 39.96118, + "lng": -82.99879, + "state": null, + "state_code": null, + "city": "Columbus", + "geonames_city": { + "id": 4509177, + "city": "Columbus", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.osu.edu/" + ], + "aliases": [], + "acronyms": [ + "OSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ohio_State_University", + "labels": [ + { + "label": "Universidad Estatal de Ohio", + "iso639": "es" + }, + { + "label": "Université d'État de l'Ohio", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.261331.4", + "preferred": "grid.261331.4" + }, + "ISNI": { + "all": [ + "0000 0001 2285 7943" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q309331" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00rwjvc96.json b/v1.49/v1/00rwjvc96.json new file mode 100644 index 000000000..5af28ddd1 --- /dev/null +++ b/v1.49/v1/00rwjvc96.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/00rwjvc96", + "name": "Center for Environmental Economics - Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Institut Agro Rennes-Angers", + "type": "Parent", + "id": "https://ror.org/01s3fs709" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cee-m.fr" + ], + "aliases": [], + "acronyms": [ + "CEE-M" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre d'Economie de l'Environnement - Montpellier", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52605558" + ], + "preferred": "Q52605558" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00rydyx93.json b/v1.49/v1/00rydyx93.json new file mode 100644 index 000000000..af4841a02 --- /dev/null +++ b/v1.49/v1/00rydyx93.json @@ -0,0 +1,689 @@ +{ + "id": "https://ror.org/00rydyx93", + "name": "Institut des Sciences Biologiques", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "Child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Laboratoire de Biochimie", + "type": "Child", + "id": "https://ror.org/01c6vgf77" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Intégrative des Organismes Marins", + "type": "Child", + "id": "https://ror.org/03wg93s13" + }, + { + "label": "Biologie Tissulaire et Ingénierie Thérapeutique", + "type": "Child", + "id": "https://ror.org/04fqvqs63" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bioénergétique et Ingénierie des Protéines", + "type": "Child", + "id": "https://ror.org/0060xzr04" + }, + { + "label": "Laboratoire Plasticité du Cerveau", + "type": "Child", + "id": "https://ror.org/03padqz24" + }, + { + "label": "Centre de recherche cerveau et cognition", + "type": "Child", + "id": "https://ror.org/04fhrs205" + }, + { + "label": "Centre de Recherche en Cancérologie de Lyon", + "type": "Child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Center for Infection and Immunity of Lille", + "type": "Child", + "id": "https://ror.org/00dyt5s15" + }, + { + "label": "Centre Interdisciplinaire de Recherche en Biologie", + "type": "Child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Centre de Recherche sur l'Inflammation", + "type": "Child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "Child", + "id": "https://ror.org/02dpqcy73" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "Child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "Child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Résonance Magnétique des Systèmes Biologiques", + "type": "Child", + "id": "https://ror.org/01mts2g59" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "Child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "Child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Centre de Recherche de Biochimie Macromoléculaire", + "type": "Child", + "id": "https://ror.org/01xpc6869" + }, + { + "label": "Institut des Sciences Cognitives Marc Jeannerod", + "type": "Child", + "id": "https://ror.org/02he5dz58" + }, + { + "label": "Contrôle de la Réponse Immune B et Lymphoproliférations", + "type": "Child", + "id": "https://ror.org/02zh2vx86" + }, + { + "label": "Department of Genomes & Genetics", + "type": "Child", + "id": "https://ror.org/05etkex69" + }, + { + "label": "Department of Virology", + "type": "Child", + "id": "https://ror.org/01xx2ne27" + }, + { + "label": "Institut de Biologie du Développement Marseille", + "type": "Child", + "id": "https://ror.org/02me5cy06" + }, + { + "label": "Gènes, synapses et cognition", + "type": "Child", + "id": "https://ror.org/027atwb90" + }, + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "Child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Laboratory of Pathogens and Host Immunity", + "type": "Child", + "id": "https://ror.org/00rt27171" + }, + { + "label": "Epigénétique et Destin Cellulaire", + "type": "Child", + "id": "https://ror.org/03dbsav41" + }, + { + "label": "Evolution des Régulations Endocriniennes", + "type": "Child", + "id": "https://ror.org/03bpcga21" + }, + { + "label": "Expression Génétique Microbienne", + "type": "Child", + "id": "https://ror.org/05t5n2z26" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "Child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Immunologie et Neurogénétique Expérimentales et Moléculaires", + "type": "Child", + "id": "https://ror.org/01mhd9b84" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Cochin", + "type": "Child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Jacques Monod", + "type": "Child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "Child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "Child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "Child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Biochimie et Génétique Cellulaires", + "type": "Child", + "id": "https://ror.org/048xwe611" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "Child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie Physico-Chimique", + "type": "Child", + "id": "https://ror.org/01na0pb61" + }, + { + "label": "Institut de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Biologie et de Chimie des Protéines", + "type": "Child", + "id": "https://ror.org/0019x5d05" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut de Génétique Moléculaire de Montpellier", + "type": "Child", + "id": "https://ror.org/02785qs39" + }, + { + "label": "Institut de Microbiologie de la Méditerranée", + "type": "Child", + "id": "https://ror.org/012t91r40" + }, + { + "label": "Institut de Neurophysiopathologie", + "type": "Child", + "id": "https://ror.org/00w2q5j98" + }, + { + "label": "Institut de Neurosciences Cognitives et Intégratives d’Aquitaine", + "type": "Child", + "id": "https://ror.org/01a6zh966" + }, + { + "label": "Institut de Neurosciences de la Timone", + "type": "Child", + "id": "https://ror.org/043hw6336" + }, + { + "label": "Institut de Pharmacologie Moléculaire et Cellulaire", + "type": "Child", + "id": "https://ror.org/05k4ema52" + }, + { + "label": "Institut des Sciences du Mouvement Etienne-Jules Marey", + "type": "Child", + "id": "https://ror.org/03tncyc93" + }, + { + "label": "Institut des Sciences du Végétal", + "type": "Child", + "id": "https://ror.org/03aqj2f62" + }, + { + "label": "Institut du Cerveau", + "type": "Child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Thorax", + "type": "Child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut de Biologie Valrose", + "type": "Child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institut des Neurosciences Cellulaires et Intégratives", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institut de génétique et de développement de Rennes", + "type": "Child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Institut de génétique et de biologie moléculaire et cellulaire", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institut de Génétique Humaine", + "type": "Child", + "id": "https://ror.org/05ee10k25" + }, + { + "label": "Institut de Myologie", + "type": "Child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institut de Pharmacologie et de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/016zvc994" + }, + { + "label": "Institut de Recherche sur le Cancer et le Vieillissement de Nice", + "type": "Child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "Integrated Genomics and Metabolic Diseases Modeling", + "type": "Child", + "id": "https://ror.org/0300mzg60" + }, + { + "label": "Institut Interdisciplinaire de Neuroscience", + "type": "Child", + "id": "https://ror.org/032j53342" + }, + { + "label": "Centre International de Recherche en Infectiologie", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Enzymologie et Biochimie Structurales", + "type": "Child", + "id": "https://ror.org/00j1y9t40" + }, + { + "label": "Laboratoire de Biogenèse Membranaire", + "type": "Child", + "id": "https://ror.org/02nthwg11" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "Child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "Child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire de Biologie du Développement de Villefranche-sur-Mer", + "type": "Child", + "id": "https://ror.org/04hke8425" + }, + { + "label": "Laboratoire de Biologie et Pharmacologie Appliquée", + "type": "Child", + "id": "https://ror.org/03njrcx45" + }, + { + "label": "Laboratoire de Chimie Bactérienne", + "type": "Child", + "id": "https://ror.org/057zme681" + }, + { + "label": "Laboratoire de Microbiologie et Génétique Moléculaires", + "type": "Child", + "id": "https://ror.org/04rrj3a80" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire de PhysioMédecine Moléculaire", + "type": "Child", + "id": "https://ror.org/00c3ktd57" + }, + { + "label": "Laboratoire de Psychologie Cognitive", + "type": "Child", + "id": "https://ror.org/01rf5x574" + }, + { + "label": "Laboratoire de Psychologie Sociale et Cognitive", + "type": "Child", + "id": "https://ror.org/01t4k8953" + }, + { + "label": "Laboratoire de Recherche en Sciences Végétales", + "type": "Child", + "id": "https://ror.org/047z5as19" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire de Sciences Cognitives et Psycholinguistique", + "type": "Child", + "id": "https://ror.org/05fvhm231" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "Child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire des Systèmes Macromoléculaires et Signalisation", + "type": "Child", + "id": "https://ror.org/053qdb191" + }, + { + "label": "Laboratoire des Systèmes Perceptifs", + "type": "Child", + "id": "https://ror.org/030za3c40" + }, + { + "label": "Laboratoire d'étude de l'apprentissage et du développement", + "type": "Child", + "id": "https://ror.org/04mp4zc06" + }, + { + "label": "Laboratoire de Biologie Computationnelle et Quantitative", + "type": "Child", + "id": "https://ror.org/00pcqj134" + }, + { + "label": "Laboratoire de Biologie Intégrative des Modèles Marins", + "type": "Child", + "id": "https://ror.org/001c8pb03" + }, + { + "label": "Laboratoire de Biologie Moléculaire et Cellulaire des Eucaryotes", + "type": "Child", + "id": "https://ror.org/05mx55f96" + }, + { + "label": "Laboratoire de Biologie Physico-Chimique des Protéines Membranaires", + "type": "Child", + "id": "https://ror.org/03nr8xh07" + }, + { + "label": "Centre de Recherche en Neurosciences de Lyon", + "type": "Child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Laboratoire de Microbiologie, Adaptation et Pathogénie", + "type": "Child", + "id": "https://ror.org/03p3f6k20" + }, + { + "label": "Modélisation et Ingénierie des Systèmes Complexes Biologiques pour le Diagnostic", + "type": "Child", + "id": "https://ror.org/056mmjd70" + }, + { + "label": "Institut des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/001695n52" + }, + { + "label": "Dynamique du noyau", + "type": "Child", + "id": "https://ror.org/04team556" + }, + { + "label": "Génomes, biologie cellulaire et thérapeutiques", + "type": "Child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Physique des Cellules et Cancers", + "type": "Child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "Biologie du chloroplaste et perception de la lumière chez les micro-algues", + "type": "Child", + "id": "https://ror.org/001r32c80" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "Child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Physiologie et Médecine Expérimentale du Coeur et des Muscles", + "type": "Child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Laboratoire Génome et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/038207k30" + }, + { + "label": "Centre de Recherches sur la Cognition Animale", + "type": "Child", + "id": "https://ror.org/0111s2360" + }, + { + "label": "Centre de Recherches sur la Cognition et l'Apprentissage", + "type": "Child", + "id": "https://ror.org/01sdp1y98" + }, + { + "label": "Structural and Molecular Basis of Infectious Systems", + "type": "Child", + "id": "https://ror.org/00jv0wy06" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "Child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "Child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "Child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "Child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "UMS BioCore", + "type": "Child", + "id": "https://ror.org/04r5nwv94" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.81568, + "lng": 2.38487, + "state": null, + "state_code": null, + "city": "Ivry-sur-Seine", + "geonames_city": { + "id": 3012621, + "city": "Ivry-sur-Seine", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnrs.fr/insb/" + ], + "aliases": [], + "acronyms": [ + "INSB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Biological Sciences", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.456999.e", + "preferred": "grid.456999.e" + }, + "ISNI": { + "all": [ + "0000 0004 0387 060X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q24935881" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00sbbhq57.json b/v1.49/v1/00sbbhq57.json new file mode 100644 index 000000000..bc382d18d --- /dev/null +++ b/v1.49/v1/00sbbhq57.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00sbbhq57", + "name": "Jilin Business and Technology College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.88, + "lng": 125.32278, + "state": null, + "state_code": null, + "city": "Changchun", + "geonames_city": { + "id": 2038180, + "city": "Changchun", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.jlbtc.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E5%90%89%E6%9E%97%E5%B7%A5%E5%95%86%E5%AD%A6%E9%99%A2", + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1797 2236" + ], + "preferred": "0000 0004 1797 2236" + }, + "Wikidata": { + "all": [ + "Q56271958" + ], + "preferred": "Q56271958" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00skw9v43.json b/v1.49/v1/00skw9v43.json new file mode 100644 index 000000000..0d29cd49f --- /dev/null +++ b/v1.49/v1/00skw9v43.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/00skw9v43", + "name": "Laboratoire des signaux et systèmes", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://l2s.centralesupelec.fr" + ], + "aliases": [ + "Laboratoire des signaux & systèmes" + ], + "acronyms": [ + "L2S" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503366.5", + "preferred": "grid.503366.5" + }, + "ISNI": { + "all": [ + "0000 0004 0410 8422" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51784646" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00t3fpp34.json b/v1.49/v1/00t3fpp34.json new file mode 100644 index 000000000..6381cdb48 --- /dev/null +++ b/v1.49/v1/00t3fpp34.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/00t3fpp34", + "name": "Laboratoire d'Informatique, de Modélisation et d'Optimisation des Systèmes", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "Mines Saint-Étienne", + "type": "Parent", + "id": "https://ror.org/05a1dws80" + }, + { + "label": "Sigma Clermont", + "type": "Parent", + "id": "https://ror.org/02n5evf44" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://limos.fr/" + ], + "aliases": [], + "acronyms": [ + "LIMOS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Computing, Modelling and Optimization of the Systems", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503317.3", + "preferred": "grid.503317.3" + }, + "ISNI": { + "all": [ + "0000 0000 9971 4898" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51783797" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00tabsj08.json b/v1.49/v1/00tabsj08.json new file mode 100644 index 000000000..1c939150b --- /dev/null +++ b/v1.49/v1/00tabsj08.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00tabsj08", + "name": "Istanbul Topkapi University", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Istanbul Topkapi University", + "type": "Successor", + "id": "https://ror.org/00g241p78" + } + ], + "addresses": [ + { + "lat": 41.01384, + "lng": 28.94966, + "state": null, + "state_code": null, + "city": "Istanbul", + "geonames_city": { + "id": 745044, + "city": "Istanbul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.topkapi.edu.tr" + ], + "aliases": [ + "Istanbul Ayvansaray University", + "İstanbul Ayvansaray Üniversitesi" + ], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [ + { + "label": "İstanbul Topkapı Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "GRID": { + "all": "grid.510454.1", + "preferred": "grid.510454.1" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00tf8ca96.json b/v1.49/v1/00tf8ca96.json new file mode 100644 index 000000000..52fc2e5d5 --- /dev/null +++ b/v1.49/v1/00tf8ca96.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00tf8ca96", + "name": "Musée Curie", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://musee.curie.fr" + ], + "aliases": [ + "Musée Curie - Musée et archives de l'institut du radium Pierre et Marie Curie, Frédéric et Irene Joliot", + "Musée et archives de l'institut du radium Pierre et Marie Curie, Frédéric et Irene Joliot" + ], + "acronyms": [ + "MAIRPMCFIJ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00tfaab58.json b/v1.49/v1/00tfaab58.json new file mode 100644 index 000000000..ea23890df --- /dev/null +++ b/v1.49/v1/00tfaab58.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00tfaab58", + "name": "Yonsei University College of Dentistry", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Yonsei University", + "type": "Parent", + "id": "https://ror.org/01wjejq96" + } + ], + "addresses": [ + { + "lat": 37.56087, + "lng": 126.94037, + "state": null, + "state_code": null, + "city": "Sinchon-dong", + "geonames_city": { + "id": 8692699, + "city": "Sinchon-dong", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dentistry.yonsei.ac.kr" + ], + "aliases": [], + "acronyms": [ + "YUCD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0647 4215" + ], + "preferred": "0000 0004 0647 4215" + }, + "Wikidata": { + "all": [ + "Q87739027" + ], + "preferred": "Q87739027" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00tt79z10.json b/v1.49/v1/00tt79z10.json new file mode 100644 index 000000000..c9f9320e6 --- /dev/null +++ b/v1.49/v1/00tt79z10.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00tt79z10", + "name": "Unité de Mécanique de Lille - Joseph Boussinesq", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "École Centrale de Lille", + "type": "Parent", + "id": "https://ror.org/01x441g73" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uml.univ-lille.fr" + ], + "aliases": [ + "Unité de Mécanique de Lille" + ], + "acronyms": [ + "UML" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00twdhr48.json b/v1.49/v1/00twdhr48.json new file mode 100644 index 000000000..251c9e969 --- /dev/null +++ b/v1.49/v1/00twdhr48.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00twdhr48", + "name": "Korea Hydro and Nuclear Power (Korea)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.84278, + "lng": 129.21167, + "state": null, + "state_code": null, + "city": "Gyeongju", + "geonames_city": { + "id": 1841603, + "city": "Gyeongju", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.khnp.co.kr" + ], + "aliases": [ + "Korea Hydro & Nuclear Power", + "Korea Hydro & Nuclear Power Co Ltd", + "Korea Hydro & Nuclear Power Co.", + "Korea Hydro and Nuclear Power Corporation", + "Korea Hydro and Nuclear Power Corporation Co., Ltd" + ], + "acronyms": [ + "KHNP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Korea_Hydro_%26_Nuclear_Power", + "labels": [ + { + "label": "한국수력원자력", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q6431646" + ], + "preferred": "Q6431646" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00v0ean07.json b/v1.49/v1/00v0ean07.json new file mode 100644 index 000000000..f517b987c --- /dev/null +++ b/v1.49/v1/00v0ean07.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/00v0ean07", + "name": "Société Française de Parodontologie et d’Implantologie Orale", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.21725, + "lng": -1.55336, + "state": null, + "state_code": null, + "city": "Nantes", + "geonames_city": { + "id": 2990969, + "city": "Nantes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sfparo.org/" + ], + "aliases": [], + "acronyms": [ + "SFPIO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French Society of Periodontology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.453779.b", + "preferred": "grid.453779.b" + }, + "ISNI": { + "all": [ + "0000 0004 5905 2681" + ], + "preferred": "0000 0004 5905 2681" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00v416254.json b/v1.49/v1/00v416254.json new file mode 100644 index 000000000..d4c61c0d2 --- /dev/null +++ b/v1.49/v1/00v416254.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/00v416254", + "name": "Posts and Telecommunications Institute of Technology - Ho Chi Minh City", + "email_address": null, + "ip_addresses": [], + "established": 1953, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.82302, + "lng": 106.62965, + "state": null, + "state_code": null, + "city": "Ho Chi Minh City", + "geonames_city": { + "id": 1566083, + "city": "Ho Chi Minh City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ptithcm.edu.vn" + ], + "aliases": [], + "acronyms": [ + "PTITHCM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Học Viện Công Nghệ Bưu Chính Viễn Thông Cơ sở TP. Hồ Chí Minh", + "iso639": "vi" + } + ], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": { + "GRID": { + "all": "grid.512485.f", + "preferred": "grid.512485.f" + }, + "ISNI": { + "all": [ + "0000 0004 0386 7531" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10771881" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00ve48a86.json b/v1.49/v1/00ve48a86.json new file mode 100644 index 000000000..25961f2b8 --- /dev/null +++ b/v1.49/v1/00ve48a86.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00ve48a86", + "name": "Urban Studies Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.86515, + "lng": -4.25763, + "state": null, + "state_code": null, + "city": "Glasgow", + "geonames_city": { + "id": 2648579, + "city": "Glasgow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.urbanstudiesfoundation.org" + ], + "aliases": [], + "acronyms": [ + "USF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Urban_Studies_Foundation", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0630 7596" + ], + "preferred": "0000 0005 0630 7596" + }, + "Wikidata": { + "all": [ + "Q55636782" + ], + "preferred": "Q55636782" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00vn0zc62.json b/v1.49/v1/00vn0zc62.json new file mode 100644 index 000000000..40e9b5f3b --- /dev/null +++ b/v1.49/v1/00vn0zc62.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/00vn0zc62", + "name": "Géosciences Rennes", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "Parent", + "id": "https://ror.org/05pwkex33" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://geosciences.univ-rennes.fr" + ], + "aliases": [ + "UMR Géosciences Rennes" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462934.e", + "preferred": "grid.462934.e" + }, + "ISNI": { + "all": [ + "0000 0001 1482 4447" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261603" + ], + "preferred": "Q30261603" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00w49ww42.json b/v1.49/v1/00w49ww42.json new file mode 100644 index 000000000..1c0d9c1a0 --- /dev/null +++ b/v1.49/v1/00w49ww42.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00w49ww42", + "name": "Akrokerri College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Kwame Nkrumah University of Science and Technology", + "type": "Related", + "id": "https://ror.org/00cb23x68" + } + ], + "addresses": [ + { + "lat": 6.38679, + "lng": -1.82456, + "state": null, + "state_code": null, + "city": "Akrokeri", + "geonames_city": { + "id": 11812998, + "city": "Akrokeri", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.akrotco.edu.gh" + ], + "aliases": [ + "Adansi University", + "Akrokerri Teacher Training College", + "Akrokerri Training College" + ], + "acronyms": [ + "AKROTCOE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Akrokerri_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996957" + ], + "preferred": "Q46996957" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00w67e447.json b/v1.49/v1/00w67e447.json new file mode 100644 index 000000000..649dc76cb --- /dev/null +++ b/v1.49/v1/00w67e447.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00w67e447", + "name": "Laboratoire de Physique Théorique et Modèles Statistiques", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lptms.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "LPTMS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Theoretical Physics and Statistical Models", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503330.6", + "preferred": "grid.503330.6" + }, + "ISNI": { + "all": [ + "0000 0004 0366 8268" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00wgpgb78.json b/v1.49/v1/00wgpgb78.json new file mode 100644 index 000000000..c625d3461 --- /dev/null +++ b/v1.49/v1/00wgpgb78.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00wgpgb78", + "name": "John Adams Institute for Accelerator Science", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Oxford", + "type": "Parent", + "id": "https://ror.org/052gg0110" + }, + { + "label": "Royal Holloway University of London", + "type": "Parent", + "id": "https://ror.org/04g2vpn86" + }, + { + "label": "Imperial College London", + "type": "Parent", + "id": "https://ror.org/041kmwe10" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://adams-institute.ac.uk" + ], + "aliases": [], + "acronyms": [ + "JAI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q106485520" + ], + "preferred": "Q106485520" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00wh4bp03.json b/v1.49/v1/00wh4bp03.json new file mode 100644 index 000000000..331848dae --- /dev/null +++ b/v1.49/v1/00wh4bp03.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00wh4bp03", + "name": "Université Montpellier 2", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Successor", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Montpellier 2 University", + "Montpellier II University", + "Université de Montpellier II" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [ + { + "label": "University of Montpellier 2", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2097 0141" + ], + "preferred": "0000 0001 2097 0141" + }, + "Wikidata": { + "all": [ + "Q902688" + ], + "preferred": "Q902688" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00wqczk30.json b/v1.49/v1/00wqczk30.json new file mode 100644 index 000000000..b1b60ac91 --- /dev/null +++ b/v1.49/v1/00wqczk30.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/00wqczk30", + "name": "Pasteur Institute of Iran", + "email_address": null, + "ip_addresses": [], + "established": 1921, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://en.pasteur.ac.ir/" + ], + "aliases": [], + "acronyms": [ + "IPI", + "PII" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pasteur_Institute_of_Iran", + "labels": [ + { + "label": "Institut Pasteur D'Iran", + "iso639": "fr" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "GRID": { + "all": "grid.420169.8", + "preferred": "grid.420169.8" + }, + "ISNI": { + "all": [ + "0000 0000 9562 2611" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q17013593" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00wwxk695.json b/v1.49/v1/00wwxk695.json new file mode 100644 index 000000000..da46b8438 --- /dev/null +++ b/v1.49/v1/00wwxk695.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/00wwxk695", + "name": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "CY Cergy Paris Université", + "type": "Parent", + "id": "https://ror.org/043htjv09" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Parent", + "id": "https://ror.org/00e96v939" + } + ], + "addresses": [ + { + "lat": 48.63389, + "lng": 2.44417, + "state": null, + "state_code": null, + "city": "Évry-Courcouronnes", + "geonames_city": { + "id": 6454878, + "city": "Évry-Courcouronnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lambe.univ-evry.fr/en/accueil.html" + ], + "aliases": [], + "acronyms": [ + "LAMBE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503296.b", + "preferred": "grid.503296.b" + }, + "ISNI": { + "all": [ + "0000 0004 0368 7602" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51779965" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00x5jmr79.json b/v1.49/v1/00x5jmr79.json new file mode 100644 index 000000000..47a7c6351 --- /dev/null +++ b/v1.49/v1/00x5jmr79.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/00x5jmr79", + "name": "Structure et Propriétés d'Architectures Moléculaires", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://inac.cea.fr/spram/" + ], + "aliases": [], + "acronyms": [ + "SPrAM" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464074.5", + "preferred": "grid.464074.5" + }, + "ISNI": { + "all": [ + "0000 0004 0384 8293" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00xbw4a70.json b/v1.49/v1/00xbw4a70.json new file mode 100644 index 000000000..7766462dd --- /dev/null +++ b/v1.49/v1/00xbw4a70.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00xbw4a70", + "name": "Instituto Tecnólogico de La Laguna", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "National Technological Institute of Mexico", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 25.54389, + "lng": -103.41898, + "state": null, + "state_code": null, + "city": "Torreón", + "geonames_city": { + "id": 3981254, + "city": "Torreón", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.itlalaguna.edu.mx/" + ], + "aliases": [ + "TecNM de La Laguna", + "Tecnológico Nacional de México de La Laguna" + ], + "acronyms": [ + "ITL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.466836.9", + "preferred": "grid.466836.9" + }, + "ISNI": { + "all": [ + "0000 0004 0369 6330" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00xc55v17.json b/v1.49/v1/00xc55v17.json new file mode 100644 index 000000000..3d78fecd7 --- /dev/null +++ b/v1.49/v1/00xc55v17.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/00xc55v17", + "name": "Génomique Métabolique du Genoscope", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Parent", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.63389, + "lng": 2.44417, + "state": null, + "state_code": null, + "city": "Évry-Courcouronnes", + "geonames_city": { + "id": 6454878, + "city": "Évry-Courcouronnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://jacob.cea.fr/drf/ifrancoisjacob/Pages/Departements/Genoscope/Les-laboratoires/UMR-8030-Genomique-Metabolique-du-Genoscope.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503410.3", + "preferred": "grid.503410.3" + }, + "ISNI": { + "all": [ + "0000 0004 0370 4353" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51785052" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00xdgaz28.json b/v1.49/v1/00xdgaz28.json new file mode 100644 index 000000000..6f597871e --- /dev/null +++ b/v1.49/v1/00xdgaz28.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00xdgaz28", + "name": "Humanities Texas", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 30.26715, + "lng": -97.74306, + "state": null, + "state_code": null, + "city": "Austin", + "geonames_city": { + "id": 4671654, + "city": "Austin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.humanitiestexas.org/" + ], + "aliases": [], + "acronyms": [ + "TCH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446937.b", + "preferred": "grid.446937.b" + }, + "ISNI": { + "all": [ + "0000 0000 9893 301X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00xffm983.json b/v1.49/v1/00xffm983.json new file mode 100644 index 000000000..270337a99 --- /dev/null +++ b/v1.49/v1/00xffm983.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00xffm983", + "name": "Dynamique Musculaire et Métabolisme", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www6.montpellier.inra.fr/dmem/" + ], + "aliases": [], + "acronyms": [ + "DMEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783648" + ], + "preferred": "Q51783648" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00y1ekh28.json b/v1.49/v1/00y1ekh28.json new file mode 100644 index 000000000..484be5468 --- /dev/null +++ b/v1.49/v1/00y1ekh28.json @@ -0,0 +1,139 @@ +{ + "id": "https://ror.org/00y1ekh28", + "name": "University of Education, Winneba", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "BlueCrest University College", + "type": "Child", + "id": "https://ror.org/03cv2n667" + }, + { + "label": "University College of Management Studies", + "type": "Child", + "id": "https://ror.org/01jthvx19" + }, + { + "label": "Presbyterian College of Education", + "type": "Related", + "id": "https://ror.org/00p4n8p47" + }, + { + "label": "Komenda College of Education", + "type": "Related", + "id": "https://ror.org/058cpk191" + }, + { + "label": "Wiawso College of Education", + "type": "Related", + "id": "https://ror.org/01z1ame92" + }, + { + "label": "Bagabaga College of Education", + "type": "Related", + "id": "https://ror.org/05h8wtz16" + }, + { + "label": "Agogo Presbyterian Women's College of Education", + "type": "Related", + "id": "https://ror.org/05kstpb17" + }, + { + "label": "St. Louis College of Education", + "type": "Related", + "id": "https://ror.org/0187thv39" + }, + { + "label": "Bia Lamplighter College of Education", + "type": "Related", + "id": "https://ror.org/01569q067" + }, + { + "label": "Methodist College of Education", + "type": "Related", + "id": "https://ror.org/01erkkd87" + } + ], + "addresses": [ + { + "lat": 5.35113, + "lng": -0.62313, + "state": null, + "state_code": null, + "city": "Winneba", + "geonames_city": { + "id": 2294034, + "city": "Winneba", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uew.edu.gh/" + ], + "aliases": [], + "acronyms": [ + "UEW" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Education,_Winneba", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.442315.5", + "preferred": "grid.442315.5" + }, + "ISNI": { + "all": [ + "0000 0004 0441 5457" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1557172" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00yczwp93.json b/v1.49/v1/00yczwp93.json new file mode 100644 index 000000000..97fb44c4d --- /dev/null +++ b/v1.49/v1/00yczwp93.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00yczwp93", + "name": "Laboratoire en Sciences et Technologies de l'Information Géographique pour la ville intelligente et les territoires durables", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École des Ingénieurs de la Ville de Paris", + "type": "Parent", + "id": "https://ror.org/038k8pw28" + }, + { + "label": "Ecole Nationale des Sciences Géographiques", + "type": "Parent", + "id": "https://ror.org/03r3n3715" + } + ], + "addresses": [ + { + "lat": 48.83864, + "lng": 2.41579, + "state": null, + "state_code": null, + "city": "Saint-Mandé", + "geonames_city": { + "id": 2978621, + "city": "Saint-Mandé", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umr-lastig.fr" + ], + "aliases": [ + "Laboratory on Geographic Information Science for sustainable development and smart cities" + ], + "acronyms": [ + "LASTIG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00yp7f985.json b/v1.49/v1/00yp7f985.json new file mode 100644 index 000000000..78d423b3c --- /dev/null +++ b/v1.49/v1/00yp7f985.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00yp7f985", + "name": "The Federal Polytechnic Offa", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 8.14911, + "lng": 4.72074, + "state": null, + "state_code": null, + "city": "Offa", + "geonames_city": { + "id": 2327879, + "city": "Offa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fedpoffaonline.edu.ng" + ], + "aliases": [ + "Federal Polytechnic, Offa" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_Polytechnic%2C_Offa", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q22569412" + ], + "preferred": "Q22569412" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00yypjb24.json b/v1.49/v1/00yypjb24.json new file mode 100644 index 000000000..9d81f33f0 --- /dev/null +++ b/v1.49/v1/00yypjb24.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00yypjb24", + "name": "Dambai College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 8.06616, + "lng": 0.17947, + "state": null, + "state_code": null, + "city": "Dambai", + "geonames_city": { + "id": 2301424, + "city": "Dambai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dace.edu.gh" + ], + "aliases": [ + "Dambai Training College" + ], + "acronyms": [ + "DACE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Dambai_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0598 6366" + ], + "preferred": "0000 0004 0598 6366" + }, + "Wikidata": { + "all": [ + "Q46996962" + ], + "preferred": "Q46996962" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00z54nq84.json b/v1.49/v1/00z54nq84.json new file mode 100644 index 000000000..42af5dee2 --- /dev/null +++ b/v1.49/v1/00z54nq84.json @@ -0,0 +1,318 @@ +{ + "id": "https://ror.org/00z54nq84", + "name": "Institut de Physique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire Adhésion et inflammation", + "type": "Child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Centre de Physique Théorique", + "type": "Child", + "id": "https://ror.org/02bsd9p69" + }, + { + "label": "Centre Lasers Intenses et Applications", + "type": "Child", + "id": "https://ror.org/02910d597" + }, + { + "label": "Centre de Physique Théorique", + "type": "Child", + "id": "https://ror.org/052bbtn31" + }, + { + "label": "Centre de Recherche sur l'Hétéro-Epitaxie et ses Applications", + "type": "Child", + "id": "https://ror.org/03y8mpv07" + }, + { + "label": "Centre de Recherche sur les Ions, les Matériaux et la Photonique", + "type": "Child", + "id": "https://ror.org/02y0gk295" + }, + { + "label": "Centre d’Élaboration de Matériaux et d’Études Structurales", + "type": "Child", + "id": "https://ror.org/03kwnqq69" + }, + { + "label": "Laboratoire National des Champs Magnétiques Intenses", + "type": "Child", + "id": "https://ror.org/045ktmd28" + }, + { + "label": "Groupe d’Étude de la Matière Condensée", + "type": "Child", + "id": "https://ror.org/01wrng808" + }, + { + "label": "Groupe de Physique des Matériaux", + "type": "Child", + "id": "https://ror.org/03c2k2909" + }, + { + "label": "Institut Lumière Matière", + "type": "Child", + "id": "https://ror.org/0323bey33" + }, + { + "label": "Institut Néel", + "type": "Child", + "id": "https://ror.org/04dbzz632" + }, + { + "label": "Institut de Physique Théorique", + "type": "Child", + "id": "https://ror.org/058rvd314" + }, + { + "label": "Institut de Physique de Rennes", + "type": "Child", + "id": "https://ror.org/022b0h879" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "Child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut des Matériaux, de Microélectronique et des Nanosciences de Provence", + "type": "Child", + "id": "https://ror.org/0238zyh04" + }, + { + "label": "Institut de minéralogie, de physique des matériaux et de cosmochimie", + "type": "Child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "Interfaces, Confinement, Matériaux et Nanostructures", + "type": "Child", + "id": "https://ror.org/008h1f725" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "Child", + "id": "https://ror.org/01h14ww21" + }, + { + "label": "Laboratoire Charles Coulomb", + "type": "Child", + "id": "https://ror.org/02ftce284" + }, + { + "label": "Laboratoire Collisions Agrégats Réactivité", + "type": "Child", + "id": "https://ror.org/0416g8z79" + }, + { + "label": "Laboratoire Interdisciplinaire Carnot de Bourgogne", + "type": "Child", + "id": "https://ror.org/02b6c1039" + }, + { + "label": "Laboratoire Jean Perrin", + "type": "Child", + "id": "https://ror.org/01ghvgs84" + }, + { + "label": "Laboratoire Léon Brillouin", + "type": "Child", + "id": "https://ror.org/029rmm934" + }, + { + "label": "Laboratoire Ondes et Matière d'Aquitaine", + "type": "Child", + "id": "https://ror.org/05qsp5m64" + }, + { + "label": "Laboratoire Photonique, Numérique et Nanosciences", + "type": "Child", + "id": "https://ror.org/03vdg7e33" + }, + { + "label": "Laboratoire d'Optique Appliquée", + "type": "Child", + "id": "https://ror.org/03czns913" + }, + { + "label": "Laboratoire d'Étude des Microstructures", + "type": "Child", + "id": "https://ror.org/03nqvpf75" + }, + { + "label": "Laboratoire de Cristallographie et Sciences des Matériaux", + "type": "Child", + "id": "https://ror.org/04310tc15" + }, + { + "label": "Laboratoire de Physique Théorique", + "type": "Child", + "id": "https://ror.org/01w0hda30" + }, + { + "label": "Laboratoire de Physique de l'ENS de Lyon", + "type": "Child", + "id": "https://ror.org/00w5ay796" + }, + { + "label": "Laboratoire de Physique des Lasers, Atomes et Molécules", + "type": "Child", + "id": "https://ror.org/04e89s906" + }, + { + "label": "Laboratoire de Physique et Chimie des Nano-Objets", + "type": "Child", + "id": "https://ror.org/042xmz674" + }, + { + "label": "Laboratoire de Physique et Modélisation des Milieux Condensés", + "type": "Child", + "id": "https://ror.org/02mc6qk71" + }, + { + "label": "Laboratoire Matériaux et Phénomènes Quantiques", + "type": "Child", + "id": "https://ror.org/02p3et738" + }, + { + "label": "Laboratoire d'Optique et Biosciences", + "type": "Child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratoire de Cristallographie, Résonance Magnétique et Modélisations", + "type": "Child", + "id": "https://ror.org/017je3b10" + }, + { + "label": "Laboratoire de Physique et d’Étude des Matériaux", + "type": "Child", + "id": "https://ror.org/00a72jq18" + }, + { + "label": "Laboratoire de Physique Théorique de la Matière Condensée", + "type": "Child", + "id": "https://ror.org/04zaaa143" + }, + { + "label": "Laboratoire de Physique Théorique et Hautes Energies", + "type": "Child", + "id": "https://ror.org/02mph9k76" + }, + { + "label": "Laboratoire de physique des lasers", + "type": "Child", + "id": "https://ror.org/03n3yg876" + }, + { + "label": "Groupe de Spectrométrie Moléculaire et Atmosphérique", + "type": "Child", + "id": "https://ror.org/03vyzg221" + }, + { + "label": "Institut des NanoSciences de Paris", + "type": "Child", + "id": "https://ror.org/03t2f0a12" + }, + { + "label": "Service de Physique de l'État Condensé", + "type": "Child", + "id": "https://ror.org/0247p4w70" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Surface du Verre et Interfaces", + "type": "Child", + "id": "https://ror.org/04kadgz77" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnrs.fr/inp/" + ], + "aliases": [], + "acronyms": [ + "INP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457018.f", + "preferred": "grid.457018.f" + }, + "ISNI": { + "all": [ + "0000 0000 8863 6724" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00za3wc71.json b/v1.49/v1/00za3wc71.json new file mode 100644 index 000000000..634053274 --- /dev/null +++ b/v1.49/v1/00za3wc71.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00za3wc71", + "name": "Klinik und Poliklinik für Hautkrankheiten", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www2.medizin.uni-greifswald.de/index.php?id=880" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.491939.f", + "preferred": "grid.491939.f" + }, + "Wikidata": { + "all": [ + "Q50038670" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00za68765.json b/v1.49/v1/00za68765.json new file mode 100644 index 000000000..0413a154a --- /dev/null +++ b/v1.49/v1/00za68765.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/00za68765", + "name": "Centro Universitário Estácio de Santa Catarina", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -28.21171, + "lng": -49.1632, + "state": null, + "state_code": null, + "city": "São José", + "geonames_city": { + "id": 3448742, + "city": "São José", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://portal.estacio.br/unidades/centro-universit%C3%A1rio-est%C3%A1cio-de-santa-catarina/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/00zay3w86.json b/v1.49/v1/00zay3w86.json new file mode 100644 index 000000000..20cde2812 --- /dev/null +++ b/v1.49/v1/00zay3w86.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00zay3w86", + "name": "Centre de Nanosciences et de Nanotechnologies", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.c2n.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "C2N" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre for Nanoscience and Nanotechnology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503099.6", + "preferred": "grid.503099.6" + }, + "Wikidata": { + "all": [ + "Q47520094" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00zhs8v21.json b/v1.49/v1/00zhs8v21.json new file mode 100644 index 000000000..b4322de9d --- /dev/null +++ b/v1.49/v1/00zhs8v21.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00zhs8v21", + "name": "Universidad de Ciego de Ávila", + "email_address": null, + "ip_addresses": [], + "established": 1978, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.84, + "lng": -78.76194, + "state": null, + "state_code": null, + "city": "Ciego de Ávila", + "geonames_city": { + "id": 3564178, + "city": "Ciego de Ávila", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unica.cu" + ], + "aliases": [ + "University of Ciego de Ávila" + ], + "acronyms": [ + "UNICA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Ciego_de_%C3%81vila", + "labels": [ + { + "label": "Universidad de Ciego de Ávila \"Máximo Gómez Báez\"", + "iso639": "es" + } + ], + "country": { + "country_name": "Cuba", + "country_code": "CU" + }, + "external_ids": { + "GRID": { + "all": "grid.441262.7", + "preferred": "grid.441262.7" + }, + "ISNI": { + "all": [ + "0000 0004 0401 8486" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7895266" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00zn13224.json b/v1.49/v1/00zn13224.json new file mode 100644 index 000000000..7374401d9 --- /dev/null +++ b/v1.49/v1/00zn13224.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00zn13224", + "name": "Interactions Hôtes-Pathogènes-Environnements", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut Français de la Mer", + "type": "Parent", + "id": "https://ror.org/00ggqtz82" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 42.69764, + "lng": 2.89541, + "state": null, + "state_code": null, + "city": "Perpignan", + "geonames_city": { + "id": 2987914, + "city": "Perpignan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ihpe.univ-perp.fr" + ], + "aliases": [], + "acronyms": [ + "IHPE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52606249" + ], + "preferred": "Q52606249" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/00zv6sd12.json b/v1.49/v1/00zv6sd12.json new file mode 100644 index 000000000..f4f0ca82f --- /dev/null +++ b/v1.49/v1/00zv6sd12.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00zv6sd12", + "name": "Amerika Samoa Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": -14.27806, + "lng": -170.7025, + "state": null, + "state_code": null, + "city": "Pago Pago", + "geonames_city": { + "id": 5881576, + "city": "Pago Pago", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ashcouncil.org/" + ], + "aliases": [], + "acronyms": [ + "ASHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "American Samoa", + "country_code": "AS" + }, + "external_ids": { + "GRID": { + "all": "grid.450345.3", + "preferred": "grid.450345.3" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/010j2gw05.json b/v1.49/v1/010j2gw05.json new file mode 100644 index 000000000..bc6375c8e --- /dev/null +++ b/v1.49/v1/010j2gw05.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/010j2gw05", + "name": "CEA Fontenay-aux-Roses", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 48.79325, + "lng": 2.29275, + "state": null, + "state_code": null, + "city": "Fontenay-aux-Roses", + "geonames_city": { + "id": 3017924, + "city": "Fontenay-aux-Roses", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://fontenay-aux-roses.cea.fr/far" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457349.8", + "preferred": "grid.457349.8" + }, + "ISNI": { + "all": [ + "0000 0004 0623 0579" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q17066599" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/010nk4c68.json b/v1.49/v1/010nk4c68.json new file mode 100644 index 000000000..86d6b05fb --- /dev/null +++ b/v1.49/v1/010nk4c68.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/010nk4c68", + "name": "Institut de Recherche sur les Composants logiciels et matériels pour l'Information et la Communication Avancée", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ircica.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "IRCICA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4680 0628" + ], + "preferred": "0000 0004 4680 0628" + }, + "Wikidata": { + "all": [ + "Q13848308" + ], + "preferred": "Q13848308" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/010rs2a38.json b/v1.49/v1/010rs2a38.json new file mode 100644 index 000000000..733310f3e --- /dev/null +++ b/v1.49/v1/010rs2a38.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/010rs2a38", + "name": "Département de Chimie Moléculaire", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dcm.univ-grenoble-alpes.fr/departement-chimie-moleculaire" + ], + "aliases": [ + "DCM Grenoble" + ], + "acronyms": [ + "DCM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462682.c", + "preferred": "grid.462682.c" + }, + "ISNI": { + "all": [ + "0000 0004 0384 0515" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/010wkqn50.json b/v1.49/v1/010wkqn50.json new file mode 100644 index 000000000..aea461640 --- /dev/null +++ b/v1.49/v1/010wkqn50.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/010wkqn50", + "name": "Microsoft Research New England (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Microsoft (United States)", + "type": "Parent", + "id": "https://ror.org/00d0nc645" + } + ], + "addresses": [ + { + "lat": 42.3751, + "lng": -71.10561, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 4931972, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.microsoft.com/en-us/research/lab/microsoft-research-new-england/" + ], + "aliases": [], + "acronyms": [ + "MSR-NE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Microsoft Research New England", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/011abem59.json b/v1.49/v1/011abem59.json new file mode 100644 index 000000000..82a5b529d --- /dev/null +++ b/v1.49/v1/011abem59.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/011abem59", + "name": "Évolution, Génomes, Comportement, Écologie", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.egce.universite-paris-saclay.fr" + ], + "aliases": [ + "LEGS", + "Laboratoire Évolution, Génomes, Comportement, Écologie" + ], + "acronyms": [ + "EGCE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463972.d", + "preferred": "grid.463972.d" + }, + "ISNI": { + "all": [ + "0000 0004 0614 7687" + ], + "preferred": "0000 0004 0614 7687" + }, + "Wikidata": { + "all": [ + "Q30262344" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/011xg1225.json b/v1.49/v1/011xg1225.json new file mode 100644 index 000000000..91332199d --- /dev/null +++ b/v1.49/v1/011xg1225.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/011xg1225", + "name": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Centre International deHautes Etudes Agronomiques Méditerranéennes", + "type": "Parent", + "id": "https://ror.org/04abkkz03" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/015q23935" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://umr-moisa.cirad.fr/" + ], + "aliases": [ + "Marchés, Organisations, Institutions et Stratégies d'Acteurs" + ], + "acronyms": [ + "MOISA", + "MoISA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462287.d", + "preferred": "grid.462287.d" + }, + "ISNI": { + "all": [ + "0000 0001 2243 1571" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261418" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01273vs09.json b/v1.49/v1/01273vs09.json new file mode 100644 index 000000000..c97b5e7db --- /dev/null +++ b/v1.49/v1/01273vs09.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01273vs09", + "name": "Laboratoire de Radiopharmaceutiques Biocliniques", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Régionale Auvergne-Rhône-Alpes", + "type": "Parent", + "id": "https://ror.org/0530j9m17" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.20507, + "lng": 5.74629, + "state": null, + "state_code": null, + "city": "La Tronche", + "geonames_city": { + "id": 3006131, + "city": "La Tronche", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lrb.univ-grenoble-alpes.fr" + ], + "aliases": [], + "acronyms": [ + "LRB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463988.8", + "preferred": "grid.463988.8" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/012fmmh32.json b/v1.49/v1/012fmmh32.json new file mode 100644 index 000000000..8f9f3c095 --- /dev/null +++ b/v1.49/v1/012fmmh32.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/012fmmh32", + "name": "Bijagual Ecological Reserve", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.40174, + "lng": -84.13348, + "state": null, + "state_code": null, + "city": "La Virgen", + "geonames_city": { + "id": 3623093, + "city": "La Virgen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bijagual.org" + ], + "aliases": [ + "Reserva Ecológica Bijagual" + ], + "acronyms": [ + "REBS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Costa Rica", + "country_code": "CR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/012fqzm33.json b/v1.49/v1/012fqzm33.json new file mode 100644 index 000000000..7226ee210 --- /dev/null +++ b/v1.49/v1/012fqzm33.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/012fqzm33", + "name": "Génétique Quantitative et Évolution Le Moulon", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://moulon.inrae.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Quantitative Genetics and Evolution - Le Moulon", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462625.1", + "preferred": "grid.462625.1" + }, + "Wikidata": { + "all": [ + "Q30261512" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/012mse022.json b/v1.49/v1/012mse022.json new file mode 100644 index 000000000..3ad333377 --- /dev/null +++ b/v1.49/v1/012mse022.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/012mse022", + "name": "Rhode Island Council for the Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 41.82399, + "lng": -71.41283, + "state": null, + "state_code": null, + "city": "Providence", + "geonames_city": { + "id": 5224151, + "city": "Providence", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://rihumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447589.3", + "preferred": "grid.447589.3" + }, + "ISNI": { + "all": [ + "0000 0004 5906 5757" + ], + "preferred": "0000 0004 5906 5757" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/013fn6665.json b/v1.49/v1/013fn6665.json new file mode 100644 index 000000000..272796ae7 --- /dev/null +++ b/v1.49/v1/013fn6665.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/013fn6665", + "name": "Samara University", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 11.79342, + "lng": 41.00578, + "state": null, + "state_code": null, + "city": "Semera", + "geonames_city": { + "id": 6913519, + "city": "Semera", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://su.edu.et" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ethiopia", + "country_code": "ET" + }, + "external_ids": { + "GRID": { + "all": "grid.459905.4", + "preferred": "grid.459905.4" + }, + "ISNI": { + "all": [ + "0000 0004 4684 7098" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q27963036" + ], + "preferred": "Q27963036" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/013q33h79.json b/v1.49/v1/013q33h79.json new file mode 100644 index 000000000..5e2881d95 --- /dev/null +++ b/v1.49/v1/013q33h79.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/013q33h79", + "name": "Institut d'Électronique et des Technologies du numéRique", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences Appliquées de Rennes", + "type": "Parent", + "id": "https://ror.org/04xaa4j22" + }, + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Nantes Université", + "type": "Parent", + "id": "https://ror.org/03gnr7b55" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ietr.fr" + ], + "aliases": [ + "Institut d'Electronique et de Télécommunications de Rennes", + "Institute of Electronics and Digital Technologies", + "Institute of Electronics and Telecommunications of Rennes" + ], + "acronyms": [ + "IETR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462104.5", + "preferred": "grid.462104.5" + }, + "ISNI": { + "all": [ + "0000 0000 8584 0666" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261383" + ], + "preferred": "Q30261383" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/013yean28.json b/v1.49/v1/013yean28.json new file mode 100644 index 000000000..f6433c6b0 --- /dev/null +++ b/v1.49/v1/013yean28.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/013yean28", + "name": "Laboratoire d'Informatique, de Robotique et de Microélectronique de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "Parent", + "id": "https://ror.org/00qhdy563" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lirmm.fr/lirmm_eng" + ], + "aliases": [], + "acronyms": [ + "LIRMM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Laboratoire_d%27Informatique,_de_Robotique_et_de_Micro%C3%A9lectronique_de_Montpellier", + "labels": [ + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464638.b", + "preferred": "grid.464638.b" + }, + "ISNI": { + "all": [ + "0000 0004 0599 0488" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3214420" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/013z99a51.json b/v1.49/v1/013z99a51.json new file mode 100644 index 000000000..5b7ff39c3 --- /dev/null +++ b/v1.49/v1/013z99a51.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/013z99a51", + "name": "AERIS/ICARE Data and Services Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Centre National d'Études Spatiales", + "type": "Parent", + "id": "https://ror.org/04h1h0y33" + }, + { + "label": "Conseil Régional des Hauts-de-France", + "type": "Parent", + "id": "https://ror.org/011ta8654" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.icare.univ-lille.fr" + ], + "aliases": [ + "ICARE Data and Services Center" + ], + "acronyms": [ + "ICARE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/014n97s28.json b/v1.49/v1/014n97s28.json new file mode 100644 index 000000000..a9883117a --- /dev/null +++ b/v1.49/v1/014n97s28.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/014n97s28", + "name": "Laboratoire des Matériaux et du Génie Physique", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lmgp.grenoble-inp.fr" + ], + "aliases": [], + "acronyms": [ + "LMGP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Materials and Physical Engineering Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463753.0", + "preferred": "grid.463753.0" + }, + "ISNI": { + "all": [ + "0000 0004 0386 4138" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/014p8mr66.json b/v1.49/v1/014p8mr66.json new file mode 100644 index 000000000..8fcf2c5fe --- /dev/null +++ b/v1.49/v1/014p8mr66.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/014p8mr66", + "name": "Institut d'Astrophysique Spatiale", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69981, + "lng": 2.17064, + "state": null, + "state_code": null, + "city": "Bures-sur-Yvette", + "geonames_city": { + "id": 3029522, + "city": "Bures-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ias.u-psud.fr" + ], + "aliases": [], + "acronyms": [ + "IAS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482888.6", + "preferred": "grid.482888.6" + }, + "ISNI": { + "all": [ + "0000 0004 0614 9404" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/014sj8802.json b/v1.49/v1/014sj8802.json new file mode 100644 index 000000000..5ce9e0634 --- /dev/null +++ b/v1.49/v1/014sj8802.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/014sj8802", + "name": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://transvihmi.ird.fr" + ], + "aliases": [ + "Recherche translationnelle sur VIH et les Maladies Infectieuses endémiques et émergentes", + "TransVIHMI" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782742" + ], + "preferred": "Q51782742" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/014vp6c30.json b/v1.49/v1/014vp6c30.json new file mode 100644 index 000000000..5f0cfada1 --- /dev/null +++ b/v1.49/v1/014vp6c30.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/014vp6c30", + "name": "Institut de Mathématiques de Toulouse", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences Appliquées de Toulouse", + "type": "Parent", + "id": "https://ror.org/01h8pf755" + }, + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Université Toulouse-I-Capitole", + "type": "Parent", + "id": "https://ror.org/0443n9e75" + }, + { + "label": "Université Toulouse - Jean Jaurès", + "type": "Parent", + "id": "https://ror.org/04ezk3x31" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.math.univ-toulouse.fr/?lang=en" + ], + "aliases": [], + "acronyms": [ + "IMT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_de_Math%C3%A9matiques_de_Toulouse", + "labels": [ + { + "label": "Toulouse Mathematics Institute", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462146.3", + "preferred": "grid.462146.3" + }, + "ISNI": { + "all": [ + "0000 0004 0383 6348" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q277888" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01502ca60.json b/v1.49/v1/01502ca60.json new file mode 100644 index 000000000..d53f1e980 --- /dev/null +++ b/v1.49/v1/01502ca60.json @@ -0,0 +1,169 @@ +{ + "id": "https://ror.org/01502ca60", + "name": "Hospices Civils de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 1802, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Laboratoire de Biométrie et Biologie Evolutive", + "type": "Child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Hôpital Lyon Sud", + "type": "Child", + "id": "https://ror.org/023xgd207" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "Child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Hôpital Femme Mère Enfant", + "type": "Child", + "id": "https://ror.org/006yspz11" + }, + { + "label": "Hôpital Louis Pradel", + "type": "Child", + "id": "https://ror.org/0396v4y86" + }, + { + "label": "Hôpital Pierre Wertheimer", + "type": "Child", + "id": "https://ror.org/01q046q46" + }, + { + "label": "Hôpital Renée Sabran", + "type": "Child", + "id": "https://ror.org/01sh1xg03" + }, + { + "label": "Hôpital de la Croix-Rousse", + "type": "Child", + "id": "https://ror.org/006evg656" + }, + { + "label": "Hôpital Edouard Herriot", + "type": "Child", + "id": "https://ror.org/02qt1p572" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Centre International de Recherche en Infectiologie", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "Child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Virologie et Pathologies Humaines", + "type": "Child", + "id": "https://ror.org/031xg0236" + }, + { + "label": "Institut d’Hématologie et d’Oncologie Pédiatrique", + "type": "Child", + "id": "https://ror.org/0075rng13" + }, + { + "label": "Université Claude Bernard Lyon 1", + "type": "Related", + "id": "https://ror.org/029brtt94" + }, + { + "label": "ERN EpiCARE", + "type": "Related", + "id": "https://ror.org/0214h3370" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chu-lyon.fr" + ], + "aliases": [], + "acronyms": [ + "HCL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hospices_Civils_de_Lyon", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.413852.9", + "preferred": "grid.413852.9" + }, + "ISNI": { + "all": [ + "0000 0001 2163 3825" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3140953" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01569q067.json b/v1.49/v1/01569q067.json new file mode 100644 index 000000000..b9493e713 --- /dev/null +++ b/v1.49/v1/01569q067.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01569q067", + "name": "Bia Lamplighter College of Education", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Education, Winneba", + "type": "Related", + "id": "https://ror.org/00y1ekh28" + } + ], + "addresses": [ + { + "lat": 6.66019, + "lng": -3.09337, + "state": null, + "state_code": null, + "city": "Debiso", + "geonames_city": { + "id": 2301891, + "city": "Debiso", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://blce.edu.gh/" + ], + "aliases": [], + "acronyms": [ + "BLCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bia_Lamplighter_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q85746900" + ], + "preferred": "Q85746900" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/015hnv758.json b/v1.49/v1/015hnv758.json new file mode 100644 index 000000000..54308d435 --- /dev/null +++ b/v1.49/v1/015hnv758.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/015hnv758", + "name": "Minnesota Humanities Center", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 44.94441, + "lng": -93.09327, + "state": null, + "state_code": null, + "city": "Saint Paul", + "geonames_city": { + "id": 5045360, + "city": "Saint Paul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mnhum.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446990.6", + "preferred": "grid.446990.6" + }, + "ISNI": { + "all": [ + "0000 0004 9460 4269" + ], + "preferred": "0000 0004 9460 4269" + }, + "Wikidata": { + "all": [ + "Q30258124" + ], + "preferred": "Q30258124" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/015m7wh34.json b/v1.49/v1/015m7wh34.json new file mode 100644 index 000000000..ba0745c68 --- /dev/null +++ b/v1.49/v1/015m7wh34.json @@ -0,0 +1,295 @@ +{ + "id": "https://ror.org/015m7wh34", + "name": "Université de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "CIC Rennes", + "type": "Child", + "id": "https://ror.org/02baj6743" + }, + { + "label": "Centre de Recherche en Économie et Management", + "type": "Child", + "id": "https://ror.org/0047rmf80" + }, + { + "label": "Ecosystèmes, Biodiversité, Evolution", + "type": "Child", + "id": "https://ror.org/005fjj927" + }, + { + "label": "Fish Physiology and Genomics Institute", + "type": "Child", + "id": "https://ror.org/04xtaw673" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "Child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Institut de Physique de Rennes", + "type": "Child", + "id": "https://ror.org/022b0h879" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "Child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut de Recherche en Santé, Environnement et Travail", + "type": "Child", + "id": "https://ror.org/01p178v10" + }, + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "Child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Institut de Génétique, Environnement et Protection des Plantes", + "type": "Child", + "id": "https://ror.org/038kxsm48" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "Child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Institut de génétique et de développement de Rennes", + "type": "Child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "Child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "Child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "Child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Institut de l'Ouest : Droit et Europe", + "type": "Child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Sciences Po Rennes", + "type": "Child", + "id": "https://ror.org/01fmctt82" + }, + { + "label": "Arènes: politique, santé publique, environnement, médias", + "type": "Child", + "id": "https://ror.org/00m4rxj18" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "Child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Oncogenesis Stress Signaling", + "type": "Child", + "id": "https://ror.org/00bf6bf92" + }, + { + "label": "Laboratoire Mouvement Sport Santé", + "type": "Child", + "id": "https://ror.org/05b3p7p58" + }, + { + "label": "Ethologie animale et humaine", + "type": "Child", + "id": "https://ror.org/02evk6c51" + }, + { + "label": "Bacterial RNAs & Medicine", + "type": "Child", + "id": "https://ror.org/031y0x195" + }, + { + "label": "Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer", + "type": "Child", + "id": "https://ror.org/05p7fmf80" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "Child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Laboratoire de génie civil et génie mécanique", + "type": "Child", + "id": "https://ror.org/03x0g1010" + }, + { + "label": "Centre Atlantique de Philosophie", + "type": "Child", + "id": "https://ror.org/059ynac98" + }, + { + "label": "Centre de droit des affaires", + "type": "Child", + "id": "https://ror.org/0274dq154" + }, + { + "label": "Institut du droit public et de la science politique", + "type": "Child", + "id": "https://ror.org/05nn1k450" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "Child", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "ScanMAT", + "type": "Child", + "id": "https://ror.org/04fsxy317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "École Nationale Supérieure de Chimie de Rennes", + "type": "Child", + "id": "https://ror.org/01h0ffh48" + }, + { + "label": "École Normale Supérieure de Rennes", + "type": "Child", + "id": "https://ror.org/03rxtdc22" + }, + { + "label": "Centre Hospitalier Universitaire de Rennes", + "type": "Related", + "id": "https://ror.org/05qec5a53" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-rennes.fr" + ], + "aliases": [ + "University of Rennes 1", + "Université de Rennes 1" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Rennes", + "labels": [ + { + "label": "University of Rennes", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.410368.8", + "preferred": "grid.410368.8" + }, + "ISNI": { + "all": [ + "0000 0001 2191 9284" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q726595" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/015x7ap02.json b/v1.49/v1/015x7ap02.json new file mode 100644 index 000000000..d6f7f62c1 --- /dev/null +++ b/v1.49/v1/015x7ap02.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/015x7ap02", + "name": "Osaka Police Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1937, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.69379, + "lng": 135.50107, + "state": null, + "state_code": null, + "city": "Osaka", + "geonames_city": { + "id": 1853909, + "city": "Osaka", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.oph.gr.jp" + ], + "aliases": [ + "Osaka Keisatsu Hospital", + "医療法人警和会大阪警察病院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "大阪けいさつ病院", + "iso639": "ja" + }, + { + "label": "大阪警察病院", + "iso639": "ja" + }, + { + "label": "社会医療法人大阪国際メディカル&サイエンスセンター 大阪警察病院", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.416980.2", + "preferred": "grid.416980.2" + }, + "ISNI": { + "all": [ + "0000 0004 1774 8373" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/015x8rz21.json b/v1.49/v1/015x8rz21.json new file mode 100644 index 000000000..701228fc3 --- /dev/null +++ b/v1.49/v1/015x8rz21.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/015x8rz21", + "name": "Laboratoire des Solides Irradiés", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Institut Rayonnement-Matière de Saclay", + "type": "Parent", + "id": "https://ror.org/00cch2r34" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://portail.polytechnique.edu/lsi/en" + ], + "aliases": [], + "acronyms": [ + "LSI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Irradiated Solids Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462524.3", + "preferred": "grid.462524.3" + }, + "ISNI": { + "all": [ + "0000 0004 0370 189X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261482" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/015yand93.json b/v1.49/v1/015yand93.json new file mode 100644 index 000000000..946c009b8 --- /dev/null +++ b/v1.49/v1/015yand93.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/015yand93", + "name": "Association France Alzheimer", + "email_address": null, + "ip_addresses": [], + "established": null, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.francealzheimer.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.453142.5", + "preferred": "grid.453142.5" + }, + "ISNI": { + "all": [ + "0000 0001 2115 7080" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0160ba067.json b/v1.49/v1/0160ba067.json new file mode 100644 index 000000000..3c754a3cd --- /dev/null +++ b/v1.49/v1/0160ba067.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/0160ba067", + "name": "Humanities Council of Washington", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.wdchumanities.org/" + ], + "aliases": [ + "Humanities DC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Humanities_dc", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446922.f", + "preferred": "grid.446922.f" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0165awy39.json b/v1.49/v1/0165awy39.json new file mode 100644 index 000000000..a9ee31a62 --- /dev/null +++ b/v1.49/v1/0165awy39.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/0165awy39", + "name": "Brite Divinity School", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.72541, + "lng": -97.32085, + "state": null, + "state_code": null, + "city": "Fort Worth", + "geonames_city": { + "id": 4691930, + "city": "Fort Worth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://brite.edu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Brite_Divinity_School", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9065 4163" + ], + "preferred": "0000 0000 9065 4163" + }, + "Wikidata": { + "all": [ + "Q4969329" + ], + "preferred": "Q4969329" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/016df9e78.json b/v1.49/v1/016df9e78.json new file mode 100644 index 000000000..5e8ad1f2d --- /dev/null +++ b/v1.49/v1/016df9e78.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/016df9e78", + "name": "Nevada Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 39.52963, + "lng": -119.8138, + "state": null, + "state_code": null, + "city": "Reno", + "geonames_city": { + "id": 5511077, + "city": "Reno", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nevadahumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447264.7", + "preferred": "grid.447264.7" + }, + "ISNI": { + "all": [ + "0000 0004 7784 7146" + ], + "preferred": "0000 0004 7784 7146" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/016hv6q66.json b/v1.49/v1/016hv6q66.json new file mode 100644 index 000000000..60e673f57 --- /dev/null +++ b/v1.49/v1/016hv6q66.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/016hv6q66", + "name": "Escuela Nacional de Antropología e Historia", + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://enah.edu.mx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_School_of_Anthropology_and_History", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/016pnwd02.json b/v1.49/v1/016pnwd02.json new file mode 100644 index 000000000..b8994e2c8 --- /dev/null +++ b/v1.49/v1/016pnwd02.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/016pnwd02", + "name": "Frédéric Joliot Institute for Life Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire Innovations Technologiques pour la Détection et le Diagnostic", + "type": "Child", + "id": "https://ror.org/00a8cnz80" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Centre Hospitalier d'Orsay", + "type": "Related", + "id": "https://ror.org/01bchmt70" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://joliot.cea.fr/drf/joliot/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut des Sciences du Vivant Frédéric Joliot", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503140.3", + "preferred": "grid.503140.3" + }, + "Wikidata": { + "all": [ + "Q61933008" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/016r2hq43.json b/v1.49/v1/016r2hq43.json new file mode 100644 index 000000000..4fc1c68e2 --- /dev/null +++ b/v1.49/v1/016r2hq43.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/016r2hq43", + "name": "Laboratoire de Chimie Physique", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.universite-paris-saclay.fr/institut-de-chimie-physique" + ], + "aliases": [], + "acronyms": [ + "LCP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462861.f", + "preferred": "grid.462861.f" + }, + "ISNI": { + "all": [ + "0000 0004 0370 3203" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261584" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/016w4zy25.json b/v1.49/v1/016w4zy25.json new file mode 100644 index 000000000..abb92ae05 --- /dev/null +++ b/v1.49/v1/016w4zy25.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/016w4zy25", + "name": "Centre de Recherche \"Individus, Epreuves, Sociétés\"", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ceries.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "CeRIES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 8616 8680" + ], + "preferred": "0000 0000 8616 8680" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0171wr661.json b/v1.49/v1/0171wr661.json new file mode 100644 index 000000000..d10581ef1 --- /dev/null +++ b/v1.49/v1/0171wr661.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/0171wr661", + "name": "Universidad de Playa Ancha de Ciencias de la Educación", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -33.036, + "lng": -71.62963, + "state": null, + "state_code": null, + "city": "Valparaíso", + "geonames_city": { + "id": 3868626, + "city": "Valparaíso", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.upla.cl" + ], + "aliases": [], + "acronyms": [ + "UPLA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Playa_Ancha_University", + "labels": [ + { + "label": "Playa Ancha University of Educational Sciences", + "iso639": "en" + } + ], + "country": { + "country_name": "Chile", + "country_code": "CL" + }, + "external_ids": { + "GRID": { + "all": "grid.441843.e", + "preferred": "grid.441843.e" + }, + "ISNI": { + "all": [ + "0000 0001 0694 2144" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q634259" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/017fdfe13.json b/v1.49/v1/017fdfe13.json new file mode 100644 index 000000000..1e02e5cf3 --- /dev/null +++ b/v1.49/v1/017fdfe13.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/017fdfe13", + "name": "Cluster in Biomedicine", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "AREA Science Park", + "type": "Parent", + "id": "https://ror.org/01dt7qh15" + } + ], + "addresses": [ + { + "lat": 45.64953, + "lng": 13.77678, + "state": null, + "state_code": null, + "city": "Trieste", + "geonames_city": { + "id": 3165185, + "city": "Trieste", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cbm.fvg.it/" + ], + "aliases": [], + "acronyms": [ + "CBM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.423666.3", + "preferred": "grid.423666.3" + }, + "ISNI": { + "all": [ + "0000 0004 1759 8977" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30284460" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/017tgbk05.json b/v1.49/v1/017tgbk05.json new file mode 100644 index 000000000..aeb51ae86 --- /dev/null +++ b/v1.49/v1/017tgbk05.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/017tgbk05", + "name": "Université de Toulouse", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Federal University of Toulouse Midi-Pyrénées", + "type": "Successor", + "id": "https://ror.org/004raaa70" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-toulouse.fr/" + ], + "aliases": [ + "Universitas Tolosatibus" + ], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Toulouse", + "labels": [ + { + "label": "Universitat de Tolosa", + "iso639": "oc" + }, + { + "label": "University of Toulouse", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.11417.32", + "preferred": "grid.11417.32" + }, + "ISNI": { + "all": [ + "0000 0001 2353 1689" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q578023" + ], + "preferred": "Q578023" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/017zqws13.json b/v1.49/v1/017zqws13.json new file mode 100644 index 000000000..08fa352ee --- /dev/null +++ b/v1.49/v1/017zqws13.json @@ -0,0 +1,174 @@ +{ + "id": "https://ror.org/017zqws13", + "name": "University of Minnesota", + "email_address": null, + "ip_addresses": [], + "established": 1851, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Minnesota Geological Survey", + "type": "Child", + "id": "https://ror.org/034ebnm46" + }, + { + "label": "Continental Scientific Drilling Facility", + "type": "Child", + "id": "https://ror.org/02amckb22" + }, + { + "label": "Cedar Creek Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/03a976s92" + }, + { + "label": "Minneapolis-St. Paul Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/04sqxdt31" + }, + { + "label": "Bell Museum of Natural History", + "type": "Child", + "id": "https://ror.org/01zn7ya31" + }, + { + "label": "Minnesota Agricultural Experiment Station", + "type": "Child", + "id": "https://ror.org/0516b6a83" + }, + { + "label": "Masonic Cancer Center", + "type": "Child", + "id": "https://ror.org/05x083d20" + }, + { + "label": "University of Minnesota System", + "type": "Parent", + "id": "https://ror.org/03grvy078" + }, + { + "label": "Children's Minnesota", + "type": "Related", + "id": "https://ror.org/03d543283" + }, + { + "label": "Hennepin County Medical Center", + "type": "Related", + "id": "https://ror.org/01k7a6660" + }, + { + "label": "Minneapolis VA Health Care System", + "type": "Related", + "id": "https://ror.org/02ry60714" + }, + { + "label": "Minnesota Lions Eye Bank", + "type": "Related", + "id": "https://ror.org/05je2ma32" + }, + { + "label": "Minnesota Veterans Medical Research and Education Foundation", + "type": "Related", + "id": "https://ror.org/04cm1q459" + }, + { + "label": "St. Joseph's Hospital", + "type": "Related", + "id": "https://ror.org/00r520291" + }, + { + "label": "University of Minnesota Children's Hospital", + "type": "Related", + "id": "https://ror.org/05jc5ee02" + }, + { + "label": "University of Minnesota Medical Center", + "type": "Related", + "id": "https://ror.org/03e1ayz78" + }, + { + "label": "University of Minnesota Libraries Publishing", + "type": "Child", + "id": "https://ror.org/03d78qr79" + } + ], + "addresses": [ + { + "lat": 44.97997, + "lng": -93.26384, + "state": null, + "state_code": null, + "city": "Minneapolis", + "geonames_city": { + "id": 5037649, + "city": "Minneapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://twin-cities.umn.edu/" + ], + "aliases": [ + "University of Minnesota, Twin Cities" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Minnesota", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.17635.36", + "preferred": "grid.17635.36" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8657" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q238101" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0182ff951.json b/v1.49/v1/0182ff951.json new file mode 100644 index 000000000..bf3c90310 --- /dev/null +++ b/v1.49/v1/0182ff951.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/0182ff951", + "name": "Centre d'études et de recherche en droit administratif, constitutionnel, financier et fiscal", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/centre-detudes-et-de-recherche-en-droit-administratif-constitutionnel-financier-et-fiscal-cerdacff" + ], + "aliases": [], + "acronyms": [ + "CERDACFF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782871" + ], + "preferred": "Q51782871" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0186z1m53.json b/v1.49/v1/0186z1m53.json new file mode 100644 index 000000000..59dd32818 --- /dev/null +++ b/v1.49/v1/0186z1m53.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/0186z1m53", + "name": "Laboratoire d'Électrotechnique et d'Électronique de Puissance de Lille", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École nationale supérieure d'arts et métiers", + "type": "Parent", + "id": "https://ror.org/018pp1107" + }, + { + "label": "Hautes Études d'Ingénieur", + "type": "Parent", + "id": "https://ror.org/0185jey51" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "École Centrale de Lille", + "type": "Parent", + "id": "https://ror.org/01x441g73" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://l2ep.univ-lille.fr/" + ], + "aliases": [], + "acronyms": [ + "L2EP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lille_Laboratory_of_Electrical_Engineering_and_Power_Electronics", + "labels": [ + { + "label": "Lille Laboratory of Electrical Engineering and Power Electronics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.510387.8", + "preferred": "grid.510387.8" + }, + "Wikidata": { + "all": [ + "Q3214438" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0187thv39.json b/v1.49/v1/0187thv39.json new file mode 100644 index 000000000..49f424335 --- /dev/null +++ b/v1.49/v1/0187thv39.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0187thv39", + "name": "St. Louis College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Education, Winneba", + "type": "Related", + "id": "https://ror.org/00y1ekh28" + } + ], + "addresses": [ + { + "lat": 6.68848, + "lng": -1.62443, + "state": null, + "state_code": null, + "city": "Kumasi", + "geonames_city": { + "id": 2298890, + "city": "Kumasi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://slce.edu.gh" + ], + "aliases": [ + "Saint Louis College of Education" + ], + "acronyms": [ + "SLCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Louis_College_of_Education", + "labels": [ + { + "label": "Kwalejin Ilimi ta St. Louis", + "iso639": "ha" + } + ], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996987" + ], + "preferred": "Q46996987" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0189yvq06.json b/v1.49/v1/0189yvq06.json new file mode 100644 index 000000000..113de8bc9 --- /dev/null +++ b/v1.49/v1/0189yvq06.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/0189yvq06", + "name": "Centre de Biologie Structurale", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cbs.cnrs.fr" + ], + "aliases": [ + "Centre de Biochimie Structurale" + ], + "acronyms": [ + "CBS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462825.f", + "preferred": "grid.462825.f" + }, + "ISNI": { + "all": [ + "0000 0004 0639 1954" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261568" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/019tcpt25.json b/v1.49/v1/019tcpt25.json new file mode 100644 index 000000000..1247288a3 --- /dev/null +++ b/v1.49/v1/019tcpt25.json @@ -0,0 +1,174 @@ +{ + "id": "https://ror.org/019tcpt25", + "name": "CentraleSupélec", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire d'Énergétique Moléculaire et Macroscopique, Combustion", + "type": "Child", + "id": "https://ror.org/02wy3s959" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire de Photonique Quantique et Moléculaire", + "type": "Child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Matériaux Optiques, Photonique et Systèmes", + "type": "Child", + "id": "https://ror.org/055swm364" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "Child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "Child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Fondation CentraleSupélec", + "type": "Child", + "id": "https://ror.org/03vsc0s28" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Supélec", + "type": "Predecessor", + "id": "https://ror.org/00n7gwn90" + }, + { + "label": "École Centrale Paris", + "type": "Predecessor", + "id": "https://ror.org/00v0y5771" + }, + { + "label": "Mahindra University", + "type": "Related", + "id": "https://ror.org/05751b994" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.centralesupelec.fr" + ], + "aliases": [], + "acronyms": [ + "CS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CentraleSup%C3%A9lec", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.494567.d", + "preferred": "grid.494567.d" + }, + "ISNI": { + "all": [ + "0000 0004 4907 1766" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q19203245" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/019tgvf94.json b/v1.49/v1/019tgvf94.json new file mode 100644 index 000000000..aa82f7ee5 --- /dev/null +++ b/v1.49/v1/019tgvf94.json @@ -0,0 +1,359 @@ +{ + "id": "https://ror.org/019tgvf94", + "name": "Université Côte d'Azur", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Astrophysique Relativiste, Théories, Expériences, Métrologie, Instrumentation, Signaux", + "type": "Child", + "id": "https://ror.org/031ah7413" + }, + { + "label": "Bases, Corpus, Langage", + "type": "Child", + "id": "https://ror.org/03mmb0d82" + }, + { + "label": "Centre Hospitalier Universitaire de Nice", + "type": "Child", + "id": "https://ror.org/05qsjq305" + }, + { + "label": "Centre Méditerranéen de Médecine Moléculaire", + "type": "Child", + "id": "https://ror.org/029rfe283" + }, + { + "label": "Centre de la Méditerranée Moderne et Contemporaine", + "type": "Child", + "id": "https://ror.org/031vfy029" + }, + { + "label": "Cognition Behaviour Technology", + "type": "Child", + "id": "https://ror.org/04d9wv909" + }, + { + "label": "Cultures et Environnements. Préhistoire, Antiquité, Moyen Âge", + "type": "Child", + "id": "https://ror.org/04n9van71" + }, + { + "label": "Géoazur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Groupe de Recherche en Droit, Économie, Gestion", + "type": "Child", + "id": "https://ror.org/00rfccx09" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "Child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Chimie de Nice", + "type": "Child", + "id": "https://ror.org/000pvc513" + }, + { + "label": "Institut de Pharmacologie Moléculaire et Cellulaire", + "type": "Child", + "id": "https://ror.org/05k4ema52" + }, + { + "label": "Institut de Physique de Nice", + "type": "Child", + "id": "https://ror.org/042cesy50" + }, + { + "label": "Institut de Biologie Valrose", + "type": "Child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institut de Recherche sur le Cancer et le Vieillissement de Nice", + "type": "Child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "Laboratoire Jean-Alexandre Dieudonné", + "type": "Child", + "id": "https://ror.org/0274zdr66" + }, + { + "label": "Laboratoire Motricité Humaine Éducation Sport Santé", + "type": "Child", + "id": "https://ror.org/03fd87035" + }, + { + "label": "Laboratoire d'Anthropologie et de Psychologie Cognitives et Sociales", + "type": "Child", + "id": "https://ror.org/033ny7f81" + }, + { + "label": "Laboratoire d'Informatique, Signaux et Systèmes de Sophia Antipolis", + "type": "Child", + "id": "https://ror.org/01215r597" + }, + { + "label": "Laboratoire d'Électronique, Antennes et Télécommunications", + "type": "Child", + "id": "https://ror.org/00ah32k04" + }, + { + "label": "Laboratoire de PhysioMédecine Moléculaire", + "type": "Child", + "id": "https://ror.org/00c3ktd57" + }, + { + "label": "Lagrange Laboratory", + "type": "Child", + "id": "https://ror.org/02fdv8735" + }, + { + "label": "Observatoire de la Côte d’Azur", + "type": "Child", + "id": "https://ror.org/039fj2469" + }, + { + "label": "Research Centre Inria Sophia Antipolis - Méditerranée", + "type": "Child", + "id": "https://ror.org/01nzkaw91" + }, + { + "label": "UMI MajuLab", + "type": "Child", + "id": "https://ror.org/027jrtw17" + }, + { + "label": "Centre National de Création Musicale", + "type": "Child", + "id": "https://ror.org/048nq7g61" + }, + { + "label": "Maison des Sciences de l'Homme et de la Société Sud-Est", + "type": "Child", + "id": "https://ror.org/02ygac863" + }, + { + "label": "Ecology and Conservation Science for Sustainable Seas", + "type": "Child", + "id": "https://ror.org/021zcv334" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Transporteurs, Imagerie et Radiothérapie en Oncologie - Mécanismes Biologiques des Altérations du Tissu Osseux", + "type": "Child", + "id": "https://ror.org/051c1vb08" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "Child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Centre de Recherche sur l'Hétéro-Epitaxie et ses Applications", + "type": "Child", + "id": "https://ror.org/03y8mpv07" + }, + { + "label": "Unité de Recherche Clinique Côte d'Azur", + "type": "Child", + "id": "https://ror.org/059h7s745" + }, + { + "label": "Transitions Savoirs Médias Territoires", + "type": "Child", + "id": "https://ror.org/05hp04238" + }, + { + "label": "Laboratoire des Sciences de l’Information et de la Communication", + "type": "Child", + "id": "https://ror.org/034gh1d56" + }, + { + "label": "Risques, Epidémiologie, Territoires, Informations, Education et Santé", + "type": "Child", + "id": "https://ror.org/04kezy879" + }, + { + "label": "Laboratoire Polytech'Lab", + "type": "Child", + "id": "https://ror.org/03d7ypa48" + }, + { + "label": "Nature Inspires Creativity Engineers Lab", + "type": "Child", + "id": "https://ror.org/02bczqy30" + }, + { + "label": "Microbiologie Orale, Immunothérapie et Santé", + "type": "Child", + "id": "https://ror.org/03xkgc756" + }, + { + "label": "Laboratoire interdisciplinaire Récits Cultures et Sociétés", + "type": "Child", + "id": "https://ror.org/033v1zn65" + }, + { + "label": "Laboratoire d'Innovation et Numérique pour l'Éducation", + "type": "Child", + "id": "https://ror.org/048z62t22" + }, + { + "label": "Laboratoire de Droit International et Européen", + "type": "Child", + "id": "https://ror.org/01q3kj769" + }, + { + "label": "Indo-French Centre for Applied Mathematics", + "type": "Child", + "id": "https://ror.org/05rnj8444" + }, + { + "label": "Institut d'Études Scientifiques de Cargèse", + "type": "Child", + "id": "https://ror.org/044mrv955" + }, + { + "label": "Groupe de Recherche en Management", + "type": "Child", + "id": "https://ror.org/023cs7p87" + }, + { + "label": "Équipe de Recherche sur les Mutations de l'Europe et de ses Sociétés", + "type": "Child", + "id": "https://ror.org/01h6z2q77" + }, + { + "label": "Centre Transdisciplinaire d'Épistémologie de la Littérature et des Arts vivants", + "type": "Child", + "id": "https://ror.org/02ac0n114" + }, + { + "label": "Centre de Recherches en Histoire des Idées", + "type": "Child", + "id": "https://ror.org/01f1fwk48" + }, + { + "label": "Centre d'études et de recherches en droit des procédures", + "type": "Child", + "id": "https://ror.org/04n03q057" + }, + { + "label": "Laboratoire de Recherche Translationnelle en Oncologie", + "type": "Child", + "id": "https://ror.org/04s92nm86" + }, + { + "label": "Centre d'études et de recherche en droit administratif, constitutionnel, financier et fiscal", + "type": "Child", + "id": "https://ror.org/0182ff951" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/" + ], + "aliases": [ + "UniCA" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_C%C3%B4te_d%27Azur", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.460782.f", + "preferred": "grid.460782.f" + }, + "ISNI": { + "all": [ + "0000 0004 4910 6551" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q19370961" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01a8ajp46.json b/v1.49/v1/01a8ajp46.json new file mode 100644 index 000000000..5e7115efd --- /dev/null +++ b/v1.49/v1/01a8ajp46.json @@ -0,0 +1,245 @@ +{ + "id": "https://ror.org/01a8ajp46", + "name": "Université Clermont Auvergne", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Clermont Recherche Management", + "type": "Child", + "id": "https://ror.org/00nf46858" + }, + { + "label": "Génétique, Diversité, Écophysiologie des Céréales", + "type": "Child", + "id": "https://ror.org/04397qy32" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "Child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Unité de Nutrition Humaine", + "type": "Child", + "id": "https://ror.org/003qhrc72" + }, + { + "label": "Institut Pascal", + "type": "Child", + "id": "https://ror.org/03vgfxd91" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Chimie de Clermont-Ferrand", + "type": "Child", + "id": "https://ror.org/045qszf23" + }, + { + "label": "Physique et Physiologie Intégratives de l'Arbre en Environnement Fluctuant", + "type": "Child", + "id": "https://ror.org/03atqv648" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire Microorganismes Génome et Environnement", + "type": "Child", + "id": "https://ror.org/020ahr442" + }, + { + "label": "Laboratoire de Géographie Physique et Environnementale", + "type": "Child", + "id": "https://ror.org/00e4pqm50" + }, + { + "label": "Laboratoire de Mathématiques", + "type": "Child", + "id": "https://ror.org/05sd5r855" + }, + { + "label": "Laboratoire de Physique Corpusculaire", + "type": "Child", + "id": "https://ror.org/0214k6v65" + }, + { + "label": "Laboratoire de Psychologie Sociale et Cognitive", + "type": "Child", + "id": "https://ror.org/01t4k8953" + }, + { + "label": "Laboratoire d'Informatique, de Modélisation et d'Optimisation des Systèmes", + "type": "Child", + "id": "https://ror.org/00t3fpp34" + }, + { + "label": "Microbe, Intestine, Inflammation and Host Susceptibility", + "type": "Child", + "id": "https://ror.org/02q7f3j18" + }, + { + "label": "Microbiologie Environnement Digestif Santé", + "type": "Child", + "id": "https://ror.org/03d0rdy88" + }, + { + "label": "Neuro-Dol", + "type": "Child", + "id": "https://ror.org/028m9sy08" + }, + { + "label": "UMR Territoires", + "type": "Child", + "id": "https://ror.org/026tc4g97" + }, + { + "label": "Unité Mixte de Recherche sur les Herbivores", + "type": "Child", + "id": "https://ror.org/03yvemy54" + }, + { + "label": "Unité Mixte de Recherche sur les Fromages", + "type": "Child", + "id": "https://ror.org/01xbd2h58" + }, + { + "label": "Clermont Auvergne INP", + "type": "Child", + "id": "https://ror.org/001f39w38" + }, + { + "label": "Centre d'Études et de Recherches sur le Développement International", + "type": "Child", + "id": "https://ror.org/01hg13988" + }, + { + "label": "Imagerie Moléculaire et Stratégies Théranostiques", + "type": "Child", + "id": "https://ror.org/03y61y350" + }, + { + "label": "UMR Ressources", + "type": "Child", + "id": "https://ror.org/0394www40" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Laboratoire de Météorologie Physique", + "type": "Child", + "id": "https://ror.org/03gz4y884" + }, + { + "label": "Observatoire de Physique du Globe de Clermont-Ferrand", + "type": "Child", + "id": "https://ror.org/01bch8q67" + }, + { + "label": "Centre Hospitalier Universitaire de Clermont-Ferrand", + "type": "Related", + "id": "https://ror.org/02tcf7a68" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uca.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Clermont_Auvergne", + "labels": [ + { + "label": "University of Clermont Auvergne", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.494717.8", + "preferred": "grid.494717.8" + }, + "ISNI": { + "all": [ + "0000 0001 2173 2882", + "0000 0001 1548 0420" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q28057967", + "Q612648", + "Q1381437" + ], + "preferred": "Q28057967" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01aa12z17.json b/v1.49/v1/01aa12z17.json new file mode 100644 index 000000000..bf753dd19 --- /dev/null +++ b/v1.49/v1/01aa12z17.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01aa12z17", + "name": "Universitas Islam Negeri Ar-Raniry", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.54167, + "lng": 95.33333, + "state": null, + "state_code": null, + "city": "Banda Aceh", + "geonames_city": { + "id": 1215502, + "city": "Banda Aceh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ar-raniry.ac.id" + ], + "aliases": [ + "Ar-Raniry State Islamic University Banda Aceh", + "State Islamic University Ar-Raniry", + "UIN Ar-Raniry" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Universitas Islam Negeri Ar-Raniry Banda Aceh", + "iso639": "id" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "GRID": { + "all": "grid.512406.4", + "preferred": "grid.512406.4" + }, + "Wikidata": { + "all": [ + "Q30632611" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01aqxgr98.json b/v1.49/v1/01aqxgr98.json new file mode 100644 index 000000000..975f61d15 --- /dev/null +++ b/v1.49/v1/01aqxgr98.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/01aqxgr98", + "name": "Informatique, Biologie Intégrative et Systèmes Complexes", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Parent", + "id": "https://ror.org/00e96v939" + } + ], + "addresses": [ + { + "lat": 48.63389, + "lng": 2.44417, + "state": null, + "state_code": null, + "city": "Évry-Courcouronnes", + "geonames_city": { + "id": 6454878, + "city": "Évry-Courcouronnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hal.archives-ouvertes.fr/IBISC" + ], + "aliases": [], + "acronyms": [ + "IBISC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Computer Science, Integrative Biology and Complex Systems", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503201.5", + "preferred": "grid.503201.5" + }, + "Wikidata": { + "all": [ + "Q51781503" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01b0sx541.json b/v1.49/v1/01b0sx541.json new file mode 100644 index 000000000..11a779b8c --- /dev/null +++ b/v1.49/v1/01b0sx541.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01b0sx541", + "name": "Campus adventiste du salève", + "email_address": null, + "ip_addresses": [], + "established": 1921, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.1416, + "lng": 6.15372, + "state": null, + "state_code": null, + "city": "Collonges-sous-Salève", + "geonames_city": { + "id": 3024302, + "city": "Collonges-sous-Salève", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://campusadventiste.edu/" + ], + "aliases": [ + "Salève Adventist University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Adventist_University_of_France", + "labels": [ + { + "label": "Adventist University of France", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.448565.e", + "preferred": "grid.448565.e" + }, + "Wikidata": { + "all": [ + "Q2935621" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01b436806.json b/v1.49/v1/01b436806.json new file mode 100644 index 000000000..928441ec8 --- /dev/null +++ b/v1.49/v1/01b436806.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/01b436806", + "name": "CIRED", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Météo-France", + "type": "Parent", + "id": "https://ror.org/0233st365" + }, + { + "label": "École des Ponts ParisTech", + "type": "Parent", + "id": "https://ror.org/02nwvxz07" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.83669, + "lng": 2.48255, + "state": null, + "state_code": null, + "city": "Nogent-sur-Marne", + "geonames_city": { + "id": 2990265, + "city": "Nogent-sur-Marne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.centre-cired.fr/index.php/en/" + ], + "aliases": [ + "Centre International de Recherche sur l'Environnement et le Developpement", + "International Research Center on Environment and Development" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre International de Recherche sur l'Environnement et le Développement", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462809.1", + "preferred": "grid.462809.1" + }, + "ISNI": { + "all": [ + "0000 0001 2165 5311" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01b5rtm37.json b/v1.49/v1/01b5rtm37.json new file mode 100644 index 000000000..dd70ec8c7 --- /dev/null +++ b/v1.49/v1/01b5rtm37.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/01b5rtm37", + "name": "Intégrité du génome, ARN et cancer", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://institut-curie.org/unit/umr3348" + ], + "aliases": [ + "Genotoxic Stress and Cancer", + "Stress génotoxique et cancer" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Genome Integrity, RNA and Cancer", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.493838.d", + "preferred": "grid.493838.d" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01bbf9m56.json b/v1.49/v1/01bbf9m56.json new file mode 100644 index 000000000..e20cb049e --- /dev/null +++ b/v1.49/v1/01bbf9m56.json @@ -0,0 +1,171 @@ +{ + "id": "https://ror.org/01bbf9m56", + "name": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "École Nationale Supérieure de Techniques Avancées", + "type": "Parent", + "id": "https://ror.org/0309cs235" + }, + { + "label": "École nationale supérieure d'arts et métiers", + "type": "Parent", + "id": "https://ror.org/018pp1107" + }, + { + "label": "Conservatoire National des Arts et Métiers", + "type": "Parent", + "id": "https://ror.org/0175hh227" + }, + { + "label": "École Nationale Supérieure des Mines de Paris", + "type": "Parent", + "id": "https://ror.org/04y8cs423" + }, + { + "label": "École des Ponts ParisTech", + "type": "Parent", + "id": "https://ror.org/02nwvxz07" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "Université Paris-Est Créteil", + "type": "Parent", + "id": "https://ror.org/05ggc9x40" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Office National d'Études et de Recherches Aérospatiales", + "type": "Parent", + "id": "https://ror.org/005y2ap84" + }, + { + "label": "Électricité de France (France)", + "type": "Parent", + "id": "https://ror.org/03wb8xz10" + }, + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Parent", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université Gustave Eiffel", + "type": "Parent", + "id": "https://ror.org/03x42jk29" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://f2m.cnrs.fr" + ], + "aliases": [ + "Fédération Francilienne de Mécanique" + ], + "acronyms": [ + "F2M-msp" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782131" + ], + "preferred": "Q51782131" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01bch8q67.json b/v1.49/v1/01bch8q67.json new file mode 100644 index 000000000..7f85957a5 --- /dev/null +++ b/v1.49/v1/01bch8q67.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/01bch8q67", + "name": "Observatoire de Physique du Globe de Clermont-Ferrand", + "email_address": null, + "ip_addresses": [], + "established": 1876, + "types": [ + "Education", + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire de Météorologie Physique", + "type": "Child", + "id": "https://ror.org/03gz4y884" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://wwwobs.univ-bpclermont.fr/opgc/index.php" + ], + "aliases": [ + "Universe Sciences Observatory of Clermont-Ferrand" + ], + "acronyms": [ + "OPGC", + "OSU OPGC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.483612.a", + "preferred": "grid.483612.a" + }, + "ISNI": { + "all": [ + "0000 0001 0941 6043" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01bn5c048.json b/v1.49/v1/01bn5c048.json new file mode 100644 index 000000000..4f06367f4 --- /dev/null +++ b/v1.49/v1/01bn5c048.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/01bn5c048", + "name": "Laboratoire de Photonique Quantique et Moléculaire", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/00hx6zz33" + } + ], + "addresses": [ + { + "lat": 48.79632, + "lng": 2.33661, + "state": null, + "state_code": null, + "city": "Cachan", + "geonames_city": { + "id": 3029276, + "city": "Cachan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lpqm.ens-paris-saclay.fr/" + ], + "aliases": [], + "acronyms": [ + "LPQM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Quantum and Molecular Photonics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.496752.b", + "preferred": "grid.496752.b" + }, + "ISNI": { + "all": [ + "0000 0004 0368 4524" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01c3rrh15.json b/v1.49/v1/01c3rrh15.json new file mode 100644 index 000000000..941f09f98 --- /dev/null +++ b/v1.49/v1/01c3rrh15.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/01c3rrh15", + "name": "Elettra-Sincrotrone Trieste S.C.p.A.", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AREA Science Park", + "type": "Parent", + "id": "https://ror.org/01dt7qh15" + }, + { + "label": "Euro-BioImaging ERIC", + "type": "Related", + "id": "https://ror.org/05d78xc36" + }, + { + "label": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + } + ], + "addresses": [ + { + "lat": 45.64953, + "lng": 13.77678, + "state": null, + "state_code": null, + "city": "Trieste", + "geonames_city": { + "id": 3165185, + "city": "Trieste", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.elettra.eu" + ], + "aliases": [ + "Elettra", + "Elettra Sincrotrone Trieste" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ELETTRA", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.5942.a", + "preferred": "grid.5942.a" + }, + "ISNI": { + "all": [ + "0000 0004 1759 508X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3717376", + "Q47517188" + ], + "preferred": "Q3717376" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01c98q459.json b/v1.49/v1/01c98q459.json new file mode 100644 index 000000000..b3aec1d79 --- /dev/null +++ b/v1.49/v1/01c98q459.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01c98q459", + "name": "Region Jönköpings län", + "email_address": null, + "ip_addresses": [], + "established": 1863, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Futurum - Akademin för Hälsa och Vård", + "type": "Child", + "id": "https://ror.org/046p5eg67" + } + ], + "addresses": [ + { + "lat": 57.78145, + "lng": 14.15618, + "state": null, + "state_code": null, + "city": "Jönköping", + "geonames_city": { + "id": 2702979, + "city": "Jönköping", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.rjl.se//" + ], + "aliases": [ + "Council of Jönköping", + "Jönköping County Council", + "Landstinget i Jonkopings lan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "GRID": { + "all": "grid.451698.7", + "preferred": "grid.451698.7" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01cah1n37.json b/v1.49/v1/01cah1n37.json new file mode 100644 index 000000000..fb7134190 --- /dev/null +++ b/v1.49/v1/01cah1n37.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/01cah1n37", + "name": "Institut des Sciences de l'Evolution de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.isem.univ-montp2.fr/?lang=en" + ], + "aliases": [], + "acronyms": [ + "ISEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462058.d", + "preferred": "grid.462058.d" + }, + "ISNI": { + "all": [ + "0000 0001 2188 7059" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01cfdpz73.json b/v1.49/v1/01cfdpz73.json new file mode 100644 index 000000000..8a0a3ce56 --- /dev/null +++ b/v1.49/v1/01cfdpz73.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01cfdpz73", + "name": "Institut Supérieur d’Informatique et de Gestion de Goma", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -1.67409, + "lng": 29.22845, + "state": null, + "state_code": null, + "city": "Goma", + "geonames_city": { + "id": 216281, + "city": "Goma", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://isig.ac.cd" + ], + "aliases": [ + "ISIG Goma" + ], + "acronyms": [ + "ISIG" + ], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Institut_sup%C3%A9rieur_d%27informatique_et_de_gestion_de_Goma", + "labels": [], + "country": { + "country_name": "DR Congo", + "country_code": "CD" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9332 9816" + ], + "preferred": "0000 0004 9332 9816" + }, + "Wikidata": { + "all": [ + "Q3152535" + ], + "preferred": "Q3152535" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01cmdgj85.json b/v1.49/v1/01cmdgj85.json new file mode 100644 index 000000000..d2aab36bd --- /dev/null +++ b/v1.49/v1/01cmdgj85.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01cmdgj85", + "name": "SADAPT Science Action Développement - Activités Produits Territoires", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.versailles-grignon.inrae.fr/sadapt" + ], + "aliases": [ + "Sciences pour l'Action et le Développement : Activités, Produits, Territoires" + ], + "acronyms": [ + "SAD-APT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780480" + ], + "preferred": "Q51780480" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01cqgcv21.json b/v1.49/v1/01cqgcv21.json new file mode 100644 index 000000000..8816bfa54 --- /dev/null +++ b/v1.49/v1/01cqgcv21.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/01cqgcv21", + "name": "Precise Measurement Technology Promotion Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.71771, + "lng": 139.566, + "state": null, + "state_code": null, + "city": "Musashino", + "geonames_city": { + "id": 1856366, + "city": "Musashino", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pmtp-f.or.jp" + ], + "aliases": [ + "精密測定技術振興財団" + ], + "acronyms": [ + "PMTPF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "公益財団法人精密測定技術振興財団", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01cw28e72.json b/v1.49/v1/01cw28e72.json new file mode 100644 index 000000000..f761c60f3 --- /dev/null +++ b/v1.49/v1/01cw28e72.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/01cw28e72", + "name": "Institut de Recherche sur les ArchéoMATériaux", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut National de Recherches Archéologiques Préventives", + "type": "Parent", + "id": "https://ror.org/04andmq85" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Bordeaux-Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + }, + { + "label": "Ministère de la Culture", + "type": "Parent", + "id": "https://ror.org/017rnyz40" + }, + { + "label": "Université d'Orléans", + "type": "Parent", + "id": "https://ror.org/014zrew76" + }, + { + "label": "Université de technologie de belfort-montbéliard", + "type": "Parent", + "id": "https://ror.org/05bn3m307" + } + ], + "addresses": [ + { + "lat": 47.64218, + "lng": 6.85385, + "state": null, + "state_code": null, + "city": "Belfort", + "geonames_city": { + "id": 3033791, + "city": "Belfort", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iramat.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "IRAMAT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503232.5", + "preferred": "grid.503232.5" + }, + "ISNI": { + "all": [ + "0000 0001 0038 9149" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51784495" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01de7ab51.json b/v1.49/v1/01de7ab51.json new file mode 100644 index 000000000..a4bb6d82e --- /dev/null +++ b/v1.49/v1/01de7ab51.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01de7ab51", + "name": "Gono University", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gonouniversity.edu.bd" + ], + "aliases": [ + "Gono Bishwabidyalay" + ], + "acronyms": [ + "GB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gono_University", + "labels": [ + { + "label": "গণবিশ্ববিদ্যালয়", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "GRID": { + "all": "grid.443000.3", + "preferred": "grid.443000.3" + }, + "ISNI": { + "all": [ + "0000 0004 4683 3382" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5582039" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01dn3gk89.json b/v1.49/v1/01dn3gk89.json new file mode 100644 index 000000000..03d9c2368 --- /dev/null +++ b/v1.49/v1/01dn3gk89.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/01dn3gk89", + "name": "Honeywell Federal Manufacturing and Technologies (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.09973, + "lng": -94.57857, + "state": null, + "state_code": null, + "city": "Kansas City", + "geonames_city": { + "id": 4393217, + "city": "Kansas City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Honeywell Federal Manufacturing & Technologies", + "Honeywell Federal Manufacturing & Technologies, LLC" + ], + "acronyms": [ + "FM&T" + ], + "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.49/v1/01dq3qq95.json b/v1.49/v1/01dq3qq95.json new file mode 100644 index 000000000..e82b06ed1 --- /dev/null +++ b/v1.49/v1/01dq3qq95.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/01dq3qq95", + "name": "Beibu Gulf University", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.98247, + "lng": 108.65061, + "state": null, + "state_code": null, + "city": "Qinzhou", + "geonames_city": { + "id": 1797551, + "city": "Qinzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bbgu.edu.cn" + ], + "aliases": [ + "Qinzhou College", + "Qinzhou University", + "钦州学院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "北部湾大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.488161.2", + "preferred": "grid.488161.2" + }, + "ISNI": { + "all": [ + "0000 0000 8856 7183", + "0000 0004 8002 2532" + ], + "preferred": "0000 0004 8002 2532" + }, + "Wikidata": { + "all": [ + "Q43896002" + ], + "preferred": "Q43896002" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01dt7qh15.json b/v1.49/v1/01dt7qh15.json new file mode 100644 index 000000000..48474162e --- /dev/null +++ b/v1.49/v1/01dt7qh15.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/01dt7qh15", + "name": "AREA Science Park", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Biogem", + "type": "Child", + "id": "https://ror.org/01ymr5447" + }, + { + "label": "Cluster in Biomedicine", + "type": "Child", + "id": "https://ror.org/017fdfe13" + }, + { + "label": "Elettra-Sincrotrone Trieste S.C.p.A.", + "type": "Child", + "id": "https://ror.org/01c3rrh15" + } + ], + "addresses": [ + { + "lat": 45.64953, + "lng": 13.77678, + "state": null, + "state_code": null, + "city": "Trieste", + "geonames_city": { + "id": 3165185, + "city": "Trieste", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.areasciencepark.it" + ], + "aliases": [ + "Consortium of the Trieste Science and Technology Research Area", + "Consorzio per l'AREA di Ricerca Scientifica e Tecnologica di Trieste" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/AREA_Science_Park", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.419994.8", + "preferred": "grid.419994.8" + }, + "ISNI": { + "all": [ + "0000 0004 1759 4706" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q668385" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01earvv39.json b/v1.49/v1/01earvv39.json new file mode 100644 index 000000000..106dfccb9 --- /dev/null +++ b/v1.49/v1/01earvv39.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/01earvv39", + "name": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Institut Gustave Roussy", + "type": "Parent", + "id": "https://ror.org/0321g0743" + } + ], + "addresses": [ + { + "lat": 48.7939, + "lng": 2.35992, + "state": null, + "state_code": null, + "city": "Villejuif", + "geonames_city": { + "id": 2968705, + "city": "Villejuif", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gustaveroussy.fr/fr/umr-981" + ], + "aliases": [ + "Identification de nouvelles cibles therapeutiques en cancerologie" + ], + "acronyms": [ + "PMNCO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781538" + ], + "preferred": "Q51781538" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01ed4t417.json b/v1.49/v1/01ed4t417.json new file mode 100644 index 000000000..268b9c85a --- /dev/null +++ b/v1.49/v1/01ed4t417.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/01ed4t417", + "name": "Centre de recherche en Epidémiologie et Santé des Populations", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Hôpital Paul-Brousse", + "type": "Parent", + "id": "https://ror.org/05n7yzd13" + }, + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.7939, + "lng": 2.35992, + "state": null, + "state_code": null, + "city": "Villejuif", + "geonames_city": { + "id": 2968705, + "city": "Villejuif", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cesp.inserm.fr" + ], + "aliases": [], + "acronyms": [ + "CESP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre for Epidemiology and Population Health", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463845.8", + "preferred": "grid.463845.8" + }, + "ISNI": { + "all": [ + "0000 0004 0638 6872" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262232" + ], + "preferred": "Q30262232" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01ee94y34.json b/v1.49/v1/01ee94y34.json new file mode 100644 index 000000000..86cc54978 --- /dev/null +++ b/v1.49/v1/01ee94y34.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01ee94y34", + "name": "Institut Pasteur de Bangui", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 4.36122, + "lng": 18.55496, + "state": null, + "state_code": null, + "city": "Bangui", + "geonames_city": { + "id": 2389853, + "city": "Bangui", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://pasteur-bangui.org/" + ], + "aliases": [], + "acronyms": [ + "IPB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Pasteur Institute of Bangui", + "iso639": "en" + } + ], + "country": { + "country_name": "Central African Republic", + "country_code": "CF" + }, + "external_ids": { + "GRID": { + "all": "grid.418512.b", + "preferred": "grid.418512.b" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01erkkd87.json b/v1.49/v1/01erkkd87.json new file mode 100644 index 000000000..f790c561c --- /dev/null +++ b/v1.49/v1/01erkkd87.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01erkkd87", + "name": "Methodist College of Education", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Education, Winneba", + "type": "Related", + "id": "https://ror.org/00y1ekh28" + } + ], + "addresses": [ + { + "lat": 5.92665, + "lng": -0.98577, + "state": null, + "state_code": null, + "city": "Akim Oda", + "geonames_city": { + "id": 2296564, + "city": "Akim Oda", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://metcoe.edu.gh" + ], + "aliases": [], + "acronyms": [ + "METCOE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Methodist_College_of_Education_%28Ghana%29", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q65073483" + ], + "preferred": "Q65073483" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01et6g203.json b/v1.49/v1/01et6g203.json new file mode 100644 index 000000000..243e9ee96 --- /dev/null +++ b/v1.49/v1/01et6g203.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01et6g203", + "name": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.78889, + "lng": 2.27078, + "state": null, + "state_code": null, + "city": "Le Plessis-Robinson", + "geonames_city": { + "id": 3002650, + "city": "Le Plessis-Robinson", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.u999.universite-paris-saclay.fr" + ], + "aliases": [ + "Pathophysiology and Novel Therapies", + "Physiopathologie et Innovation Thérapeutique" + ], + "acronyms": [ + "PAH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Pulmonary Hypertension: Pathophysiology and Novel Therapies", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462435.2", + "preferred": "grid.462435.2" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01f1amm71.json b/v1.49/v1/01f1amm71.json new file mode 100644 index 000000000..46b2661ef --- /dev/null +++ b/v1.49/v1/01f1amm71.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/01f1amm71", + "name": "Laboratoire Traitement du Signal et de l'Image", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Régionale Grand Ouest", + "type": "Parent", + "id": "https://ror.org/01qa4rf46" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ltsi.univ-rennes.fr" + ], + "aliases": [ + "Signal and Image Processing Laboratory" + ], + "acronyms": [ + "LTSI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463996.7", + "preferred": "grid.463996.7" + }, + "Wikidata": { + "all": [ + "Q30262366" + ], + "preferred": "Q30262366" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01f1fwk48.json b/v1.49/v1/01f1fwk48.json new file mode 100644 index 000000000..eda07c150 --- /dev/null +++ b/v1.49/v1/01f1fwk48.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01f1fwk48", + "name": "Centre de Recherches en Histoire des Idées", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/centre-de-recherches-en-histoire-des-idees-crhi-ea-4318" + ], + "aliases": [], + "acronyms": [ + "CRHI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01f5c5978.json b/v1.49/v1/01f5c5978.json new file mode 100644 index 000000000..88eee0459 --- /dev/null +++ b/v1.49/v1/01f5c5978.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01f5c5978", + "name": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cemipai.fr" + ], + "aliases": [], + "acronyms": [ + "CEMIPAI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52606476" + ], + "preferred": "Q52606476" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01fd1kv21.json b/v1.49/v1/01fd1kv21.json new file mode 100644 index 000000000..70233cd00 --- /dev/null +++ b/v1.49/v1/01fd1kv21.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01fd1kv21", + "name": "National Institute of Biotechnology", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.7104, + "lng": 90.40744, + "state": null, + "state_code": null, + "city": "Dhaka", + "geonames_city": { + "id": 1185241, + "city": "Dhaka", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nib.gov.bd" + ], + "aliases": [ + "National Institute of Biotechnology, Bangladesh" + ], + "acronyms": [ + "NIB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Institute_of_Biotechnology", + "labels": [ + { + "label": "ন্যাশনাল ইনস্টিটিউট অব বায়োটেকনোলজি", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8346 0482" + ], + "preferred": "0000 0004 8346 0482" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01fe0jt45.json b/v1.49/v1/01fe0jt45.json new file mode 100644 index 000000000..5120131a9 --- /dev/null +++ b/v1.49/v1/01fe0jt45.json @@ -0,0 +1,152 @@ +{ + "id": "https://ror.org/01fe0jt45", + "name": "Robert Bosch (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1886, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "BSH Hausgeräte (Germany)", + "type": "Child", + "id": "https://ror.org/0231f9890" + }, + { + "label": "Robert Bosch (Australia)", + "type": "Child", + "id": "https://ror.org/03hrns542" + }, + { + "label": "Robert Bosch (Brazil)", + "type": "Child", + "id": "https://ror.org/01yjxek63" + }, + { + "label": "Robert Bosch (China)", + "type": "Child", + "id": "https://ror.org/00cedkn40" + }, + { + "label": "Robert Bosch (France)", + "type": "Child", + "id": "https://ror.org/00v9m1060" + }, + { + "label": "Robert Bosch (India)", + "type": "Child", + "id": "https://ror.org/04my8ty22" + }, + { + "label": "Robert Bosch (Japan)", + "type": "Child", + "id": "https://ror.org/02ztkac83" + }, + { + "label": "Robert Bosch (Netherlands)", + "type": "Child", + "id": "https://ror.org/057aydj06" + }, + { + "label": "Robert Bosch (Slovenia)", + "type": "Child", + "id": "https://ror.org/03248dr08" + }, + { + "label": "Robert Bosch (Taiwan)", + "type": "Child", + "id": "https://ror.org/046as2g47" + }, + { + "label": "Robert Bosch (United Kingdom)", + "type": "Child", + "id": "https://ror.org/031zzq071" + }, + { + "label": "Robert Bosch (United States)", + "type": "Child", + "id": "https://ror.org/02venad53" + }, + { + "label": "Robert Bosch (Hungary)", + "type": "Child", + "id": "https://ror.org/03xvpbd79" + } + ], + "addresses": [ + { + "lat": 48.78232, + "lng": 9.17702, + "state": null, + "state_code": null, + "city": "Stuttgart", + "geonames_city": { + "id": 2825297, + "city": "Stuttgart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.bosch.com/en/com/home/index.php" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Robert_Bosch_GmbH", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.6584.f", + "preferred": "grid.6584.f" + }, + "ISNI": { + "all": [ + "0000 0004 0553 2276" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q234021" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01fftxe08.json b/v1.49/v1/01fftxe08.json new file mode 100644 index 000000000..159b925ac --- /dev/null +++ b/v1.49/v1/01fftxe08.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/01fftxe08", + "name": "Institut de Biologie Intégrative de la Cellule", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.i2bc.paris-saclay.fr" + ], + "aliases": [ + "I2BC Institute" + ], + "acronyms": [ + "I2BC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Integrative Biology of the Cell", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462411.4", + "preferred": "grid.462411.4" + }, + "ISNI": { + "all": [ + "0000 0004 7474 7238" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261453" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01fjvrm82.json b/v1.49/v1/01fjvrm82.json new file mode 100644 index 000000000..2802bfcda --- /dev/null +++ b/v1.49/v1/01fjvrm82.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01fjvrm82", + "name": "Omohundro Institute of Early American History and Culture", + "email_address": null, + "ip_addresses": [], + "established": 1943, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 37.2707, + "lng": -76.70746, + "state": null, + "state_code": null, + "city": "Williamsburg", + "geonames_city": { + "id": 4793846, + "city": "Williamsburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://oieahc.wm.edu/" + ], + "aliases": [], + "acronyms": [ + "OIEAHC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Omohundro_Institute_of_Early_American_History_and_Culture", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447615.5", + "preferred": "grid.447615.5" + }, + "ISNI": { + "all": [ + "0000 0001 1482 114X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7090602" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01fmctt82.json b/v1.49/v1/01fmctt82.json new file mode 100644 index 000000000..6e643427c --- /dev/null +++ b/v1.49/v1/01fmctt82.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01fmctt82", + "name": "Sciences Po Rennes", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Arènes: politique, santé publique, environnement, médias", + "type": "Child", + "id": "https://ror.org/00m4rxj18" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sciencespo-rennes.fr" + ], + "aliases": [ + "Institut d'études politiques de Rennes" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_d'%C3%A9tudes_politiques_de_Rennes", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2293 6617" + ], + "preferred": "0000 0001 2293 6617" + }, + "Wikidata": { + "all": [ + "Q3151965" + ], + "preferred": "Q3151965" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01fp8z436.json b/v1.49/v1/01fp8z436.json new file mode 100644 index 000000000..c696626da --- /dev/null +++ b/v1.49/v1/01fp8z436.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/01fp8z436", + "name": "Institut Pasteur de la Guyane", + "email_address": null, + "ip_addresses": [], + "established": 1940, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 4.93333, + "lng": -52.33333, + "state": null, + "state_code": null, + "city": "Cayenne", + "geonames_city": { + "id": 3382160, + "city": "Cayenne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pasteur-cayenne.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "French Guiana", + "country_code": "GF" + }, + "external_ids": { + "GRID": { + "all": "grid.418525.f", + "preferred": "grid.418525.f" + }, + "ISNI": { + "all": [ + "0000 0001 2206 8813" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30281759" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01fv25t22.json b/v1.49/v1/01fv25t22.json new file mode 100644 index 000000000..98a57b721 --- /dev/null +++ b/v1.49/v1/01fv25t22.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/01fv25t22", + "name": "Centre CEA de Saclay", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CEA Saclay", + "type": "Parent", + "id": "https://ror.org/03n15ch10" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "HEC Paris", + "type": "Parent", + "id": "https://ror.org/0423jsj19" + }, + { + "label": "Institut des Hautes Études Scientifiques", + "type": "Parent", + "id": "https://ror.org/05d5m2r55" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + } + ], + "addresses": [ + { + "lat": 48.7326, + "lng": 2.16923, + "state": null, + "state_code": null, + "city": "Saclay", + "geonames_city": { + "id": 2982043, + "city": "Saclay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cea.fr/Pages/le-cea/les-centres-cea/paris-saclay.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saclay_Nuclear_Research_Centre", + "labels": [ + { + "label": "Saclay Nuclear Research Centre", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462763.2", + "preferred": "grid.462763.2" + }, + "ISNI": { + "all": [ + "0000 0000 9853 2953" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4393524" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01fz7mn40.json b/v1.49/v1/01fz7mn40.json new file mode 100644 index 000000000..c0f06f057 --- /dev/null +++ b/v1.49/v1/01fz7mn40.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/01fz7mn40", + "name": "École Nationale de la Statistique et de l'Administration Économique", + "email_address": null, + "ip_addresses": [], + "established": 1942, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Recherche en Économie et Statistique", + "type": "Child", + "id": "https://ror.org/0449khs19" + }, + { + "label": "Groupe des Écoles Nationales d'Économie et Statistique", + "type": "Parent", + "id": "https://ror.org/01p6yxw64" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ensae.fr/" + ], + "aliases": [ + "ENSAE ParisTech" + ], + "acronyms": [ + "ENSAE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ENSAE_ParisTech", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.454310.7", + "preferred": "grid.454310.7" + }, + "ISNI": { + "all": [ + "0000 0001 1941 2281" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1275372" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01gaw2478.json b/v1.49/v1/01gaw2478.json new file mode 100644 index 000000000..450cd87f7 --- /dev/null +++ b/v1.49/v1/01gaw2478.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/01gaw2478", + "name": "Teikyo University", + "email_address": null, + "ip_addresses": [], + "established": 1931, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Teikyo University Chiba Medical Center", + "type": "Related", + "id": "https://ror.org/03edth057" + }, + { + "label": "Teikyo University Hospital", + "type": "Related", + "id": "https://ror.org/00tze5d69" + }, + { + "label": "Teikyo University Hospital, Mizonokuchi", + "type": "Child", + "id": "https://ror.org/02p6v5z38" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.teikyo-u.ac.jp/english/" + ], + "aliases": [ + "Teikyō Daigaku" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Teikyo_University", + "labels": [ + { + "label": "帝京大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.264706.1", + "preferred": "grid.264706.1" + }, + "ISNI": { + "all": [ + "0000 0000 9239 9995" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1287141" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01h0a3k64.json b/v1.49/v1/01h0a3k64.json new file mode 100644 index 000000000..3e0cc59b3 --- /dev/null +++ b/v1.49/v1/01h0a3k64.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01h0a3k64", + "name": "Laboratoire de Génétique & Evolution des Populations Végétales", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://gepv.univ-lille1.fr/" + ], + "aliases": [], + "acronyms": [ + "GEPV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463873.d", + "preferred": "grid.463873.d" + }, + "ISNI": { + "all": [ + "0000 0004 0638 0104" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01h0ffh48.json b/v1.49/v1/01h0ffh48.json new file mode 100644 index 000000000..ef245c3cc --- /dev/null +++ b/v1.49/v1/01h0ffh48.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/01h0ffh48", + "name": "École Nationale Supérieure de Chimie de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "Child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ensc-rennes.fr/" + ], + "aliases": [], + "acronyms": [ + "ENSCR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462898.9", + "preferred": "grid.462898.9" + }, + "ISNI": { + "all": [ + "0000 0004 0640 3791" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3578223" + ], + "preferred": "Q3578223" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01h2qr957.json b/v1.49/v1/01h2qr957.json new file mode 100644 index 000000000..56156f17c --- /dev/null +++ b/v1.49/v1/01h2qr957.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01h2qr957", + "name": "Laboratoire de développement instrumental et de méthodologies innovantes pour les Biens Culturels", + "email_address": null, + "ip_addresses": [], + "established": 2024, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de recherche et de restauration des musées de France", + "type": "Parent", + "id": "https://ror.org/02egw5x81" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Lab-BC", + "Laboratory for Instrumental Development and Innovative Methodologies for Cultural Heritage" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01h6z2q77.json b/v1.49/v1/01h6z2q77.json new file mode 100644 index 000000000..11c1bf7fb --- /dev/null +++ b/v1.49/v1/01h6z2q77.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01h6z2q77", + "name": "Équipe de Recherche sur les Mutations de l'Europe et de ses Sociétés", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/e%CC%81quipe-de-recherche-sur-les-mutations-de-leurope-et-de-ses-socie%CC%81te%CC%81s-ermes" + ], + "aliases": [], + "acronyms": [ + "ERMES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01he7e113.json b/v1.49/v1/01he7e113.json new file mode 100644 index 000000000..30b05011e --- /dev/null +++ b/v1.49/v1/01he7e113.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/01he7e113", + "name": "KPJ Healthcare University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 2.75416, + "lng": 101.82511, + "state": null, + "state_code": null, + "city": "Labu", + "geonames_city": { + "id": 1734808, + "city": "Labu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kpju.edu.my" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Malaysia", + "country_code": "MY" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01hg13988.json b/v1.49/v1/01hg13988.json new file mode 100644 index 000000000..6d49a6256 --- /dev/null +++ b/v1.49/v1/01hg13988.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01hg13988", + "name": "Centre d'Études et de Recherches sur le Développement International", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cerdi.org" + ], + "aliases": [], + "acronyms": [ + "CERDI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2190 3223" + ], + "preferred": "0000 0001 2190 3223" + }, + "Wikidata": { + "all": [ + "Q51781081" + ], + "preferred": "Q51781081" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01hxy9878.json b/v1.49/v1/01hxy9878.json new file mode 100644 index 000000000..66fe182f7 --- /dev/null +++ b/v1.49/v1/01hxy9878.json @@ -0,0 +1,167 @@ +{ + "id": "https://ror.org/01hxy9878", + "name": "Royal College of Surgeons in Ireland", + "email_address": null, + "ip_addresses": [], + "established": 1784, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Advanced Materials and BioEngineering Research", + "type": "Child", + "id": "https://ror.org/01c4rxk68" + }, + { + "label": "Royal College of Surgeons in Ireland - Bahrain", + "type": "Child", + "id": "https://ror.org/01h4bh480" + }, + { + "label": "Beaumont Hospital", + "type": "Related", + "id": "https://ror.org/043mzjj67" + }, + { + "label": "Cavan General Hospital", + "type": "Related", + "id": "https://ror.org/031fazd56" + }, + { + "label": "Children's Health Ireland at Crumlin", + "type": "Related", + "id": "https://ror.org/025qedy81" + }, + { + "label": "Connolly Hospital Blanchardstown", + "type": "Related", + "id": "https://ror.org/03h5v7z82" + }, + { + "label": "National Maternity Hospital", + "type": "Related", + "id": "https://ror.org/03jcxa214" + }, + { + "label": "Our Lady of Lourdes Hospital", + "type": "Related", + "id": "https://ror.org/029sr1j73" + }, + { + "label": "Rotunda Hospital", + "type": "Related", + "id": "https://ror.org/05t4vgv93" + }, + { + "label": "St. Luke's General Hospital", + "type": "Related", + "id": "https://ror.org/05p668j08" + }, + { + "label": "Temple Street Children's University Hospital", + "type": "Related", + "id": "https://ror.org/0527gjc91" + }, + { + "label": "University Hospital Waterford", + "type": "Related", + "id": "https://ror.org/007pvy114" + }, + { + "label": "Irish Research eLibrary", + "type": "Related", + "id": "https://ror.org/05c347015" + }, + { + "label": "Royal Victoria Eye and Ear Hospital", + "type": "Related", + "id": "https://ror.org/03z0mke78" + } + ], + "addresses": [ + { + "lat": 53.33306, + "lng": -6.24889, + "state": null, + "state_code": null, + "city": "Dublin", + "geonames_city": { + "id": 2964574, + "city": "Dublin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rcsi.com" + ], + "aliases": [ + "Coláiste Ríoga na Máinleá in Éirinn", + "RCSI University of Medicine and Health Sciences" + ], + "acronyms": [ + "RCSI" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Royal_College_of_Surgeons_in_Ireland", + "labels": [ + { + "label": "Coláiste Ríoga na Máinlianna in Éirinn", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "GRID": { + "all": "grid.4912.e", + "preferred": "grid.4912.e" + }, + "ISNI": { + "all": [ + "0000 0004 0488 7120" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1124228" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01hyzmp36.json b/v1.49/v1/01hyzmp36.json new file mode 100644 index 000000000..c756bbd12 --- /dev/null +++ b/v1.49/v1/01hyzmp36.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/01hyzmp36", + "name": "Shenzhen Ruipuxun Academy for Stem Cell & Regenerative Medicine", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.54554, + "lng": 114.0683, + "state": null, + "state_code": null, + "city": "Shenzhen", + "geonames_city": { + "id": 1795565, + "city": "Shenzhen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rpxyjy.com" + ], + "aliases": [ + "Shenzhen Ruipuxun Academy for Stem Cell and Regenerative Medicine", + "深圳市瑞普逊干细胞再生医学研究院" + ], + "acronyms": [ + "RPXYJY" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01j6ykv32.json b/v1.49/v1/01j6ykv32.json new file mode 100644 index 000000000..758bbbbd8 --- /dev/null +++ b/v1.49/v1/01j6ykv32.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/01j6ykv32", + "name": "Instituto de Investigación e Innovación en Energías Renovables y Medio Ambiente", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Catholic University of Santa María", + "type": "Parent", + "id": "https://ror.org/027ryxs60" + } + ], + "addresses": [ + { + "lat": -16.39889, + "lng": -71.535, + "state": null, + "state_code": null, + "city": "Arequipa", + "geonames_city": { + "id": 3947322, + "city": "Arequipa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://investigacion.ucsm.edu.pe/instituto-innovergy/" + ], + "aliases": [ + "Innovergy Institute", + "Instituto Innovergy", + "Research Institute for Innovation in Renewable Energy and Environment" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01ja5aj48.json b/v1.49/v1/01ja5aj48.json new file mode 100644 index 000000000..9fdbcf14a --- /dev/null +++ b/v1.49/v1/01ja5aj48.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/01ja5aj48", + "name": "Histoire, Archéologie et Littérature des Mondes Anciens", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut National de Recherches Archéologiques Préventives", + "type": "Parent", + "id": "https://ror.org/04andmq85" + }, + { + "label": "Ministère de la Culture", + "type": "Parent", + "id": "https://ror.org/017rnyz40" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://halma.univ-lille.fr" + ], + "aliases": [ + "Centre de recherche HALMA" + ], + "acronyms": [ + "HALMA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2161 4640" + ], + "preferred": "0000 0001 2161 4640" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01jdptv64.json b/v1.49/v1/01jdptv64.json new file mode 100644 index 000000000..c1e9285b9 --- /dev/null +++ b/v1.49/v1/01jdptv64.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01jdptv64", + "name": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.77334, + "lng": 2.07393, + "state": null, + "state_code": null, + "city": "Guyancourt", + "geonames_city": { + "id": 3014143, + "city": "Guyancourt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.limeep-ps.uvsq.fr" + ], + "aliases": [ + "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques" + ], + "acronyms": [ + "LIMEEP", + "LIMEEP-PS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01jvz7e61.json b/v1.49/v1/01jvz7e61.json new file mode 100644 index 000000000..700e63c5d --- /dev/null +++ b/v1.49/v1/01jvz7e61.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/01jvz7e61", + "name": "Virologie et Immunologie Moléculaires", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + } + ], + "addresses": [ + { + "lat": 48.75909, + "lng": 2.16966, + "state": null, + "state_code": null, + "city": "Jouy-en-Josas", + "geonames_city": { + "id": 3012165, + "city": "Jouy-en-Josas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.jouy.inrae.fr/vim" + ], + "aliases": [ + "Unité de Virologie et Immunologie Moléculaires" + ], + "acronyms": [ + "VIM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.452943.d", + "preferred": "grid.452943.d" + }, + "Wikidata": { + "all": [ + "Q30296505" + ], + "preferred": "Q30296505" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01jx6h585.json b/v1.49/v1/01jx6h585.json new file mode 100644 index 000000000..84b3679d5 --- /dev/null +++ b/v1.49/v1/01jx6h585.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/01jx6h585", + "name": "Indian Institute of Management Bodh Gaya", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.69808, + "lng": 84.9869, + "state": null, + "state_code": null, + "city": "Bodh Gaya", + "geonames_city": { + "id": 1275389, + "city": "Bodh Gaya", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iimbg.ac.in" + ], + "aliases": [ + "IIM Bodh Gaya" + ], + "acronyms": [ + "IIM BG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01k4yrm29.json b/v1.49/v1/01k4yrm29.json new file mode 100644 index 000000000..446f7d67b --- /dev/null +++ b/v1.49/v1/01k4yrm29.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/01k4yrm29", + "name": "Korea Institute of Science & Technology Information", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "KISTI National Supercomputing Center", + "type": "Child", + "id": "https://ror.org/00cs28a13" + } + ], + "addresses": [ + { + "lat": 36.34913, + "lng": 127.38493, + "state": null, + "state_code": null, + "city": "Daejeon", + "geonames_city": { + "id": 1835235, + "city": "Daejeon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://en.kisti.re.kr/" + ], + "aliases": [], + "acronyms": [ + "KISTI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Korea_Institute_of_Science_and_Technology_Information", + "labels": [ + { + "label": "한국과학기술정보연구원", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "GRID": { + "all": "grid.249964.4", + "preferred": "grid.249964.4" + }, + "ISNI": { + "all": [ + "0000 0001 0523 5253" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6431653" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01k97gp34.json b/v1.49/v1/01k97gp34.json new file mode 100644 index 000000000..26a7984ca --- /dev/null +++ b/v1.49/v1/01k97gp34.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/01k97gp34", + "name": "TU Dortmund University", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institute for Advanced Study in the Humanities Essen", + "type": "Child", + "id": "https://ror.org/01z1qnm06" + } + ], + "addresses": [ + { + "lat": 51.51494, + "lng": 7.466, + "state": null, + "state_code": null, + "city": "Dortmund", + "geonames_city": { + "id": 2935517, + "city": "Dortmund", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tu-dortmund.de/en/" + ], + "aliases": [ + "TU Dortmund", + "Technical University Dortmund", + "Technical University of Dortmund", + "Universitaet Dortmund", + "Universitat Dortmund", + "University of Dortmund", + "Universität Dortmund" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Technical_University_of_Dortmund", + "labels": [ + { + "label": "Technische Universität Dortmund", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.5675.1", + "preferred": "grid.5675.1" + }, + "ISNI": { + "all": [ + "0000 0001 0416 9637" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q685557" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01kbr1737.json b/v1.49/v1/01kbr1737.json new file mode 100644 index 000000000..e3da9c256 --- /dev/null +++ b/v1.49/v1/01kbr1737.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01kbr1737", + "name": "PHotonique ELectronique et Ingénierie QuantiqueS", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cea.fr/drf/irig/Pages/Laboratoires/Pheliqs.aspx" + ], + "aliases": [], + "acronyms": [ + "PHELIQS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780340" + ], + "preferred": "Q51780340" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01kcrnc96.json b/v1.49/v1/01kcrnc96.json new file mode 100644 index 000000000..685ac1708 --- /dev/null +++ b/v1.49/v1/01kcrnc96.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/01kcrnc96", + "name": "Institut de Planétologie et d'Astrophysique de Grenoble", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Parent", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ipag.osug.fr" + ], + "aliases": [], + "acronyms": [ + "IPAG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.452444.7", + "preferred": "grid.452444.7" + }, + "ISNI": { + "all": [ + "0000 0000 9978 4677" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3152063" + ], + "preferred": "Q3152063" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01m10js32.json b/v1.49/v1/01m10js32.json new file mode 100644 index 000000000..de4e23a62 --- /dev/null +++ b/v1.49/v1/01m10js32.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01m10js32", + "name": "Strasbourg Oncologie Libérale", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.strasbourg-oncologie.fr" + ], + "aliases": [ + "Strasbourg Oncology Liberale" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.492948.a", + "preferred": "grid.492948.a" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01m870m49.json b/v1.49/v1/01m870m49.json new file mode 100644 index 000000000..590e9945d --- /dev/null +++ b/v1.49/v1/01m870m49.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/01m870m49", + "name": "Instituto de Investigación en Cambio Global", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Universidad Rey Juan Carlos", + "type": "Parent", + "id": "https://ror.org/01v5cv687" + } + ], + "addresses": [ + { + "lat": 40.32234, + "lng": -3.86496, + "state": null, + "state_code": null, + "city": "Móstoles", + "geonames_city": { + "id": 3116025, + "city": "Móstoles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iicg-urjc.es" + ], + "aliases": [ + "Global Change Research Institute" + ], + "acronyms": [ + "IICG-URJC" + ], + "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.49/v1/01mdyh744.json b/v1.49/v1/01mdyh744.json new file mode 100644 index 000000000..f88a41d46 --- /dev/null +++ b/v1.49/v1/01mdyh744.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01mdyh744", + "name": "Fonds Erasme", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fondserasme.org" + ], + "aliases": [ + "Erasmus Fund for Medical Research", + "Fonds Erasme pour la Recherche Médicale" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Erasmus Fund", + "iso639": "en" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8306 8368" + ], + "preferred": "0000 0004 8306 8368" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01mjr8a07.json b/v1.49/v1/01mjr8a07.json new file mode 100644 index 000000000..f59264d90 --- /dev/null +++ b/v1.49/v1/01mjr8a07.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01mjr8a07", + "name": "Maharaja Agrasen University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.90908, + "lng": 77.10869, + "state": null, + "state_code": null, + "city": "Solan", + "geonames_city": { + "id": 1255850, + "city": "Solan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mau.ac.in" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Maharaja_Agrasen_University", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q17480916" + ], + "preferred": "Q17480916" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01n6r0e97.json b/v1.49/v1/01n6r0e97.json new file mode 100644 index 000000000..a94f0d0f4 --- /dev/null +++ b/v1.49/v1/01n6r0e97.json @@ -0,0 +1,586 @@ +{ + "id": "https://ror.org/01n6r0e97", + "name": "Leibniz Association", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "ARL – Academy for Territorial Development in the Leibniz Association", + "type": "Child", + "id": "https://ror.org/010b6ag76" + }, + { + "label": "Bernhard Nocht Institute for Tropical Medicine", + "type": "Child", + "id": "https://ror.org/01evwfd48" + }, + { + "label": "Leibniz-Centre for Contemporary History", + "type": "Child", + "id": "https://ror.org/005xmsp39" + }, + { + "label": "Centre for European Economic Research", + "type": "Child", + "id": "https://ror.org/02qnsw591" + }, + { + "label": "DWI – Leibniz Institute for Interactive Materials", + "type": "Child", + "id": "https://ror.org/0186h8060" + }, + { + "label": "Deutsches Museum", + "type": "Child", + "id": "https://ror.org/00a7n7g54" + }, + { + "label": "Deutsches Schiffahrtsmuseum", + "type": "Child", + "id": "https://ror.org/02hdxnq28" + }, + { + "label": "FIZ Karlsruhe – Leibniz Institute for Information Infrastructure", + "type": "Child", + "id": "https://ror.org/0387prb75" + }, + { + "label": "Ferdinand-Braun-Institut", + "type": "Child", + "id": "https://ror.org/02be22443" + }, + { + "label": "Leibniz Institute for Educational Media | Georg Eckert Institute", + "type": "Child", + "id": "https://ror.org/01hnv8x68" + }, + { + "label": "Deutsches Diabetes-Zentrum e.V.", + "type": "Child", + "id": "https://ror.org/04ews3245" + }, + { + "label": "German Institute for Adult Education", + "type": "Child", + "id": "https://ror.org/04565hy55" + }, + { + "label": "German Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/0050vmv35" + }, + { + "label": "German Institute for Global and Area Studies", + "type": "Child", + "id": "https://ror.org/00681ts17" + }, + { + "label": "DIPF | Leibniz Institute for Research and Information in Education", + "type": "Child", + "id": "https://ror.org/0327sr118" + }, + { + "label": "German Institute of Human Nutrition", + "type": "Child", + "id": "https://ror.org/05xdczy51" + }, + { + "label": "Deutsches Bergbau-Museum Bochum", + "type": "Child", + "id": "https://ror.org/03k7cjr94" + }, + { + "label": "ZBW – Leibniz-Informationszentrum Wirtschaft", + "type": "Child", + "id": "https://ror.org/03a96gc12" + }, + { + "label": "Technische Informationsbibliothek (TIB)", + "type": "Child", + "id": "https://ror.org/04aj4c181" + }, + { + "label": "German Primate Center", + "type": "Child", + "id": "https://ror.org/02f99v835" + }, + { + "label": "German Rheumatism Research Centre", + "type": "Child", + "id": "https://ror.org/00shv0x82" + }, + { + "label": "Germanisches Nationalmuseum", + "type": "Child", + "id": "https://ror.org/02fv99722" + }, + { + "label": "Halle Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/03gjpvv92" + }, + { + "label": "Hans Knöll Institute", + "type": "Child", + "id": "https://ror.org/055s37c97" + }, + { + "label": "Hans-Bredow-Institute", + "type": "Child", + "id": "https://ror.org/021eps607" + }, + { + "label": "Leibniz Institute of Virology (LIV)", + "type": "Child", + "id": "https://ror.org/02r2q1d96" + }, + { + "label": "Herder Institute", + "type": "Child", + "id": "https://ror.org/00sngv739" + }, + { + "label": "Ifo Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/045495t75" + }, + { + "label": "Innovations for High Performance Microelectronics", + "type": "Child", + "id": "https://ror.org/0489gab80" + }, + { + "label": "Institut für Zeitgeschichte München–Berlin", + "type": "Child", + "id": "https://ror.org/008pp7a77" + }, + { + "label": "Leibniz Institute of Plant Genetics and Crop Plant Research", + "type": "Child", + "id": "https://ror.org/02skbsp27" + }, + { + "label": "Kiel Institute for the World Economy", + "type": "Child", + "id": "https://ror.org/032yym934" + }, + { + "label": "Leibniz Centre for Agricultural Landscape Research", + "type": "Child", + "id": "https://ror.org/01ygyzs83" + }, + { + "label": "Leibniz Centre for Tropical Marine Research", + "type": "Child", + "id": "https://ror.org/019w00969" + }, + { + "label": "Leibniz Institute DSMZ – German Collection of Microorganisms and Cell Cultures", + "type": "Child", + "id": "https://ror.org/02tyer376" + }, + { + "label": "Leibniz Institute for Agricultural Engineering and Bioeconomy", + "type": "Child", + "id": "https://ror.org/04d62a771" + }, + { + "label": "Leibniz Institute for Analytical Sciences - ISAS", + "type": "Child", + "id": "https://ror.org/02jhqqg57" + }, + { + "label": "Leibniz Institute for Applied Geophysics", + "type": "Child", + "id": "https://ror.org/05txczf44" + }, + { + "label": "Leibniz Institute for Astrophysics Potsdam", + "type": "Child", + "id": "https://ror.org/03mrbr458" + }, + { + "label": "Leibniz Institute for Baltic Sea Research", + "type": "Child", + "id": "https://ror.org/03xh9nq73" + }, + { + "label": "Leibniz Institute for Catalysis", + "type": "Child", + "id": "https://ror.org/029hg0311" + }, + { + "label": "Leibniz Institute for Crystal Growth", + "type": "Child", + "id": "https://ror.org/037p86664" + }, + { + "label": "Leibniz Institute for East and Southeast European Studies", + "type": "Child", + "id": "https://ror.org/039s64n79" + }, + { + "label": "Leibniz Institute for Educational Trajectories", + "type": "Child", + "id": "https://ror.org/04c14rw28" + }, + { + "label": "Leibniz Institute for Financial Research SAFE", + "type": "Child", + "id": "https://ror.org/05wxywg93" + }, + { + "label": "Leibniz Institute for Jewish History and Culture – Simon Dubnow", + "type": "Child", + "id": "https://ror.org/03j1wg370" + }, + { + "label": "Leibniz-Institut für Werkstofforientierte Technologien - IWT", + "type": "Child", + "id": "https://ror.org/01xc6bj88" + }, + { + "label": "Leibniz Institute for Neurobiology", + "type": "Child", + "id": "https://ror.org/01zwmgk08" + }, + { + "label": "Leibniz Institute for Plasma Science and Technology", + "type": "Child", + "id": "https://ror.org/004hd5y14" + }, + { + "label": "Leibniz Institute for Prevention Research and Epidemiology - BIPS", + "type": "Child", + "id": "https://ror.org/02c22vc57" + }, + { + "label": "Leibniz Institute for Psychology", + "type": "Child", + "id": "https://ror.org/0165gz615" + }, + { + "label": "Leibniz Institute for Regional Geography", + "type": "Child", + "id": "https://ror.org/02wt6e634" + }, + { + "label": "Leibniz Institute for Research on Society and Space", + "type": "Child", + "id": "https://ror.org/01rkqb281" + }, + { + "label": "Leibniz Institute for Resilience Research", + "type": "Child", + "id": "https://ror.org/00q5t0010" + }, + { + "label": "Leibniz Institute for Science and Mathematics Education", + "type": "Child", + "id": "https://ror.org/008n8dd57" + }, + { + "label": "Leibniz Institute for Solid State and Materials Research", + "type": "Child", + "id": "https://ror.org/04zb59n70" + }, + { + "label": "Leibniz Institute for Tropospheric Research", + "type": "Child", + "id": "https://ror.org/03a5xsc56" + }, + { + "label": "Leibniz Institute for Zoo and Wildlife Research", + "type": "Child", + "id": "https://ror.org/05nywn832" + }, + { + "label": "Leibniz Institute for the German Language", + "type": "Child", + "id": "https://ror.org/00hvwkt50" + }, + { + "label": "Leibniz Institute for the History and Culture of Eastern Europe (GWZO)", + "type": "Child", + "id": "https://ror.org/04tjfqn96" + }, + { + "label": "GESIS - Leibniz-Institute for the Social Sciences", + "type": "Child", + "id": "https://ror.org/018afyw53" + }, + { + "label": "Leibniz Institute of Agricultural Development in Transition Economies", + "type": "Child", + "id": "https://ror.org/03hkr1v69" + }, + { + "label": "Leibniz Institute of Atmospheric Physics at the Rostock University", + "type": "Child", + "id": "https://ror.org/04enhpe73" + }, + { + "label": "Leibniz Institute of Ecological Urban and Regional Development", + "type": "Child", + "id": "https://ror.org/02t26g637" + }, + { + "label": "Leibniz Institute of Environmental Medicine", + "type": "Child", + "id": "https://ror.org/0163xqp73" + }, + { + "label": "Leibniz Institute of European History", + "type": "Child", + "id": "https://ror.org/059dyrr28" + }, + { + "label": "Leibniz Institute of Freshwater Ecology and Inland Fisheries", + "type": "Child", + "id": "https://ror.org/01nftxb06" + }, + { + "label": "Leibniz Institute of Photonic Technology", + "type": "Child", + "id": "https://ror.org/02se0t636" + }, + { + "label": "Leibniz Institute of Plant Biochemistry", + "type": "Child", + "id": "https://ror.org/01mzk5576" + }, + { + "label": "Leibniz Institute of Polymer Research", + "type": "Child", + "id": "https://ror.org/01tspta37" + }, + { + "label": "Leibniz Institute of Surface Engineering", + "type": "Child", + "id": "https://ror.org/04vx4mk32" + }, + { + "label": "Leibniz Institute of Vegetable and Ornamental Crops", + "type": "Child", + "id": "https://ror.org/01a62v145" + }, + { + "label": "Leibniz Institute on Aging - Fritz Lipmann Institute (FLI)", + "type": "Child", + "id": "https://ror.org/039a53269" + }, + { + "label": "Leibniz Research Centre for Working Environment and Human Factors", + "type": "Child", + "id": "https://ror.org/05cj29x94" + }, + { + "label": "Leibniz-Centre General Linguistics", + "type": "Child", + "id": "https://ror.org/03wz9xk91" + }, + { + "label": "Leibniz-Forschungsinstitut für Molekulare Pharmakologie", + "type": "Child", + "id": "https://ror.org/010s54n03" + }, + { + "label": "Leibniz-Institut für Sonnenphysik", + "type": "Child", + "id": "https://ror.org/006g31f33" + }, + { + "label": "Leibniz-Institut für Wissensmedien", + "type": "Child", + "id": "https://ror.org/03hv28176" + }, + { + "label": "Leibniz-Institute for Food Systems Biology at the Technical University of Munich", + "type": "Child", + "id": "https://ror.org/04sy7nb49" + }, + { + "label": "Leibniz-Institute for New Materials", + "type": "Child", + "id": "https://ror.org/00g656d67" + }, + { + "label": "Leibniz-Zentrum Moderner Orient", + "type": "Child", + "id": "https://ror.org/03ty9wj75" + }, + { + "label": "Leibniz-Zentrum für Literatur- und Kulturforschung", + "type": "Child", + "id": "https://ror.org/00bpta863" + }, + { + "label": "Mathematical Research Institute of Oberwolfach", + "type": "Child", + "id": "https://ror.org/001zbj766" + }, + { + "label": "Max-Born-Institute for Nonlinear Optics and Short Pulse Spectroscopy", + "type": "Child", + "id": "https://ror.org/03jbf6q27" + }, + { + "label": "Museum für Naturkunde", + "type": "Child", + "id": "https://ror.org/052d1a351" + }, + { + "label": "Paul Drude Institute for Solid State Electronics", + "type": "Child", + "id": "https://ror.org/01mk1hj86" + }, + { + "label": "Peace Research Institute Frankfurt", + "type": "Child", + "id": "https://ror.org/021k10z87" + }, + { + "label": "Potsdam Institute for Climate Impact Research", + "type": "Child", + "id": "https://ror.org/03e8s1d88" + }, + { + "label": "RWI – Leibniz Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/02pse8162" + }, + { + "label": "Research Center Borstel - Leibniz Lung Center", + "type": "Child", + "id": "https://ror.org/036ragn25" + }, + { + "label": "LEIZA - Leibniz-Zentrum für Archäologie", + "type": "Child", + "id": "https://ror.org/0483qx226" + }, + { + "label": "Schloss Dagstuhl – Leibniz Center for Informatics", + "type": "Child", + "id": "https://ror.org/00k4h2615" + }, + { + "label": "Senckenberg Society for Nature Research", + "type": "Child", + "id": "https://ror.org/00xmqmx64" + }, + { + "label": "WZB Berlin Social Science Center", + "type": "Child", + "id": "https://ror.org/03k0z2z93" + }, + { + "label": "Weierstrass Institute for Applied Analysis and Stochastics", + "type": "Child", + "id": "https://ror.org/00h1x4t21" + }, + { + "label": "Zoological Research Museum Alexander Koenig", + "type": "Child", + "id": "https://ror.org/00wz4b049" + }, + { + "label": "Leibniz Institute for Immunotherapy", + "type": "Child", + "id": "https://ror.org/00xn1pr13" + }, + { + "label": "Leibniz Institute for the Analysis of Biodiversity Change", + "type": "Child", + "id": "https://ror.org/03k5bhd83" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.leibniz-gemeinschaft.de/en/home/" + ], + "aliases": [ + "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz" + ], + "acronyms": [ + "LG" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Leibniz_Association", + "labels": [ + { + "label": "Leibniz-Gemeinschaft", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.413453.4", + "preferred": "grid.413453.4" + }, + "ISNI": { + "all": [ + "0000 0001 2224 3060" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q680090" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01ndqne76.json b/v1.49/v1/01ndqne76.json new file mode 100644 index 000000000..7aaf8aa6b --- /dev/null +++ b/v1.49/v1/01ndqne76.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/01ndqne76", + "name": "Action Contre la Faim", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.actioncontrelafaim.org/" + ], + "aliases": [ + "ACF International", + "Action Contre la Faim" + ], + "acronyms": [ + "ACF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Action_Against_Hunger", + "labels": [ + { + "label": "Action Against Hunger", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.452229.a", + "preferred": "grid.452229.a" + }, + "ISNI": { + "all": [ + "0000 0004 0643 9612" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q343624" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01nfvkq89.json b/v1.49/v1/01nfvkq89.json new file mode 100644 index 000000000..2217144ab --- /dev/null +++ b/v1.49/v1/01nfvkq89.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/01nfvkq89", + "name": "UMR QualiSud", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Reunion Island", + "type": "Parent", + "id": "https://ror.org/005ypkf75" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université d'Avignon et des Pays de Vaucluse", + "type": "Parent", + "id": "https://ror.org/00mfpxb84" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Rennes-Angers", + "type": "Parent", + "id": "https://ror.org/01s3fs709" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://umr-qualisud.cirad.fr" + ], + "aliases": [ + "Démarche intégrée pour l'obtention d'aliments de qualité" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51779834" + ], + "preferred": "Q51779834" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01nrtdp55.json b/v1.49/v1/01nrtdp55.json new file mode 100644 index 000000000..e49981d84 --- /dev/null +++ b/v1.49/v1/01nrtdp55.json @@ -0,0 +1,277 @@ +{ + "id": "https://ror.org/01nrtdp55", + "name": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centrale Marseille", + "type": "Parent", + "id": "https://ror.org/040baw385" + }, + { + "label": "Institut National des Sciences Appliquées de Toulouse", + "type": "Parent", + "id": "https://ror.org/01h8pf755" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "Parent", + "id": "https://ror.org/03sgyqj04" + }, + { + "label": "École Nationale Supérieure de Chimie de Rennes", + "type": "Parent", + "id": "https://ror.org/01h0ffh48" + }, + { + "label": "Institut National des Sciences Appliquées de Rennes", + "type": "Parent", + "id": "https://ror.org/04xaa4j22" + }, + { + "label": "Université de Pau et des Pays de l'Adour", + "type": "Parent", + "id": "https://ror.org/01frn9647" + }, + { + "label": "Université Paris Dauphine-PSL", + "type": "Parent", + "id": "https://ror.org/052bz7812" + }, + { + "label": "Chimie ParisTech", + "type": "Parent", + "id": "https://ror.org/05q65zh81" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "Muséum national d'Histoire naturelle", + "type": "Parent", + "id": "https://ror.org/03wkt5x30" + }, + { + "label": "École des Ponts ParisTech", + "type": "Parent", + "id": "https://ror.org/02nwvxz07" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Parent", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Université Paris-Est Créteil", + "type": "Parent", + "id": "https://ror.org/05ggc9x40" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Polytechnique de Bordeaux", + "type": "Parent", + "id": "https://ror.org/054qv7y42" + }, + { + "label": "Université de Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Aix-Marseille Université", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Parent", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "CY Cergy Paris Université", + "type": "Parent", + "id": "https://ror.org/043htjv09" + }, + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université Gustave Eiffel", + "type": "Parent", + "id": "https://ror.org/03x42jk29" + }, + { + "label": "Nantes Université", + "type": "Parent", + "id": "https://ror.org/03gnr7b55" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://wiki.lct.jussieu.fr/gdrnbody/" + ], + "aliases": [ + "Groupement de Recherche : Problème quantique à N corps en chimie et physique", + "Groupement de Recherche NBODY: Quantum n-body problem in chemistry and physics" + ], + "acronyms": [ + "GDR NBODY" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "GDR NBODY: Quantum n-body problem in chemistry and physics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123694952" + ], + "preferred": "Q123694952" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01ntvtb47.json b/v1.49/v1/01ntvtb47.json new file mode 100644 index 000000000..dc16215de --- /dev/null +++ b/v1.49/v1/01ntvtb47.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01ntvtb47", + "name": "Alabama Humanities Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 33.52066, + "lng": -86.80249, + "state": null, + "state_code": null, + "city": "Birmingham", + "geonames_city": { + "id": 4049979, + "city": "Birmingham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.alabamahumanities.org/" + ], + "aliases": [], + "acronyms": [ + "AHF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446361.2", + "preferred": "grid.446361.2" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01nwn6r98.json b/v1.49/v1/01nwn6r98.json new file mode 100644 index 000000000..001bed494 --- /dev/null +++ b/v1.49/v1/01nwn6r98.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/01nwn6r98", + "name": "Sinopharm Animal Health Co., Ltd. (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.58333, + "lng": 114.26667, + "state": null, + "state_code": null, + "city": "Wuhan", + "geonames_city": { + "id": 1791247, + "city": "Wuhan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.spah.com.cn" + ], + "aliases": [ + "Sinopharm Animal Health", + "Sinopharm Animal Health Co." + ], + "acronyms": [ + "SPAH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Sinopharm Animal Health Co., Ltd.", + "iso639": "en" + }, + { + "label": "国药集团动物保健股份有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01p178v10.json b/v1.49/v1/01p178v10.json new file mode 100644 index 000000000..892278ca7 --- /dev/null +++ b/v1.49/v1/01p178v10.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/01p178v10", + "name": "Institut de Recherche en Santé, Environnement et Travail", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Université d'Angers", + "type": "Parent", + "id": "https://ror.org/04yrqp957" + }, + { + "label": "École des Hautes Études en Santé Publique", + "type": "Parent", + "id": "https://ror.org/01sc83v92" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.irset.org/" + ], + "aliases": [], + "acronyms": [ + "IRSET" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Research Institute for Environmental and Occupation Health", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462341.6", + "preferred": "grid.462341.6" + }, + "Wikidata": { + "all": [ + "Q30261433" + ], + "preferred": "Q30261433" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01pe3t004.json b/v1.49/v1/01pe3t004.json new file mode 100644 index 000000000..d67bc14ba --- /dev/null +++ b/v1.49/v1/01pe3t004.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/01pe3t004", + "name": "Indian Institute of Science Education and Research Thiruvananthapuram", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 8.4855, + "lng": 76.94924, + "state": null, + "state_code": null, + "city": "Thiruvananthapuram", + "geonames_city": { + "id": 1254163, + "city": "Thiruvananthapuram", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iisertvm.ac.in" + ], + "aliases": [ + "IISER Thiruvananthapuram" + ], + "acronyms": [ + "IISER-TVM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Indian_Institute_of_Science_Education_and_Research,_Thiruvananthapuram", + "labels": [ + { + "label": "आइआइएसइआर तिरूअनंतपुरम", + "iso639": "ne" + }, + { + "label": "भारतीय विज्ञान शिक्षा एवं अनुसंधान संस्थान तिरुवनंतपुरम", + "iso639": "hi" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.462378.c", + "preferred": "grid.462378.c" + }, + "ISNI": { + "all": [ + "0000 0004 1764 2464" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6020720" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01px0dw39.json b/v1.49/v1/01px0dw39.json new file mode 100644 index 000000000..31346500d --- /dev/null +++ b/v1.49/v1/01px0dw39.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01px0dw39", + "name": "Pratap University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 26.91962, + "lng": 75.78781, + "state": null, + "state_code": null, + "city": "Jaipur", + "geonames_city": { + "id": 1269515, + "city": "Jaipur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pratapuniversity.in" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pratap_University", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q21190923" + ], + "preferred": "Q21190923" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01q3kj769.json b/v1.49/v1/01q3kj769.json new file mode 100644 index 000000000..f451163bf --- /dev/null +++ b/v1.49/v1/01q3kj769.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/01q3kj769", + "name": "Laboratoire de Droit International et Européen", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/laboratoire-de-droit-international-et-europeen-ladie" + ], + "aliases": [ + "Laboratoire de Droit International et Européen (LADIE)" + ], + "acronyms": [ + "LADIE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01q3rcc14.json b/v1.49/v1/01q3rcc14.json new file mode 100644 index 000000000..41ab4c769 --- /dev/null +++ b/v1.49/v1/01q3rcc14.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01q3rcc14", + "name": "Indiana Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 39.76838, + "lng": -86.15804, + "state": null, + "state_code": null, + "city": "Indianapolis", + "geonames_city": { + "id": 4259418, + "city": "Indianapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://indianahumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Indiana_Humanities", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447008.f", + "preferred": "grid.447008.f" + }, + "ISNI": { + "all": [ + "0000 0001 0306 5983" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01q8rrk81.json b/v1.49/v1/01q8rrk81.json new file mode 100644 index 000000000..e2cc091bf --- /dev/null +++ b/v1.49/v1/01q8rrk81.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/01q8rrk81", + "name": "Stephan Angeloff Institute of Microbiology", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Bulgarian Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/01x8hew03" + }, + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 42.69751, + "lng": 23.32415, + "state": null, + "state_code": null, + "city": "Sofia", + "geonames_city": { + "id": 727011, + "city": "Sofia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.microbio.bas.bg/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "ИНСТИТУТЪТ ПО МИКРОБИОЛОГИЯ Стефан Ангелов", + "iso639": "bg" + } + ], + "country": { + "country_name": "Bulgaria", + "country_code": "BG" + }, + "external_ids": { + "GRID": { + "all": "grid.419850.1", + "preferred": "grid.419850.1" + }, + "ISNI": { + "all": [ + "0000 0004 0486 5685" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01qm1tk92.json b/v1.49/v1/01qm1tk92.json new file mode 100644 index 000000000..83d3ec142 --- /dev/null +++ b/v1.49/v1/01qm1tk92.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/01qm1tk92", + "name": "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CY Cergy Paris Université", + "type": "Parent", + "id": "https://ror.org/043htjv09" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Ministère de la Justice", + "type": "Parent", + "id": "https://ror.org/02ggnyt49" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + } + ], + "addresses": [ + { + "lat": 48.77334, + "lng": 2.07393, + "state": null, + "state_code": null, + "city": "Guyancourt", + "geonames_city": { + "id": 3014143, + "city": "Guyancourt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cesdip.fr/" + ], + "aliases": [ + "Laboratoire CESDIP" + ], + "acronyms": [ + "CESDIP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503089.7", + "preferred": "grid.503089.7" + }, + "ISNI": { + "all": [ + "0000 0001 2292 2645" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51780215" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01qygwc68.json b/v1.49/v1/01qygwc68.json new file mode 100644 index 000000000..ad7b3edf9 --- /dev/null +++ b/v1.49/v1/01qygwc68.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01qygwc68", + "name": "Evaluation des technologies de santé et des pratiques médicales", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://metrics.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "METRICS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01r19bq53.json b/v1.49/v1/01r19bq53.json new file mode 100644 index 000000000..c2e73b6d0 --- /dev/null +++ b/v1.49/v1/01r19bq53.json @@ -0,0 +1,125 @@ +{ + "id": "https://ror.org/01r19bq53", + "name": "Replication des chromosomes eucaryotes et ses points de contrôle", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "GDR Replication des chromosomes eucaryotes et ses points de contrôle", + "Groupement de Recherche Replication des chromosomes eucaryotes et ses points de contrôle" + ], + "acronyms": [ + "REPLICHROM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695129" + ], + "preferred": "Q123695129" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01r22mr83.json b/v1.49/v1/01r22mr83.json new file mode 100644 index 000000000..1eb0fb4e8 --- /dev/null +++ b/v1.49/v1/01r22mr83.json @@ -0,0 +1,137 @@ +{ + "id": "https://ror.org/01r22mr83", + "name": "University of Ghana", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Noguchi Memorial Institute for Medical Research", + "type": "Child", + "id": "https://ror.org/00f1qr933" + }, + { + "label": "Catholic University College of Ghana", + "type": "Related", + "id": "https://ror.org/0502vxg14" + }, + { + "label": "Centre for African Wetlands", + "type": "Related", + "id": "https://ror.org/0390fys98" + }, + { + "label": "Korle Bu Teaching Hospital", + "type": "Related", + "id": "https://ror.org/01vzp6a32" + }, + { + "label": "Mount Mary College of Education", + "type": "Related", + "id": "https://ror.org/048pp2f81" + }, + { + "label": "Accra College of Education", + "type": "Related", + "id": "https://ror.org/03nyfz802" + }, + { + "label": "Enchi College of Education", + "type": "Related", + "id": "https://ror.org/03qpa4m87" + }, + { + "label": "Peki College of Education", + "type": "Related", + "id": "https://ror.org/02r9kbs29" + }, + { + "label": "Evangelical Presbyterian College of Education, Amedzofe", + "type": "Related", + "id": "https://ror.org/03pq2y959" + }, + { + "label": "Gbewaa College of Education", + "type": "Related", + "id": "https://ror.org/0305eqz85" + } + ], + "addresses": [ + { + "lat": 5.55602, + "lng": -0.1969, + "state": null, + "state_code": null, + "city": "Accra", + "geonames_city": { + "id": 2306104, + "city": "Accra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ug.edu.gh/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Ghana", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.8652.9", + "preferred": "grid.8652.9" + }, + "ISNI": { + "all": [ + "0000 0004 1937 1485" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2303765" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01r8ww931.json b/v1.49/v1/01r8ww931.json new file mode 100644 index 000000000..28b03335b --- /dev/null +++ b/v1.49/v1/01r8ww931.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01r8ww931", + "name": "North Carolina Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 35.22709, + "lng": -80.84313, + "state": null, + "state_code": null, + "city": "Charlotte", + "geonames_city": { + "id": 4460243, + "city": "Charlotte", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://nchumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447195.a", + "preferred": "grid.447195.a" + }, + "ISNI": { + "all": [ + "0000 0004 7776 8317" + ], + "preferred": "0000 0004 7776 8317" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01rcjd521.json b/v1.49/v1/01rcjd521.json new file mode 100644 index 000000000..ebcf68efb --- /dev/null +++ b/v1.49/v1/01rcjd521.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01rcjd521", + "name": "Israel National Research Center for Electrochemical Propulsion", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.08227, + "lng": 34.81065, + "state": null, + "state_code": null, + "city": "Ramat Gan", + "geonames_city": { + "id": 293788, + "city": "Ramat Gan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "INREP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Israel", + "country_code": "IL" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7832 1592" + ], + "preferred": "0000 0004 7832 1592" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01rs1gy10.json b/v1.49/v1/01rs1gy10.json new file mode 100644 index 000000000..44dcfa2df --- /dev/null +++ b/v1.49/v1/01rs1gy10.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/01rs1gy10", + "name": "CEA Cadarache", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Direction des énergies", + "type": "Parent", + "id": "https://ror.org/03cwzta72" + } + ], + "addresses": [ + { + "lat": 43.72484, + "lng": 5.81168, + "state": null, + "state_code": null, + "city": "Vinon-sur-Verdon", + "geonames_city": { + "id": 2968023, + "city": "Vinon-sur-Verdon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cadarache.cea.fr/cad/Pages/Activites/Biologie.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de Cadarache", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457335.3", + "preferred": "grid.457335.3" + }, + "ISNI": { + "all": [ + "0000 0004 0624 0072" + ], + "preferred": "0000 0004 0624 0072" + }, + "Wikidata": { + "all": [ + "Q855102" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01s3kre18.json b/v1.49/v1/01s3kre18.json new file mode 100644 index 000000000..8a1e6ca03 --- /dev/null +++ b/v1.49/v1/01s3kre18.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01s3kre18", + "name": "Colorado Technical University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.00027, + "lng": -105.50083, + "state": null, + "state_code": null, + "city": "Colorado", + "geonames_city": { + "id": 5417618, + "city": "Colorado", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.coloradotech.edu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Colorado_Technical_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0391 5871" + ], + "preferred": "0000 0004 0391 5871" + }, + "Wikidata": { + "all": [ + "Q5148968" + ], + "preferred": "Q5148968" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01s6bpp92.json b/v1.49/v1/01s6bpp92.json new file mode 100644 index 000000000..b06898b27 --- /dev/null +++ b/v1.49/v1/01s6bpp92.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01s6bpp92", + "name": "International Open University", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 13.45274, + "lng": -16.57803, + "state": null, + "state_code": null, + "city": "Banjul", + "geonames_city": { + "id": 2413876, + "city": "Banjul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iou.edu.gm" + ], + "aliases": [ + "Islamic Online University" + ], + "acronyms": [ + "IOU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_Open_University", + "labels": [], + "country": { + "country_name": "The Gambia", + "country_code": "GM" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 5909 1912" + ], + "preferred": "0000 0004 5909 1912" + }, + "Wikidata": { + "all": [ + "Q16850113" + ], + "preferred": "Q16850113" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01sewfq88.json b/v1.49/v1/01sewfq88.json new file mode 100644 index 000000000..5adb45fc1 --- /dev/null +++ b/v1.49/v1/01sewfq88.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01sewfq88", + "name": "Universidad Isalud", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -34.61315, + "lng": -58.37723, + "state": null, + "state_code": null, + "city": "Buenos Aires", + "geonames_city": { + "id": 3435910, + "city": "Buenos Aires", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.isalud.edu.ar" + ], + "aliases": [ + "ISALUD University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": { + "GRID": { + "all": "grid.441634.0", + "preferred": "grid.441634.0" + }, + "ISNI": { + "all": [ + "0000 0004 4690 323X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q29045289" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01sgwka45.json b/v1.49/v1/01sgwka45.json new file mode 100644 index 000000000..b97549111 --- /dev/null +++ b/v1.49/v1/01sgwka45.json @@ -0,0 +1,234 @@ +{ + "id": "https://ror.org/01sgwka45", + "name": "Microscopie Fonctionnelle du Vivant", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National Polytechnique de Toulouse", + "type": "Parent", + "id": "https://ror.org/033p9g875" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Université Jean Monnet", + "type": "Parent", + "id": "https://ror.org/04yznqr36" + }, + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Parent", + "id": "https://ror.org/03hypw319" + }, + { + "label": "Université de Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Université de Haute-Alsace", + "type": "Parent", + "id": "https://ror.org/04k8k6n84" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "ESPCI Paris", + "type": "Parent", + "id": "https://ror.org/03zx86w41" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + }, + { + "label": "Université de Rouen Normandie", + "type": "Parent", + "id": "https://ror.org/03nhjew95" + }, + { + "label": "Université de Poitiers", + "type": "Parent", + "id": "https://ror.org/04xhy8q59" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Parent", + "id": "https://ror.org/00e96v939" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Parent", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Biophotonique Microscopie Fonctionnelle du Vivant", + "GDR Microscopie Fonctionnelle du Vivant", + "Groupement de Recherche Microscopie Fonctionnelle du Vivant" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782436" + ], + "preferred": "Q51782436" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01sxpmm41.json b/v1.49/v1/01sxpmm41.json new file mode 100644 index 000000000..7582b6a7a --- /dev/null +++ b/v1.49/v1/01sxpmm41.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/01sxpmm41", + "name": "Yanbu Industrial College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.99944, + "lng": 38.2275, + "state": null, + "state_code": null, + "city": "Madīnat Yanbu‘ aş Şinā‘īyah", + "geonames_city": { + "id": 104625, + "city": "Madīnat Yanbu‘ aş Şinā‘īyah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.rcyci.edu.sa" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Yanbu_Industrial_College", + "labels": [ + { + "label": "كلية ينبع الصناعية", + "iso639": "ar" + } + ], + "country": { + "country_name": "Saudi Arabia", + "country_code": "SA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q8048280" + ], + "preferred": "Q8048280" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01t05f005.json b/v1.49/v1/01t05f005.json new file mode 100644 index 000000000..05efc44be --- /dev/null +++ b/v1.49/v1/01t05f005.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/01t05f005", + "name": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.spms.centralesupelec.fr" + ], + "aliases": [ + "Structures, propriétés et modélisation des solides" + ], + "acronyms": [ + "SPMS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781169" + ], + "preferred": "Q51781169" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01t4k8953.json b/v1.49/v1/01t4k8953.json new file mode 100644 index 000000000..6559cf573 --- /dev/null +++ b/v1.49/v1/01t4k8953.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01t4k8953", + "name": "Laboratoire de Psychologie Sociale et Cognitive", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lapsco.univ-bpclermont.fr/?lang=fr" + ], + "aliases": [], + "acronyms": [ + "LAPSCO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463956.b", + "preferred": "grid.463956.b" + }, + "ISNI": { + "all": [ + "0000 0000 9340 9884" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01tkejf16.json b/v1.49/v1/01tkejf16.json new file mode 100644 index 000000000..f7453a33f --- /dev/null +++ b/v1.49/v1/01tkejf16.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/01tkejf16", + "name": "Intergroupe Francophone de Cancérologie Thoracique", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ifct.fr/index.php/en/" + ], + "aliases": [], + "acronyms": [ + "IFCT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French Cooperative Thoracic Group", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.488331.5", + "preferred": "grid.488331.5" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01tv2ca73.json b/v1.49/v1/01tv2ca73.json new file mode 100644 index 000000000..3cde07c91 --- /dev/null +++ b/v1.49/v1/01tv2ca73.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/01tv2ca73", + "name": "Laboratoire de Spectroscopie pour les Interactions, la Réactivité et l'Environnement", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lasir.cnrs.fr" + ], + "aliases": [ + "Laboratoire de Spectrochimie Infrarouge et Raman", + "Laboratory of Infrared and Raman Spectrochemistry" + ], + "acronyms": [ + "LASIR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463735.0", + "preferred": "grid.463735.0" + }, + "ISNI": { + "all": [ + "0000 0001 0062 4962" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262137" + ], + "preferred": "Q30262137" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01ty7bz40.json b/v1.49/v1/01ty7bz40.json new file mode 100644 index 000000000..7882eaa35 --- /dev/null +++ b/v1.49/v1/01ty7bz40.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01ty7bz40", + "name": "Humanities Iowa", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 41.66113, + "lng": -91.53017, + "state": null, + "state_code": null, + "city": "Iowa City", + "geonames_city": { + "id": 4862034, + "city": "Iowa City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.humanitiesiowa.org/" + ], + "aliases": [], + "acronyms": [ + "HI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446927.a", + "preferred": "grid.446927.a" + }, + "ISNI": { + "all": [ + "0000 0004 1381 1320" + ], + "preferred": "0000 0004 1381 1320" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01v5cv687.json b/v1.49/v1/01v5cv687.json new file mode 100644 index 000000000..470cf5b54 --- /dev/null +++ b/v1.49/v1/01v5cv687.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/01v5cv687", + "name": "Universidad Rey Juan Carlos", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Instituto de Investigación en Cambio Global", + "type": "Child", + "id": "https://ror.org/01m870m49" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.urjc.es/" + ], + "aliases": [ + "King Juan Carlos University" + ], + "acronyms": [ + "URJC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/King_Juan_Carlos_University", + "labels": [ + { + "label": "Rey Juan Carlos University", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.28479.30", + "preferred": "grid.28479.30" + }, + "ISNI": { + "all": [ + "0000 0001 2206 5938" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2000629" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01vjab145.json b/v1.49/v1/01vjab145.json new file mode 100644 index 000000000..2cc944c2f --- /dev/null +++ b/v1.49/v1/01vjab145.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01vjab145", + "name": "Missouri Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 38.62727, + "lng": -90.19789, + "state": null, + "state_code": null, + "city": "St Louis", + "geonames_city": { + "id": 4407066, + "city": "St Louis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.mohumanities.org/" + ], + "aliases": [], + "acronyms": [ + "MHC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Missouri_Humanities_Council", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447012.4", + "preferred": "grid.447012.4" + }, + "ISNI": { + "all": [ + "0000 0000 8885 6567" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01vr20t27.json b/v1.49/v1/01vr20t27.json new file mode 100644 index 000000000..4cb645263 --- /dev/null +++ b/v1.49/v1/01vr20t27.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/01vr20t27", + "name": "Czech Academy of Sciences, Institute of Czech Literature", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + } + ], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ucl.cas.cz" + ], + "aliases": [ + "Institute of Czech Literature of the Czech Academy of Sciences" + ], + "acronyms": [ + "ÚČL AV ČR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Ústav pro českou literaturu AV ČR", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448108.1", + "preferred": "grid.448108.1" + }, + "ISNI": { + "all": [ + "0000 0004 0428 8574", + "0000 0001 2109 5895" + ], + "preferred": "0000 0001 2109 5895" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01vrz7264.json b/v1.49/v1/01vrz7264.json new file mode 100644 index 000000000..b63d95bf0 --- /dev/null +++ b/v1.49/v1/01vrz7264.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/01vrz7264", + "name": "Génétique et biologie du développement", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://curie.fr/unite/umr3215-u934" + ], + "aliases": [ + "Genetics and Developmental Biology Génétique et biologie du développement" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Genetics and Developmental Biology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783077" + ], + "preferred": "Q51783077" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01vx64p53.json b/v1.49/v1/01vx64p53.json new file mode 100644 index 000000000..6c15fe8b5 --- /dev/null +++ b/v1.49/v1/01vx64p53.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/01vx64p53", + "name": "Istituto Nazionale di Alta Matematica Francesco Severi", + "email_address": null, + "ip_addresses": [], + "established": 1939, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Gruppo Nazionale per l'Analisi Matematica, la Probabilità e le loro Applicazioni", + "type": "Child", + "id": "https://ror.org/02ktjph70" + }, + { + "label": "Gruppo Nazionale per la Fisica Matematica", + "type": "Child", + "id": "https://ror.org/01d6bq278" + }, + { + "label": "Gruppo Nazionale per il Calcolo Scientifico", + "type": "Child", + "id": "https://ror.org/02rnys730" + }, + { + "label": "Gruppo Nazionale per le Strutture Algebriche, Geometriche e le loro Applicazioni", + "type": "Child", + "id": "https://ror.org/00b9dvn87" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.altamatematica.it/en/bandi" + ], + "aliases": [ + "Istituto Nazionale di Alta Matematica" + ], + "acronyms": [ + "INdAM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Istituto_Nazionale_di_Alta_Matematica_Francesco_Severi", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.468451.a", + "preferred": "grid.468451.a" + }, + "ISNI": { + "all": [ + "0000 0001 2106 8707" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3803639" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01w1erp60.json b/v1.49/v1/01w1erp60.json new file mode 100644 index 000000000..48ba196b5 --- /dev/null +++ b/v1.49/v1/01w1erp60.json @@ -0,0 +1,186 @@ +{ + "id": "https://ror.org/01w1erp60", + "name": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Université de La Rochelle", + "type": "Parent", + "id": "https://ror.org/04mv1z119" + }, + { + "label": "École Centrale de Nantes", + "type": "Parent", + "id": "https://ror.org/03nh7d505" + }, + { + "label": "École Centrale de Lyon", + "type": "Parent", + "id": "https://ror.org/05s6rge65" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "Parent", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "ESPCI Paris", + "type": "Parent", + "id": "https://ror.org/03zx86w41" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Électricité de France (France)", + "type": "Parent", + "id": "https://ror.org/03wb8xz10" + }, + { + "label": "Institut national de l'environnement industriel et des risques", + "type": "Parent", + "id": "https://ror.org/034yrjf77" + }, + { + "label": "Bureau de Recherches Géologiques et Minières", + "type": "Parent", + "id": "https://ror.org/05hnb7x64" + }, + { + "label": "Agence Nationale pour la Gestion des Déchets Radioactifs", + "type": "Parent", + "id": "https://ror.org/04qkhgw46" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université Gustave Eiffel", + "type": "Parent", + "id": "https://ror.org/03x42jk29" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 46.16308, + "lng": -1.15222, + "state": null, + "state_code": null, + "city": "La Rochelle", + "geonames_city": { + "id": 3006787, + "city": "La Rochelle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://gdr-mege.univ-lr.fr" + ], + "aliases": [ + "GDR Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "GDR MeGe", + "GDR Multi-Physics and Multi-scale Couplings in Geo-environmental Mechanics", + "Groupement de Recherche Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "Groupement de Recherche Multi-Physics and Multi-scale Couplings in Geo-environmental Mechanics", + "IRN GeoMech" + ], + "acronyms": [ + "MeGe" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Multi-Physics and Multi-scale Couplings in Geo-environmental Mechanics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782215" + ], + "preferred": "Q51782215" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01wck0s05.json b/v1.49/v1/01wck0s05.json new file mode 100644 index 000000000..910cecfa3 --- /dev/null +++ b/v1.49/v1/01wck0s05.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/01wck0s05", + "name": "Hangzhou City University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.29365, + "lng": 120.16142, + "state": null, + "state_code": null, + "city": "Hangzhou", + "geonames_city": { + "id": 1808926, + "city": "Hangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.zucc.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E6%B5%99%E5%A4%A7%E5%9F%8E%E5%B8%82%E5%AD%A6%E9%99%A2", + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01wjejq96.json b/v1.49/v1/01wjejq96.json new file mode 100644 index 000000000..5bbe3583d --- /dev/null +++ b/v1.49/v1/01wjejq96.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/01wjejq96", + "name": "Yonsei University", + "email_address": null, + "ip_addresses": [], + "established": 1885, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "Child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Gangnam Severance Hospital", + "type": "Related", + "id": "https://ror.org/04ajwkn20" + }, + { + "label": "Severance Hospital", + "type": "Related", + "id": "https://ror.org/044kjp413" + }, + { + "label": "Wonju Severance Christian Hospital", + "type": "Related", + "id": "https://ror.org/01b346b72" + }, + { + "label": "Yonsei University Health System", + "type": "Related", + "id": "https://ror.org/04sze3c15" + }, + { + "label": "Yonsei University College of Dentistry", + "type": "Child", + "id": "https://ror.org/00tfaab58" + } + ], + "addresses": [ + { + "lat": 37.566, + "lng": 126.9784, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835848, + "city": "Seoul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.yonsei.ac.kr/eng/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Yonsei_University", + "labels": [ + { + "label": "연세대학교", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "GRID": { + "all": "grid.15444.30", + "preferred": "grid.15444.30" + }, + "ISNI": { + "all": [ + "0000 0004 0470 5454" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q39988" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01wjxf448.json b/v1.49/v1/01wjxf448.json new file mode 100644 index 000000000..a53a1f3a0 --- /dev/null +++ b/v1.49/v1/01wjxf448.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01wjxf448", + "name": "Conseil Régional d'Aquitaine", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.84044, + "lng": -0.5805, + "state": null, + "state_code": null, + "city": "Bordeaux", + "geonames_city": { + "id": 3031582, + "city": "Bordeaux", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.aquitaine.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Aquitaine_Regional_Council", + "labels": [ + { + "label": "Aquitaine Regional Council", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.433250.3", + "preferred": "grid.433250.3" + }, + "ISNI": { + "all": [ + "0000 0001 1943 8932" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01wp2jz98.json b/v1.49/v1/01wp2jz98.json new file mode 100644 index 000000000..c9cc69ff9 --- /dev/null +++ b/v1.49/v1/01wp2jz98.json @@ -0,0 +1,164 @@ +{ + "id": "https://ror.org/01wp2jz98", + "name": "European X-Ray Free-Electron Laser", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Deutsches Elektronen-Synchrotron DESY", + "type": "Parent", + "id": "https://ror.org/01js2sh04" + }, + { + "label": "Danish Agency for Science and Higher Education", + "type": "Parent", + "id": "https://ror.org/02sptwz63" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "National Research, Development and Innovation Office", + "type": "Parent", + "id": "https://ror.org/03g2am276" + }, + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "National Research Council", + "type": "Parent", + "id": "https://ror.org/04zaypm56" + }, + { + "label": "National Centre for Nuclear Research", + "type": "Parent", + "id": "https://ror.org/00nzsxq20" + }, + { + "label": "Kurchatov Institute", + "type": "Parent", + "id": "https://ror.org/00n1nz186" + }, + { + "label": "Ministry of Education, Science, Research and Sport of the Slovak Republic", + "type": "Parent", + "id": "https://ror.org/044gwpv05" + }, + { + "label": "Ministerio de Ciencia, Innovación y Universidades", + "type": "Parent", + "id": "https://ror.org/05r0vyz12" + }, + { + "label": "Swedish Research Council", + "type": "Parent", + "id": "https://ror.org/03zttf063" + }, + { + "label": "UK Research and Innovation", + "type": "Parent", + "id": "https://ror.org/001aqnf71" + }, + { + "label": "State Secretariat for Education, Research and Innovation", + "type": "Parent", + "id": "https://ror.org/00mt8k932" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + } + ], + "addresses": [ + { + "lat": 54.05, + "lng": 9.48333, + "state": null, + "state_code": null, + "city": "Schenefeld", + "geonames_city": { + "id": 2839763, + "city": "Schenefeld", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.xfel.eu" + ], + "aliases": [ + "European XFEL" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_x-ray_free_electron_laser", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.434729.f", + "preferred": "grid.434729.f" + }, + "ISNI": { + "all": [ + "0000 0004 0590 2900" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q462592" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01wsc1g26.json b/v1.49/v1/01wsc1g26.json new file mode 100644 index 000000000..06317a749 --- /dev/null +++ b/v1.49/v1/01wsc1g26.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/01wsc1g26", + "name": "Universitas Prasetiya Mulya", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -6.21462, + "lng": 106.84513, + "state": null, + "state_code": null, + "city": "Jakarta", + "geonames_city": { + "id": 1642911, + "city": "Jakarta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.prasetiyamulya.ac.id" + ], + "aliases": [ + "Prasetiya Mulya University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Universitas_Prasetiya_Mulya", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q23807281" + ], + "preferred": "Q23807281" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01x6z5t49.json b/v1.49/v1/01x6z5t49.json new file mode 100644 index 000000000..f60b8b7cc --- /dev/null +++ b/v1.49/v1/01x6z5t49.json @@ -0,0 +1,292 @@ +{ + "id": "https://ror.org/01x6z5t49", + "name": "Fédération de Recherche Spectroscopies de Photoémission", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Institut National Polytechnique de Toulouse", + "type": "Parent", + "id": "https://ror.org/033p9g875" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "Parent", + "id": "https://ror.org/03sgyqj04" + }, + { + "label": "École Nationale Supérieure de Chimie de Rennes", + "type": "Parent", + "id": "https://ror.org/01h0ffh48" + }, + { + "label": "Institut National des Sciences Appliquées de Rennes", + "type": "Parent", + "id": "https://ror.org/04xaa4j22" + }, + { + "label": "Mines Saint-Étienne", + "type": "Parent", + "id": "https://ror.org/05a1dws80" + }, + { + "label": "Université d'Orléans", + "type": "Parent", + "id": "https://ror.org/014zrew76" + }, + { + "label": "École Centrale de Lille", + "type": "Parent", + "id": "https://ror.org/01x441g73" + }, + { + "label": "Université d'Artois", + "type": "Parent", + "id": "https://ror.org/053x9s498" + }, + { + "label": "Université de Pau et des Pays de l'Adour", + "type": "Parent", + "id": "https://ror.org/01frn9647" + }, + { + "label": "Université de Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Université de Haute-Alsace", + "type": "Parent", + "id": "https://ror.org/04k8k6n84" + }, + { + "label": "École Centrale de Lyon", + "type": "Parent", + "id": "https://ror.org/05s6rge65" + }, + { + "label": "Institut National des Sciences Appliquées de Lyon", + "type": "Parent", + "id": "https://ror.org/050jn9y42" + }, + { + "label": "Université Claude Bernard Lyon 1", + "type": "Parent", + "id": "https://ror.org/029brtt94" + }, + { + "label": "École Nationale des Travaux Publics de l'État", + "type": "Parent", + "id": "https://ror.org/05r0ccb59" + }, + { + "label": "École d'Ingénieurs en Chimie et Sciences du Numérique", + "type": "Parent", + "id": "https://ror.org/01cbtr271" + }, + { + "label": "Chimie ParisTech", + "type": "Parent", + "id": "https://ror.org/05q65zh81" + }, + { + "label": "École Nationale Supérieure des Mines de Paris", + "type": "Parent", + "id": "https://ror.org/04y8cs423" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Université de Poitiers", + "type": "Parent", + "id": "https://ror.org/04xhy8q59" + }, + { + "label": "Université de Limoges", + "type": "Parent", + "id": "https://ror.org/02cp04407" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Thales (France)", + "type": "Parent", + "id": "https://ror.org/04emwm605" + }, + { + "label": "IFP Énergies nouvelles", + "type": "Parent", + "id": "https://ror.org/03gcbhc33" + }, + { + "label": "Université de Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Aix-Marseille Université", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Université Bourgogne Franche-Comté", + "type": "Parent", + "id": "https://ror.org/02dn7x778" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Centre Hospitalier Universitaire de Clermont-Ferrand", + "type": "Parent", + "id": "https://ror.org/02tcf7a68" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "JUNIA", + "type": "Parent", + "id": "https://ror.org/02evec030" + }, + { + "label": "Nantes Université", + "type": "Parent", + "id": "https://ror.org/03gnr7b55" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.99553, + "lng": 1.74081, + "state": null, + "state_code": null, + "city": "Limay", + "geonames_city": { + "id": 2998311, + "city": "Limay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fr-spe.cnrs.fr" + ], + "aliases": [ + "Spectroscopies de Photoémission" + ], + "acronyms": [ + "FR SPE", + "SPE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695014" + ], + "preferred": "Q123695014" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01xbd2h58.json b/v1.49/v1/01xbd2h58.json new file mode 100644 index 000000000..707802c2c --- /dev/null +++ b/v1.49/v1/01xbd2h58.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01xbd2h58", + "name": "Unité Mixte de Recherche sur les Fromages", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + }, + { + "label": "VetAgro Sup", + "type": "Parent", + "id": "https://ror.org/01c7wz417" + } + ], + "addresses": [ + { + "lat": 44.92539, + "lng": 2.43983, + "state": null, + "state_code": null, + "city": "Aurillac", + "geonames_city": { + "id": 3036016, + "city": "Aurillac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.clermont.inrae.fr/umrf" + ], + "aliases": [], + "acronyms": [ + "UMRF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52557874" + ], + "preferred": "Q52557874" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01xc5jm57.json b/v1.49/v1/01xc5jm57.json new file mode 100644 index 000000000..bd346275b --- /dev/null +++ b/v1.49/v1/01xc5jm57.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01xc5jm57", + "name": "Instituto Federal de Educação Ciência e Tecnologia da Paraíba", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -7.115, + "lng": -34.86306, + "state": null, + "state_code": null, + "city": "João Pessoa", + "geonames_city": { + "id": 3397277, + "city": "João Pessoa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ifpb.edu.br" + ], + "aliases": [ + "Instituto Federal da Paraíba" + ], + "acronyms": [ + "CEFET-PB", + "IFPB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "GRID": { + "all": "grid.454344.6", + "preferred": "grid.454344.6" + }, + "ISNI": { + "all": [ + "0000 0000 9895 745X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01xjctg43.json b/v1.49/v1/01xjctg43.json new file mode 100644 index 000000000..dc69903f2 --- /dev/null +++ b/v1.49/v1/01xjctg43.json @@ -0,0 +1,70 @@ +{ + "id": "https://ror.org/01xjctg43", + "name": "Folkhälsanin Tutkimussäätiö", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 60.17556, + "lng": 24.93417, + "state": null, + "state_code": null, + "city": "Helsinki", + "geonames_city": { + "id": 658226, + "city": "Helsinki", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Folkhälsan Research Foundation", + "iso639": "en" + } + ], + "country": { + "country_name": "Finland", + "country_code": "FI" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01xjq7424.json b/v1.49/v1/01xjq7424.json new file mode 100644 index 000000000..126ebdf6d --- /dev/null +++ b/v1.49/v1/01xjq7424.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/01xjq7424", + "name": "Institut National Polytechnique de Lorraine", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.76667, + "lng": 6.13333, + "state": null, + "state_code": null, + "city": "Lorraine", + "geonames_city": { + "id": 2997551, + "city": "Lorraine", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lorraine-inp.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Polytechnic_Institute_of_Lorraine", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/01xpc6869.json b/v1.49/v1/01xpc6869.json new file mode 100644 index 000000000..94e18292d --- /dev/null +++ b/v1.49/v1/01xpc6869.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/01xpc6869", + "name": "Centre de Recherche de Biochimie Macromoléculaire", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.crbm.cnrs.fr/index.php/en/" + ], + "aliases": [], + "acronyms": [ + "CRBM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre for Biochemical and Macromolecular Research", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462783.c", + "preferred": "grid.462783.c" + }, + "ISNI": { + "all": [ + "0000 0004 0598 968X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01ymr5447.json b/v1.49/v1/01ymr5447.json new file mode 100644 index 000000000..0beaee687 --- /dev/null +++ b/v1.49/v1/01ymr5447.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/01ymr5447", + "name": "Biogem", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "AREA Science Park", + "type": "Parent", + "id": "https://ror.org/01dt7qh15" + } + ], + "addresses": [ + { + "lat": 41.16024, + "lng": 15.10625, + "state": null, + "state_code": null, + "city": "Ariano Irpino", + "geonames_city": { + "id": 3182854, + "city": "Ariano Irpino", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.biogem.it/" + ], + "aliases": [ + "Biology and Molecular Genetics" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/BioGeM", + "labels": [ + { + "label": "Biologia e Genetica Molecolare nel Mezzogiorno", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.428067.f", + "preferred": "grid.428067.f" + }, + "ISNI": { + "all": [ + "0000 0004 4674 1402" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4914621" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01ynb8e46.json b/v1.49/v1/01ynb8e46.json new file mode 100644 index 000000000..e79184161 --- /dev/null +++ b/v1.49/v1/01ynb8e46.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/01ynb8e46", + "name": "Mills College", + "email_address": null, + "ip_addresses": [], + "established": 1852, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Kaiser Permanente Oakland Medical Center", + "type": "Related", + "id": "https://ror.org/05rfek682" + }, + { + "label": "Northeastern University", + "type": "Parent", + "id": "https://ror.org/04t5xt781" + } + ], + "addresses": [ + { + "lat": 37.80437, + "lng": -122.2708, + "state": null, + "state_code": null, + "city": "Oakland", + "geonames_city": { + "id": 5378538, + "city": "Oakland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mills.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mills_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.260055.4", + "preferred": "grid.260055.4" + }, + "ISNI": { + "all": [ + "0000 0001 2222 6252" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q638859" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01yvj5k91.json b/v1.49/v1/01yvj5k91.json new file mode 100644 index 000000000..6ae95d582 --- /dev/null +++ b/v1.49/v1/01yvj5k91.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/01yvj5k91", + "name": "Direction de la Recherche Fondamentale", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Rayonnement-Matière de Saclay", + "type": "Child", + "id": "https://ror.org/00cch2r34" + }, + { + "label": "Institut de Physique Théorique", + "type": "Child", + "id": "https://ror.org/058rvd314" + }, + { + "label": "Institut de Recherche sur la Fusion par Confinement Magnétique", + "type": "Child", + "id": "https://ror.org/03hffat62" + }, + { + "label": "Institut de Recherche sur les Lois Fondamentales de l'Univers", + "type": "Child", + "id": "https://ror.org/05k705z76" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "GANIL", + "type": "Child", + "id": "https://ror.org/042dc0x18" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cea.fr/drf/Pages/La-DRF.aspx" + ], + "aliases": [], + "acronyms": [ + "DRF CEA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.512398.4", + "preferred": "grid.512398.4" + }, + "Wikidata": { + "all": [ + "Q52604525" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01yw67305.json b/v1.49/v1/01yw67305.json new file mode 100644 index 000000000..e15c9eaad --- /dev/null +++ b/v1.49/v1/01yw67305.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01yw67305", + "name": "Institut Teknologi Nasional Yogyakarta", + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itny.ac.id" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Institut_Teknologi_Nasional_Yogyakarta", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0407 8892" + ], + "preferred": "0000 0004 0407 8892" + }, + "Wikidata": { + "all": [ + "Q12513127" + ], + "preferred": "Q12513127" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01z485314.json b/v1.49/v1/01z485314.json new file mode 100644 index 000000000..f24f3d740 --- /dev/null +++ b/v1.49/v1/01z485314.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/01z485314", + "name": "UMR Espace-Dev", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université des Antilles", + "type": "Parent", + "id": "https://ror.org/02ryfmr77" + }, + { + "label": "University of Reunion Island", + "type": "Parent", + "id": "https://ror.org/005ypkf75" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "University of French Guiana", + "type": "Parent", + "id": "https://ror.org/00nb39k71" + }, + { + "label": "University of New Caledonia", + "type": "Parent", + "id": "https://ror.org/02jrgcx64" + }, + { + "label": "Université de Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.espace-dev.fr" + ], + "aliases": [ + "Espace pour le développement", + "Observation spatiale, modele et science impliquee" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781199" + ], + "preferred": "Q51781199" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01zec9695.json b/v1.49/v1/01zec9695.json new file mode 100644 index 000000000..f6f0906fa --- /dev/null +++ b/v1.49/v1/01zec9695.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01zec9695", + "name": "Center for Global Change and Sustainability", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "BOKU University", + "type": "Parent", + "id": "https://ror.org/057ff4y42" + } + ], + "addresses": [ + { + "lat": 17.98689, + "lng": -92.93028, + "state": null, + "state_code": null, + "city": "Villahermosa", + "geonames_city": { + "id": 3514670, + "city": "Villahermosa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ccgs.mx/" + ], + "aliases": [], + "acronyms": [ + "CCGS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centro del Cambio Global y la Sustentabilidad A.C.", + "iso639": "es" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.507778.a", + "preferred": "grid.507778.a" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01zefvs55.json b/v1.49/v1/01zefvs55.json new file mode 100644 index 000000000..502f94173 --- /dev/null +++ b/v1.49/v1/01zefvs55.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/01zefvs55", + "name": "Immunité et Cancer", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://u932.curie.fr/en/research-unit/immunity-and-cancer-institut-curie-inserm-unit-932-partnership-university-paris-descar" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Immunity and Cancer", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462340.7", + "preferred": "grid.462340.7" + }, + "ISNI": { + "all": [ + "0000 0004 1793 5478" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01zprwd36.json b/v1.49/v1/01zprwd36.json new file mode 100644 index 000000000..11dbcde8f --- /dev/null +++ b/v1.49/v1/01zprwd36.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/01zprwd36", + "name": "Centre d'Acquisition et de Traitement des Images", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cati-neuroimaging.com" + ], + "aliases": [ + "Centre for Acquisition & Image Processing", + "Centre for Acquisition and Image Processing", + "Centre pour l'Acquisition & le Traitement des Images", + "Centre pour l'Acquisition et le Traitement des Images" + ], + "acronyms": [ + "CATI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695034" + ], + "preferred": "Q123695034" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01zrk7293.json b/v1.49/v1/01zrk7293.json new file mode 100644 index 000000000..e1ee04de0 --- /dev/null +++ b/v1.49/v1/01zrk7293.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01zrk7293", + "name": "Physiopathogénèse et Traitement des Maladies du Foie", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.7939, + "lng": 2.35992, + "state": null, + "state_code": null, + "city": "Villejuif", + "geonames_city": { + "id": 2968705, + "city": "Villejuif", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.centre-hepato-biliaire.org/laboratoire-de-recherche/unite-1193-physiopathogenese-et-traitement-des-maladies-du-foie.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781581" + ], + "preferred": "Q51781581" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/01zss5v68.json b/v1.49/v1/01zss5v68.json new file mode 100644 index 000000000..9c2dd4259 --- /dev/null +++ b/v1.49/v1/01zss5v68.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01zss5v68", + "name": "Institute Cancer De La Loire Lucien Neuwirth", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.4739, + "lng": 4.37678, + "state": null, + "state_code": null, + "city": "Saint-Priest-en-Jarez", + "geonames_city": { + "id": 2977350, + "city": "Saint-Priest-en-Jarez", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.icloire.com/" + ], + "aliases": [], + "acronyms": [ + "ICLN" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.488279.8", + "preferred": "grid.488279.8" + }, + "ISNI": { + "all": [ + "0000 0004 1798 7163" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0207fe012.json b/v1.49/v1/0207fe012.json new file mode 100644 index 000000000..9e11f2e77 --- /dev/null +++ b/v1.49/v1/0207fe012.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/0207fe012", + "name": "ESC Dijon Bourgogne, École supérieure de commerce de Dijon-Bourgogne", + "email_address": null, + "ip_addresses": [], + "established": 1899, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.31667, + "lng": 5.01667, + "state": null, + "state_code": null, + "city": "Dijon", + "geonames_city": { + "id": 3021372, + "city": "Dijon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bsb-education.com" + ], + "aliases": [ + "Burgundy Business School", + "Burgundy School of Management", + "ESC Dijon Bourgogne", + "École supérieure de commerce de Dijon-Bourgogne" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Burgundy_School_of_Business", + "labels": [ + { + "label": "Burgundy School of Business", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0623 0122" + ], + "preferred": "0000 0004 0623 0122" + }, + "Wikidata": { + "all": [ + "Q3578434" + ], + "preferred": "Q3578434" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0209mnq24.json b/v1.49/v1/0209mnq24.json new file mode 100644 index 000000000..64f734e31 --- /dev/null +++ b/v1.49/v1/0209mnq24.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/0209mnq24", + "name": "Technological and Higher Education Institute of Hong Kong", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.26718, + "lng": 114.24051, + "state": null, + "state_code": null, + "city": "Chai Wan", + "geonames_city": { + "id": 1820002, + "city": "Chai Wan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.thei.edu.hk" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Technological_and_Higher_Education_Institute_of_Hong_Kong", + "labels": [ + { + "label": "香港高等教育科技學院", + "iso639": "zh" + } + ], + "country": { + "country_name": "Hong Kong", + "country_code": "HK" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q15921549" + ], + "preferred": "Q15921549" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/020ahr442.json b/v1.49/v1/020ahr442.json new file mode 100644 index 000000000..e383ffcc2 --- /dev/null +++ b/v1.49/v1/020ahr442.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/020ahr442", + "name": "Laboratoire Microorganismes Génome et Environnement", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lmge.univ-bpclermont.fr/" + ], + "aliases": [], + "acronyms": [ + "LMGE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462583.e", + "preferred": "grid.462583.e" + }, + "ISNI": { + "all": [ + "0000 0004 0385 0000" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/020m4fx82.json b/v1.49/v1/020m4fx82.json new file mode 100644 index 000000000..6c215fb39 --- /dev/null +++ b/v1.49/v1/020m4fx82.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/020m4fx82", + "name": "Oregon Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 45.52345, + "lng": -122.67621, + "state": null, + "state_code": null, + "city": "Portland", + "geonames_city": { + "id": 5746545, + "city": "Portland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://oregonhumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447585.f", + "preferred": "grid.447585.f" + }, + "ISNI": { + "all": [ + "0000 0001 0692 9281" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/020nks034.json b/v1.49/v1/020nks034.json new file mode 100644 index 000000000..7edc7a8d1 --- /dev/null +++ b/v1.49/v1/020nks034.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/020nks034", + "name": "UMR Botanique et Modélisation de l’Architecture des Plantes et des végétations", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "Parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Délégation Languedoc Roussillon", + "type": "Parent", + "id": "https://ror.org/04hrs9369" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://amap.cirad.fr/en/index.php" + ], + "aliases": [ + "AMAP Lab", + "Botanique et Modélisation de l'Architecture des Plantes et des Végétations", + "Botany and Modelling of Plant Architecture and Vegetation Botany and Modelling of Plant Architecture and Vegetation", + "Laboratoire AMAP", + "Laboratoire de modélisation mathématique et d'architecture des plantes", + "UMR AMAP" + ], + "acronyms": [ + "AMAP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503016.1", + "preferred": "grid.503016.1" + }, + "ISNI": { + "all": [ + "0000 0001 2160 870X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51785416" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/020yme056.json b/v1.49/v1/020yme056.json new file mode 100644 index 000000000..77ef34d64 --- /dev/null +++ b/v1.49/v1/020yme056.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/020yme056", + "name": "Bundesinstitut für Kultur und Geschichte des östlichen Europa", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.14118, + "lng": 8.21467, + "state": null, + "state_code": null, + "city": "Oldenburg", + "geonames_city": { + "id": 2857458, + "city": "Oldenburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bkge.de" + ], + "aliases": [ + "Bundesinstitut für ostdeutsche Kultur und Geschichte" + ], + "acronyms": [ + "BKGE" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Bundesinstitut_f%C3%BCr_Kultur_und_Geschichte_des_%C3%B6stlichen_Europa", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q1006216" + ], + "preferred": "Q1006216" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0211r2z47.json b/v1.49/v1/0211r2z47.json new file mode 100644 index 000000000..a3a7a89cb --- /dev/null +++ b/v1.49/v1/0211r2z47.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0211r2z47", + "name": "Institut des Sciences Moléculaires d'Orsay", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ismo.universite-paris-saclay.fr" + ], + "aliases": [ + "Institute of Molecular Sciences of Orsay" + ], + "acronyms": [ + "ISMO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.469497.1", + "preferred": "grid.469497.1" + }, + "Wikidata": { + "all": [ + "Q30264842" + ], + "preferred": "Q30264842" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0214k6v65.json b/v1.49/v1/0214k6v65.json new file mode 100644 index 000000000..cb43f9c69 --- /dev/null +++ b/v1.49/v1/0214k6v65.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/0214k6v65", + "name": "Laboratoire de Physique Corpusculaire", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Parent", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://clrwww.in2p3.fr/" + ], + "aliases": [], + "acronyms": [ + "LPC CLERMONT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.470921.9", + "preferred": "grid.470921.9" + }, + "ISNI": { + "all": [ + "0000 0004 0623 3622" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02160my55.json b/v1.49/v1/02160my55.json new file mode 100644 index 000000000..bf63b6e6e --- /dev/null +++ b/v1.49/v1/02160my55.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/02160my55", + "name": "Ingenierie des Materiaux polymeres", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Claude Bernard Lyon 1", + "type": "Parent", + "id": "https://ror.org/029brtt94" + }, + { + "label": "Institut National des Sciences Appliquées de Lyon", + "type": "Parent", + "id": "https://ror.org/050jn9y42" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Jean Monnet", + "type": "Parent", + "id": "https://ror.org/04yznqr36" + } + ], + "addresses": [ + { + "lat": 45.76601, + "lng": 4.8795, + "state": null, + "state_code": null, + "city": "Villeurbanne", + "geonames_city": { + "id": 2968254, + "city": "Villeurbanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://imp-umr5223.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "IMP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Polymer Materials Engineering", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463892.2", + "preferred": "grid.463892.2" + }, + "ISNI": { + "all": [ + "0000 0004 0383 6671" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/021ddkf20.json b/v1.49/v1/021ddkf20.json new file mode 100644 index 000000000..dbc1d4f3a --- /dev/null +++ b/v1.49/v1/021ddkf20.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/021ddkf20", + "name": "Institut de Recherches Historiques du Septentrion", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://irhis.recherche.univ-lille3.fr/" + ], + "aliases": [], + "acronyms": [ + "IRHiS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462672.3", + "preferred": "grid.462672.3" + }, + "ISNI": { + "all": [ + "0000 0001 2325 0166" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/021xexe56.json b/v1.49/v1/021xexe56.json new file mode 100644 index 000000000..da655b8d8 --- /dev/null +++ b/v1.49/v1/021xexe56.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/021xexe56", + "name": "Laboratoire Aimé Cotton", + "email_address": null, + "ip_addresses": [], + "established": 1927, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lac.universite-paris-saclay.fr" + ], + "aliases": [ + "Aimé Cotton Laboratory" + ], + "acronyms": [ + "LAC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462747.4", + "preferred": "grid.462747.4" + }, + "ISNI": { + "all": [ + "0000 0004 0623 5425" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/021zcv334.json b/v1.49/v1/021zcv334.json new file mode 100644 index 000000000..e4a1e321a --- /dev/null +++ b/v1.49/v1/021zcv334.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/021zcv334", + "name": "Ecology and Conservation Science for Sustainable Seas", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/ecology-and-conservation-science-for-sustainable-seas-ecoseas" + ], + "aliases": [ + "Ecosystemes cotiers marins et reponses aux stress" + ], + "acronyms": [ + "ECOMERS", + "ECOSEAS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/021zwb636.json b/v1.49/v1/021zwb636.json new file mode 100644 index 000000000..09b189cf4 --- /dev/null +++ b/v1.49/v1/021zwb636.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/021zwb636", + "name": "Universidad Tecnologica de Cancun", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.17429, + "lng": -86.84656, + "state": null, + "state_code": null, + "city": "Cancún", + "geonames_city": { + "id": 3531673, + "city": "Cancún", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.utcancun.edu.mx" + ], + "aliases": [ + "UT Cancun" + ], + "acronyms": [ + "UTC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/0227fbx80.json b/v1.49/v1/0227fbx80.json new file mode 100644 index 000000000..2b2cccd7b --- /dev/null +++ b/v1.49/v1/0227fbx80.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0227fbx80", + "name": "Université Montpellier 1", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Successor", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Montpellier 1 University", + "Montpellier I University", + "Université de Montpellier I" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Montpellier_1", + "labels": [ + { + "label": "University of Montpellier 1", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2186 5845" + ], + "preferred": "0000 0001 2186 5845" + }, + "Wikidata": { + "all": [ + "Q903888" + ], + "preferred": "Q903888" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/022b0h879.json b/v1.49/v1/022b0h879.json new file mode 100644 index 000000000..6dfee381e --- /dev/null +++ b/v1.49/v1/022b0h879.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/022b0h879", + "name": "Institut de Physique de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ipr.univ-rennes.fr" + ], + "aliases": [ + "Institute of Physics of Rennes" + ], + "acronyms": [ + "IPR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461893.1", + "preferred": "grid.461893.1" + }, + "ISNI": { + "all": [ + "0000 0004 0452 3968" + ], + "preferred": "0000 0004 0452 3968" + }, + "Wikidata": { + "all": [ + "Q30261347" + ], + "preferred": "Q30261347" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/022qdz987.json b/v1.49/v1/022qdz987.json new file mode 100644 index 000000000..0e5e24bae --- /dev/null +++ b/v1.49/v1/022qdz987.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/022qdz987", + "name": "Faculdade de Direito de Vitória", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -20, + "lng": -40.75, + "state": null, + "state_code": null, + "city": "Espírito Santo", + "geonames_city": { + "id": 3463930, + "city": "Espírito Santo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fdv.br" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Faculdades_Integradas_de_Vit%C3%B3ria", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52664711" + ], + "preferred": "Q52664711" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0230m6b87.json b/v1.49/v1/0230m6b87.json new file mode 100644 index 000000000..233ec09df --- /dev/null +++ b/v1.49/v1/0230m6b87.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/0230m6b87", + "name": "Rufus Giwa Polytechnic", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.1962, + "lng": 5.58681, + "state": null, + "state_code": null, + "city": "Owo", + "geonames_city": { + "id": 2325314, + "city": "Owo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rugipo.edu.ng" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rufus_Giwa_Polytechnic", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9091 5028" + ], + "preferred": "0000 0000 9091 5028" + }, + "Wikidata": { + "all": [ + "Q7378040" + ], + "preferred": "Q7378040" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/023a3xe97.json b/v1.49/v1/023a3xe97.json new file mode 100644 index 000000000..cee385bc9 --- /dev/null +++ b/v1.49/v1/023a3xe97.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/023a3xe97", + "name": "Al-Mustaqbal University", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.46367, + "lng": 44.41963, + "state": null, + "state_code": null, + "city": "Hillah", + "geonames_city": { + "id": 99347, + "city": "Hillah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uomus.edu.iq" + ], + "aliases": [ + "Al-Mustaqbal University College", + "جامعة المستقبل" + ], + "acronyms": [ + "UOMUS" + ], + "status": "active", + "wikipedia_url": "https://ar.wikipedia.org/wiki/%D9%83%D9%84%D9%8A%D8%A9_%D8%A7%D9%84%D9%85%D8%B3%D8%AA%D9%82%D8%A8%D9%84_%D8%A7%D9%84%D8%AC%D8%A7%D9%85%D8%B9%D8%A9#:~:text=%D8%AC%D8%A7%D9%85%D8%B9%D8%A9%20%D8%A7%D9%84%D9%85%D8%B3%D8%AA%D9%82%D8%A8%D9%84%20%D9%87%D9%8A%20%D8%AC%D8%A7%D9%85%D8%B9%D8%A9%20%D8%A3%D9%87%D9%84%D9%8A%D8%A9,%D9%81%D9%8A%2012%2D4%2D2023.", + "labels": [ + { + "label": "كلية المستقبل الجامعة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9360 4144" + ], + "preferred": "0000 0004 9360 4144" + }, + "Wikidata": { + "all": [ + "Q25450310" + ], + "preferred": "Q25450310" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/023aac055.json b/v1.49/v1/023aac055.json new file mode 100644 index 000000000..b976f2760 --- /dev/null +++ b/v1.49/v1/023aac055.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/023aac055", + "name": "Universidad de Investigación e Innovación de México", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 18.9261, + "lng": -99.23075, + "state": null, + "state_code": null, + "city": "Cuernavaca", + "geonames_city": { + "id": 3529947, + "city": "Cuernavaca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uiix.edu.mx" + ], + "aliases": [], + "acronyms": [ + "UIIX" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/023b2c435.json b/v1.49/v1/023b2c435.json new file mode 100644 index 000000000..0f4f337b2 --- /dev/null +++ b/v1.49/v1/023b2c435.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/023b2c435", + "name": "Laboratoire Anthropologie, Archéologie, Biologie", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.76636, + "lng": 2.03405, + "state": null, + "state_code": null, + "city": "Montigny-le-Bretonneux", + "geonames_city": { + "id": 2992415, + "city": "Montigny-le-Bretonneux", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uvsq.fr/laboratoire-anthropologie-archeologie-biologie-laab-ur-20202-uvsq-musee-du-quai-branly-jacques-chirac" + ], + "aliases": [], + "acronyms": [ + "LAAB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109620268" + ], + "preferred": "Q109620268" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/023bv6t84.json b/v1.49/v1/023bv6t84.json new file mode 100644 index 000000000..c22af758f --- /dev/null +++ b/v1.49/v1/023bv6t84.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/023bv6t84", + "name": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.76636, + "lng": 2.03405, + "state": null, + "state_code": null, + "city": "Montigny-le-Bretonneux", + "geonames_city": { + "id": 2992415, + "city": "Montigny-le-Bretonneux", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.erphan.uvsq.fr" + ], + "aliases": [], + "acronyms": [ + "ERPHAN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109614029" + ], + "preferred": "Q109614029" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/023cs7p87.json b/v1.49/v1/023cs7p87.json new file mode 100644 index 000000000..b6836b1ce --- /dev/null +++ b/v1.49/v1/023cs7p87.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/023cs7p87", + "name": "Groupe de Recherche en Management", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/groupe-de-recherche-en-management-grm" + ], + "aliases": [], + "acronyms": [ + "GRM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/023k5m874.json b/v1.49/v1/023k5m874.json new file mode 100644 index 000000000..646f524d0 --- /dev/null +++ b/v1.49/v1/023k5m874.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/023k5m874", + "name": "Project Seagrass", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50583, + "lng": -3.57722, + "state": null, + "state_code": null, + "city": "Bridgend", + "geonames_city": { + "id": 2654755, + "city": "Bridgend", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.projectseagrass.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.508736.f", + "preferred": "grid.508736.f" + }, + "Wikidata": { + "all": [ + "Q49284532" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/023nfn818.json b/v1.49/v1/023nfn818.json new file mode 100644 index 000000000..45e4020c9 --- /dev/null +++ b/v1.49/v1/023nfn818.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/023nfn818", + "name": "Instituto Tecnológico de Conkal", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.07355, + "lng": -89.51963, + "state": null, + "state_code": null, + "city": "Conkal", + "geonames_city": { + "id": 3530295, + "city": "Conkal", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://conkal.tecnm.mx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_de_Conkal", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q28777051" + ], + "preferred": "Q28777051" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0240khg33.json b/v1.49/v1/0240khg33.json new file mode 100644 index 000000000..2bbbe5c8c --- /dev/null +++ b/v1.49/v1/0240khg33.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/0240khg33", + "name": "Polyclinique Bordeaux Nord Aquitaine", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.84044, + "lng": -0.5805, + "state": null, + "state_code": null, + "city": "Bordeaux", + "geonames_city": { + "id": 3031582, + "city": "Bordeaux", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://polycliniquebordeauxnordaquitaine.fr" + ], + "aliases": [ + "Polyclinic Bordeaux North Aquitaine" + ], + "acronyms": [ + "PBNA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.492937.2", + "preferred": "grid.492937.2" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0247p4w70.json b/v1.49/v1/0247p4w70.json new file mode 100644 index 000000000..441f7d57a --- /dev/null +++ b/v1.49/v1/0247p4w70.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/0247p4w70", + "name": "Service de Physique de l'État Condensé", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Institut Rayonnement-Matière de Saclay", + "type": "Parent", + "id": "https://ror.org/00cch2r34" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iramis.cea.fr/spec/" + ], + "aliases": [], + "acronyms": [ + "SPEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462531.7", + "preferred": "grid.462531.7" + }, + "ISNI": { + "all": [ + "0000 0004 0369 6154" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261484" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0248dkz36.json b/v1.49/v1/0248dkz36.json new file mode 100644 index 000000000..de6cb2975 --- /dev/null +++ b/v1.49/v1/0248dkz36.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/0248dkz36", + "name": "Tecnológico Nacional de México, Campus Pachuca", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.11697, + "lng": -98.73329, + "state": null, + "state_code": null, + "city": "Pachuca", + "geonames_city": { + "id": 3522210, + "city": "Pachuca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itp.itpachuca.edu.mx" + ], + "aliases": [ + "Instituto Tecnológico de Pachuca", + "TecNM campus Pachuca" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5917875" + ], + "preferred": "Q5917875" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/024cw0321.json b/v1.49/v1/024cw0321.json new file mode 100644 index 000000000..884415a2a --- /dev/null +++ b/v1.49/v1/024cw0321.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/024cw0321", + "name": "Comunidad Autónoma de la Región de Murcia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.98704, + "lng": -1.13004, + "state": null, + "state_code": null, + "city": "Murcia", + "geonames_city": { + "id": 2513416, + "city": "Murcia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.carm.es" + ], + "aliases": [ + "Comunidad Autónoma de la Región de Murcia", + "Provincia de Murcia", + "Region of Murcia" + ], + "acronyms": [ + "CARM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Region_of_Murcia", + "labels": [ + { + "label": "Autonomous Community of the Region of Murcia", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5772" + ], + "preferred": "Q5772" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/024gts110.json b/v1.49/v1/024gts110.json new file mode 100644 index 000000000..62504c51a --- /dev/null +++ b/v1.49/v1/024gts110.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/024gts110", + "name": "Géosciences Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université des Antilles", + "type": "Parent", + "id": "https://ror.org/02ryfmr77" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.gm.univ-montp2.fr/?lang=en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462743.0", + "preferred": "grid.462743.0" + }, + "ISNI": { + "all": [ + "0000 0001 2184 338X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/024hqb733.json b/v1.49/v1/024hqb733.json new file mode 100644 index 000000000..dd1fdf398 --- /dev/null +++ b/v1.49/v1/024hqb733.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/024hqb733", + "name": "West Virginia Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 38.34982, + "lng": -81.63262, + "state": null, + "state_code": null, + "city": "Charleston", + "geonames_city": { + "id": 4801859, + "city": "Charleston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://wvhumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447638.a", + "preferred": "grid.447638.a" + }, + "ISNI": { + "all": [ + "0000 0000 8607 8714" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/024kdkj87.json b/v1.49/v1/024kdkj87.json new file mode 100644 index 000000000..52a0a6867 --- /dev/null +++ b/v1.49/v1/024kdkj87.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/024kdkj87", + "name": "Maine Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 43.65737, + "lng": -70.2589, + "state": null, + "state_code": null, + "city": "Portland", + "geonames_city": { + "id": 4975802, + "city": "Portland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://mainehumanities.org/" + ], + "aliases": [], + "acronyms": [ + "MHC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Maine_Humanities_Council", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447590.b", + "preferred": "grid.447590.b" + }, + "ISNI": { + "all": [ + "0000 0004 1515 650X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6736377" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0255jh689.json b/v1.49/v1/0255jh689.json new file mode 100644 index 000000000..958b00e51 --- /dev/null +++ b/v1.49/v1/0255jh689.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/0255jh689", + "name": "King Danylo University", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.92312, + "lng": 24.71248, + "state": null, + "state_code": null, + "city": "Ivano-Frankivsk", + "geonames_city": { + "id": 707471, + "city": "Ivano-Frankivsk", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ukd.edu.ua" + ], + "aliases": [ + "Університет Короля Данила" + ], + "acronyms": [ + "KDU", + "UKD" + ], + "status": "active", + "wikipedia_url": "https://uk.wikipedia.org/wiki/%D0%A3%D0%BD%D1%96%D0%B2%D0%B5%D1%80%D1%81%D0%B8%D1%82%D0%B5%D1%82_%D0%9A%D0%BE%D1%80%D0%BE%D0%BB%D1%8F_%D0%94%D0%B0%D0%BD%D0%B8%D0%BB%D0%B0", + "labels": [], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q12073707" + ], + "preferred": "Q12073707" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0259hk390.json b/v1.49/v1/0259hk390.json new file mode 100644 index 000000000..9df06f9e3 --- /dev/null +++ b/v1.49/v1/0259hk390.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/0259hk390", + "name": "Centre Pasteur du Cameroun", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 3.86667, + "lng": 11.51667, + "state": null, + "state_code": null, + "city": "Yaoundé", + "geonames_city": { + "id": 2220957, + "city": "Yaoundé", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur-yaounde.org/index.php/en/" + ], + "aliases": [], + "acronyms": [ + "CPC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Cameroon", + "country_code": "CM" + }, + "external_ids": { + "GRID": { + "all": "grid.418179.2", + "preferred": "grid.418179.2" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/025er3q23.json b/v1.49/v1/025er3q23.json new file mode 100644 index 000000000..b6e107874 --- /dev/null +++ b/v1.49/v1/025er3q23.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/025er3q23", + "name": "Ministère des Armées", + "email_address": null, + "ip_addresses": [], + "established": 1589, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Hôpital d'instruction des Armées Desgenettes", + "type": "Child", + "id": "https://ror.org/03m8r7k33" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "Child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "Histoire et Archéologie Maritimes", + "type": "Child", + "id": "https://ror.org/011mac819" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.defense.gouv.fr" + ], + "aliases": [ + "Ministry of the Armed Forces", + "Ministère de la Défense" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Minister_of_the_Armed_Forces_(France)", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418221.c", + "preferred": "grid.418221.c" + }, + "Wikidata": { + "all": [ + "Q75706" + ], + "preferred": "Q75706" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/025vngs54.json b/v1.49/v1/025vngs54.json new file mode 100644 index 000000000..05e672835 --- /dev/null +++ b/v1.49/v1/025vngs54.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/025vngs54", + "name": "Universitätsmedizin Greifswald", + "email_address": null, + "ip_addresses": [], + "established": 1456, + "types": [ + "Education", + "Healthcare" + ], + "relationships": [ + { + "label": "Universität Greifswald", + "type": "Related", + "id": "https://ror.org/00r1edq15" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.medizin.uni-greifswald.de" + ], + "aliases": [ + "University Medicine Greifswald" + ], + "acronyms": [ + "UMG" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Greifswald_University_Hospital", + "labels": [ + { + "label": "Greifswald University Hospital", + "iso639": "en" + }, + { + "label": "Greifswald University Medicine", + "iso639": "en" + }, + { + "label": "University Medicine of Greifswald", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.412469.c", + "preferred": "grid.412469.c" + }, + "ISNI": { + "all": [ + "0000 0000 9116 8976" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2496421" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/025ysd319.json b/v1.49/v1/025ysd319.json new file mode 100644 index 000000000..47527adfe --- /dev/null +++ b/v1.49/v1/025ysd319.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/025ysd319", + "name": "New Higher Education Institute - NEWUNI", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.69411, + "lng": 44.83368, + "state": null, + "state_code": null, + "city": "Tbilisi", + "geonames_city": { + "id": 611717, + "city": "Tbilisi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://newuni.edu.ge" + ], + "aliases": [ + "New Higher Education Institute", + "ახალი უმაღლესი სასწავლებელი" + ], + "acronyms": [ + "NEWUNI", + "ნიუუნი" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "ახალი უმაღლესი სასწავლებელი - ნიუუნი", + "iso639": "ka" + } + ], + "country": { + "country_name": "Georgia", + "country_code": "GE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7475 9474" + ], + "preferred": "0000 0004 7475 9474" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0260nab69.json b/v1.49/v1/0260nab69.json new file mode 100644 index 000000000..5fbe10ae3 --- /dev/null +++ b/v1.49/v1/0260nab69.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/0260nab69", + "name": "Universidad Tecnológica de Chihuahua", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.75, + "lng": -106.25, + "state": null, + "state_code": null, + "city": "Chihuahua", + "geonames_city": { + "id": 4014336, + "city": "Chihuahua", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utch.edu.mx" + ], + "aliases": [ + "Technological University of Chihuahua", + "mUT de Chihuahua" + ], + "acronyms": [ + "UTCH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 8873" + ], + "preferred": "0000 0004 1770 8873" + }, + "Wikidata": { + "all": [ + "Q16644557" + ], + "preferred": "Q16644557" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0266c5p67.json b/v1.49/v1/0266c5p67.json new file mode 100644 index 000000000..54a8917db --- /dev/null +++ b/v1.49/v1/0266c5p67.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/0266c5p67", + "name": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut Gustave Roussy", + "type": "Parent", + "id": "https://ror.org/0321g0743" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.7939, + "lng": 2.35992, + "state": null, + "state_code": null, + "city": "Villejuif", + "geonames_city": { + "id": 2968705, + "city": "Villejuif", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gustaveroussy.fr/node/2299" + ], + "aliases": [ + "Immunologie intégrative des tumeurs et génétique oncologique", + "Integrative tumor immunology and immunotherapy" + ], + "acronyms": [ + "INTIM", + "UMR INTIM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51779721" + ], + "preferred": "Q51779721" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0268ecp52.json b/v1.49/v1/0268ecp52.json new file mode 100644 index 000000000..b6e64f71b --- /dev/null +++ b/v1.49/v1/0268ecp52.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0268ecp52", + "name": "Paris-Est Sup", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Équipe de Recherche sur l’Utilisation des Données Individuelles en Lien avec la Théorie Économique", + "type": "Child", + "id": "https://ror.org/047egvh76" + }, + { + "label": "Laboratoire interdisciplinaire de recherche sur les transformations des pratiques éducatives et des pratiques sociales", + "type": "Child", + "id": "https://ror.org/03ha87a98" + } + ], + "addresses": [ + { + "lat": 48.85, + "lng": 2.6, + "state": null, + "state_code": null, + "city": "Champs-sur-Marne", + "geonames_city": { + "id": 3027014, + "city": "Champs-sur-Marne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.paris-est-sup.fr" + ], + "aliases": [ + "University of Paris-Est", + "Université Paris-Est" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Paris-Est", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.466400.0", + "preferred": "grid.466400.0" + }, + "Wikidata": { + "all": [ + "Q3551472" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/026m44z54.json b/v1.49/v1/026m44z54.json new file mode 100644 index 000000000..f9bb0cd9a --- /dev/null +++ b/v1.49/v1/026m44z54.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/026m44z54", + "name": "Laboratoire Nanotechnologies et Nanosystèmes", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École Centrale de Lyon", + "type": "Parent", + "id": "https://ror.org/05s6rge65" + }, + { + "label": "Institut National des Sciences Appliquées de Lyon", + "type": "Parent", + "id": "https://ror.org/050jn9y42" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "École d'Ingénieurs en Chimie et Sciences du Numérique", + "type": "Parent", + "id": "https://ror.org/01cbtr271" + } + ], + "addresses": [ + { + "lat": 45.40008, + "lng": -71.89908, + "state": null, + "state_code": null, + "city": "Sherbrooke", + "geonames_city": { + "id": 6146143, + "city": "Sherbrooke", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usherbrooke.ca/ln2/" + ], + "aliases": [], + "acronyms": [ + "LN2" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783963" + ], + "preferred": "Q51783963" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/026tc4g97.json b/v1.49/v1/026tc4g97.json new file mode 100644 index 000000000..30a311e5d --- /dev/null +++ b/v1.49/v1/026tc4g97.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/026tc4g97", + "name": "UMR Territoires", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + }, + { + "label": "VetAgro Sup", + "type": "Parent", + "id": "https://ror.org/01c7wz417" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://umr-territoires.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.508768.4", + "preferred": "grid.508768.4" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/027331q77.json b/v1.49/v1/027331q77.json new file mode 100644 index 000000000..f7950d3db --- /dev/null +++ b/v1.49/v1/027331q77.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/027331q77", + "name": "Institute of Civil-Military Technology Cooperation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.36685, + "lng": 127.327, + "state": null, + "state_code": null, + "city": "Yuseong-gu", + "geonames_city": { + "id": 8419684, + "city": "Yuseong-gu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.icmtc.re.kr" + ], + "aliases": [ + "Institute of Civil Military Technology Cooperation" + ], + "acronyms": [ + "ICMTC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "민군협력진흥원", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/0274dq154.json b/v1.49/v1/0274dq154.json new file mode 100644 index 000000000..189d554e6 --- /dev/null +++ b/v1.49/v1/0274dq154.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/0274dq154", + "name": "Centre de droit des affaires", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cda.univ-rennes.fr" + ], + "aliases": [ + "Institute for Business Law" + ], + "acronyms": [ + "CDA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52604664" + ], + "preferred": "Q52604664" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02785qs39.json b/v1.49/v1/02785qs39.json new file mode 100644 index 000000000..4dda35a3a --- /dev/null +++ b/v1.49/v1/02785qs39.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/02785qs39", + "name": "Institut de Génétique Moléculaire de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.igmm.cnrs.fr/" + ], + "aliases": [], + "acronyms": [ + "IGMM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Molecular Genetics of Montpellier", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.429192.5", + "preferred": "grid.429192.5" + }, + "ISNI": { + "all": [ + "0000 0004 0599 0285" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/027defw95.json b/v1.49/v1/027defw95.json new file mode 100644 index 000000000..b4bf201c9 --- /dev/null +++ b/v1.49/v1/027defw95.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/027defw95", + "name": "Centre de Compétences NanoSciences Ile-de-France", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Ministère de l’Enseignement Supérieur et de la Recherche", + "type": "Parent", + "id": "https://ror.org/03sjk9a61" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://cnanoidf.org/en/" + ], + "aliases": [], + "acronyms": [ + "C'Nano IdF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.468120.9", + "preferred": "grid.468120.9" + }, + "ISNI": { + "all": [ + "0000 0004 5906 5378" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30264372" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/027ryxs60.json b/v1.49/v1/027ryxs60.json new file mode 100644 index 000000000..4b07dcc64 --- /dev/null +++ b/v1.49/v1/027ryxs60.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/027ryxs60", + "name": "Catholic University of Santa María", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Instituto de Investigación e Innovación en Energías Renovables y Medio Ambiente", + "type": "Child", + "id": "https://ror.org/01j6ykv32" + } + ], + "addresses": [ + { + "lat": -16.39889, + "lng": -71.535, + "state": null, + "state_code": null, + "city": "Arequipa", + "geonames_city": { + "id": 3947322, + "city": "Arequipa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ucsm.edu.pe/" + ], + "aliases": [], + "acronyms": [ + "UCSM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Catholic_University_of_Santa_Mar%C3%ADa", + "labels": [ + { + "label": "Universidad Católica de Santa María", + "iso639": "es" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "GRID": { + "all": "grid.441990.1", + "preferred": "grid.441990.1" + }, + "ISNI": { + "all": [ + "0000 0001 2226 7599" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5053268" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0281dp749.json b/v1.49/v1/0281dp749.json new file mode 100644 index 000000000..bc07f2587 --- /dev/null +++ b/v1.49/v1/0281dp749.json @@ -0,0 +1,212 @@ +{ + "id": "https://ror.org/0281dp749", + "name": "Helmholtz Association of German Research Centres", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Alfred-Wegener-Institut Helmholtz-Zentrum für Polar- und Meeresforschung", + "type": "Child", + "id": "https://ror.org/032e6b942" + }, + { + "label": "Deutsches Elektronen-Synchrotron DESY", + "type": "Child", + "id": "https://ror.org/01js2sh04" + }, + { + "label": "Forschungszentrum Jülich", + "type": "Child", + "id": "https://ror.org/02nv7yv05" + }, + { + "label": "GEOMAR Helmholtz Centre for Ocean Research Kiel", + "type": "Child", + "id": "https://ror.org/02h2x0161" + }, + { + "label": "GSI Helmholtz Centre for Heavy Ion Research", + "type": "Child", + "id": "https://ror.org/02k8cbn47" + }, + { + "label": "Deutsches Zentrum für Luft- und Raumfahrt e. V. (DLR)", + "type": "Child", + "id": "https://ror.org/04bwf3e34" + }, + { + "label": "German Cancer Research Center", + "type": "Child", + "id": "https://ror.org/04cdgtt98" + }, + { + "label": "German Center for Neurodegenerative Diseases", + "type": "Child", + "id": "https://ror.org/043j0f473" + }, + { + "label": "Helmholtz Alberta Initiative", + "type": "Child", + "id": "https://ror.org/02yvsmh51" + }, + { + "label": "Helmholtz Alliance for Astroparticle Physics", + "type": "Child", + "id": "https://ror.org/03wy6tp26" + }, + { + "label": "Helmholtz Center for Information Security", + "type": "Child", + "id": "https://ror.org/02njgxr09" + }, + { + "label": "Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences", + "type": "Child", + "id": "https://ror.org/04z8jg394" + }, + { + "label": "Helmholtz Centre for Environmental Research", + "type": "Child", + "id": "https://ror.org/000h6jb29" + }, + { + "label": "Helmholtz Centre for Infection Research", + "type": "Child", + "id": "https://ror.org/03d0p2685" + }, + { + "label": "Helmholtz Graduate School for Hadron and Ion Research", + "type": "Child", + "id": "https://ror.org/01syejz95" + }, + { + "label": "Helmholtz Zentrum München", + "type": "Child", + "id": "https://ror.org/00cfam450" + }, + { + "label": "Helmholtz-Institute Ulm", + "type": "Child", + "id": "https://ror.org/034rhsb33" + }, + { + "label": "Helmholtz-Zentrum Berlin für Materialien und Energie", + "type": "Child", + "id": "https://ror.org/02aj13c28" + }, + { + "label": "Helmholtz-Zentrum Dresden-Rossendorf", + "type": "Child", + "id": "https://ror.org/01zy2cs03" + }, + { + "label": "Helmholtz-Zentrum Hereon", + "type": "Child", + "id": "https://ror.org/03qjp1d79" + }, + { + "label": "Karlsruhe Institute of Technology", + "type": "Child", + "id": "https://ror.org/04t3en479" + }, + { + "label": "Max Delbrück Center", + "type": "Child", + "id": "https://ror.org/04p5ggc03" + }, + { + "label": "Brussels Office of Helmholtz Association", + "type": "Related", + "id": "https://ror.org/05sgy1v64" + }, + { + "label": "Max Planck Institute for Plasma Physics", + "type": "Related", + "id": "https://ror.org/03taest98" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.helmholtz.de/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Helmholtz_Association_of_German_Research_Centres", + "labels": [ + { + "label": "Helmholtz-Gemeinschaft Deutscher Forschungszentren", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.211011.2", + "preferred": "grid.211011.2" + }, + "ISNI": { + "all": [ + "0000 0001 1942 5154" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q679913" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/028cef883.json b/v1.49/v1/028cef883.json new file mode 100644 index 000000000..bcfdad050 --- /dev/null +++ b/v1.49/v1/028cef883.json @@ -0,0 +1,129 @@ +{ + "id": "https://ror.org/028cef883", + "name": "Laboratoire Chrono-Environnement", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Délégation Centre-Est", + "type": "Parent", + "id": "https://ror.org/01tz1zp46" + }, + { + "label": "Institut National de Recherches Archéologiques Préventives", + "type": "Parent", + "id": "https://ror.org/04andmq85" + }, + { + "label": "Institut National de la Recherche Agronomique", + "type": "Parent", + "id": "https://ror.org/05y503v71" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Ministère de la Culture", + "type": "Parent", + "id": "https://ror.org/017rnyz40" + }, + { + "label": "Université de franche-comté", + "type": "Parent", + "id": "https://ror.org/03pcc9z86" + } + ], + "addresses": [ + { + "lat": 47.24878, + "lng": 6.01815, + "state": null, + "state_code": null, + "city": "Besançon", + "geonames_city": { + "id": 3033123, + "city": "Besançon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://chrono-environnement.univ-fcomte.fr/" + ], + "aliases": [], + "acronyms": [ + "LCE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Chrono-Environment Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.493850.3", + "preferred": "grid.493850.3" + }, + "ISNI": { + "all": [ + "0000 0001 0360 9610" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q50040734" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/028m9sy08.json b/v1.49/v1/028m9sy08.json new file mode 100644 index 000000000..ac4285e37 --- /dev/null +++ b/v1.49/v1/028m9sy08.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/028m9sy08", + "name": "Neuro-Dol", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Régionale Auvergne-Rhône-Alpes", + "type": "Parent", + "id": "https://ror.org/0530j9m17" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://neurodol.uca.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503334.2", + "preferred": "grid.503334.2" + }, + "Wikidata": { + "all": [ + "Q51781159" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/028p0gk46.json b/v1.49/v1/028p0gk46.json new file mode 100644 index 000000000..0a58c7ae1 --- /dev/null +++ b/v1.49/v1/028p0gk46.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/028p0gk46", + "name": "Ramsay Santé Hôpital privé des Peupliers", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hopital-prive-des-peupliers-paris.ramsaysante.fr" + ], + "aliases": [ + "Private Hospital Of The Peupliers" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482791.1", + "preferred": "grid.482791.1" + }, + "ISNI": { + "all": [ + "0000 0004 0643 8521" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/028sfha37.json b/v1.49/v1/028sfha37.json new file mode 100644 index 000000000..1ca4e294f --- /dev/null +++ b/v1.49/v1/028sfha37.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/028sfha37", + "name": "Gambaga College of Education", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University for Development Studies", + "type": "Related", + "id": "https://ror.org/052nhnq73" + } + ], + "addresses": [ + { + "lat": 10.5322, + "lng": -0.43783, + "state": null, + "state_code": null, + "city": "Gambaga", + "geonames_city": { + "id": 2300776, + "city": "Gambaga", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://gacoe.edu.gh" + ], + "aliases": [], + "acronyms": [ + "GaCoE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gambaga_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996969" + ], + "preferred": "Q46996969" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/028wq3277.json b/v1.49/v1/028wq3277.json new file mode 100644 index 000000000..d206216b7 --- /dev/null +++ b/v1.49/v1/028wq3277.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/028wq3277", + "name": "Institut Charles Gerhardt", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "Parent", + "id": "https://ror.org/03sgyqj04" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.icgm.fr/?lang=en" + ], + "aliases": [], + "acronyms": [ + "ICGM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462034.7", + "preferred": "grid.462034.7" + }, + "ISNI": { + "all": [ + "0000 0001 2368 8723" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0290xtv45.json b/v1.49/v1/0290xtv45.json new file mode 100644 index 000000000..dd623efa7 --- /dev/null +++ b/v1.49/v1/0290xtv45.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/0290xtv45", + "name": "Humanities Council of South Carolina", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 34.00071, + "lng": -81.03481, + "state": null, + "state_code": null, + "city": "Columbia", + "geonames_city": { + "id": 4575352, + "city": "Columbia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://schumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446925.8", + "preferred": "grid.446925.8" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02910d597.json b/v1.49/v1/02910d597.json new file mode 100644 index 000000000..1b85d4fff --- /dev/null +++ b/v1.49/v1/02910d597.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02910d597", + "name": "Centre Lasers Intenses et Applications", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + } + ], + "addresses": [ + { + "lat": 44.80849, + "lng": -0.58915, + "state": null, + "state_code": null, + "city": "Talence", + "geonames_city": { + "id": 2973495, + "city": "Talence", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.celia.u-bordeaux1.fr/?lang=en" + ], + "aliases": [], + "acronyms": [ + "CELIA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462737.3", + "preferred": "grid.462737.3" + }, + "ISNI": { + "all": [ + "0000 0004 0382 7820" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261540" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0299rre20.json b/v1.49/v1/0299rre20.json new file mode 100644 index 000000000..fb7bb46eb --- /dev/null +++ b/v1.49/v1/0299rre20.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/0299rre20", + "name": "National Marine Data and Information Service", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.14222, + "lng": 117.17667, + "state": null, + "state_code": null, + "city": "Tianjin", + "geonames_city": { + "id": 1792947, + "city": "Tianjin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nmdis.org.cn" + ], + "aliases": [ + "National Marine Data and Information Service, China" + ], + "acronyms": [ + "NMDIS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "国家海洋信息中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/029ha4026.json b/v1.49/v1/029ha4026.json new file mode 100644 index 000000000..61bea2340 --- /dev/null +++ b/v1.49/v1/029ha4026.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/029ha4026", + "name": "France Europe Innovation", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.france-europe-innovation.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.434449.a", + "preferred": "grid.434449.a" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/029rfe283.json b/v1.49/v1/029rfe283.json new file mode 100644 index 000000000..88cdd711d --- /dev/null +++ b/v1.49/v1/029rfe283.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/029rfe283", + "name": "Centre Méditerranéen de Médecine Moléculaire", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/centre-me%CC%81diterrane%CC%81en-de-me%CC%81decine-mole%CC%81culaire-c3m" + ], + "aliases": [], + "acronyms": [ + "C3M" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Mediterranean Center for Molecular Medicine", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462370.4", + "preferred": "grid.462370.4" + }, + "ISNI": { + "all": [ + "0000 0004 0620 5402" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/029rmm934.json b/v1.49/v1/029rmm934.json new file mode 100644 index 000000000..1ab49938c --- /dev/null +++ b/v1.49/v1/029rmm934.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/029rmm934", + "name": "Laboratoire Léon Brillouin", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Institut Rayonnement-Matière de Saclay", + "type": "Parent", + "id": "https://ror.org/00cch2r34" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www-llb.cea.fr" + ], + "aliases": [], + "acronyms": [ + "LLB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462761.0", + "preferred": "grid.462761.0" + }, + "ISNI": { + "all": [ + "0000 0001 2105 3281" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261547" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/029xh1r47.json b/v1.49/v1/029xh1r47.json new file mode 100644 index 000000000..61ece0bfa --- /dev/null +++ b/v1.49/v1/029xh1r47.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/029xh1r47", + "name": "Toray Industries, Inc. (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 1926, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Toray (Thailand)", + "type": "Child", + "id": "https://ror.org/00fna1f74" + }, + { + "label": "Toray (United States)", + "type": "Child", + "id": "https://ror.org/03k0cyw07" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.toray.co.jp" + ], + "aliases": [ + "Toray", + "Toyo Rayon", + "Toyo Rayon Co., Ltd.", + "Toyorayon", + "Tōre Kabushiki-gaisha", + "東洋レーヨン株式会社" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Toray_Industries", + "labels": [ + { + "label": "Toray Industries, Inc.", + "iso639": "en" + }, + { + "label": "東レ株式会社", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.452701.5", + "preferred": "grid.452701.5" + }, + "ISNI": { + "all": [ + "0000 0001 0658 2898" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q168115" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02ac0n114.json b/v1.49/v1/02ac0n114.json new file mode 100644 index 000000000..734da0708 --- /dev/null +++ b/v1.49/v1/02ac0n114.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02ac0n114", + "name": "Centre Transdisciplinaire d'Épistémologie de la Littérature et des Arts vivants", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/centre-transdisciplinaire-depistemologie-de-la-litterature-et-des-arts-vivants-ctel" + ], + "aliases": [], + "acronyms": [ + "CTELA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51786174" + ], + "preferred": "Q51786174" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02an5tz90.json b/v1.49/v1/02an5tz90.json new file mode 100644 index 000000000..aafa1cc6c --- /dev/null +++ b/v1.49/v1/02an5tz90.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02an5tz90", + "name": "Gulf of Mexico Fishery Management Council", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "NOAA RESTORE Science Program", + "type": "Related", + "id": "https://ror.org/0042xzm63" + } + ], + "addresses": [ + { + "lat": 27.94752, + "lng": -82.45843, + "state": null, + "state_code": null, + "city": "Tampa", + "geonames_city": { + "id": 4174757, + "city": "Tampa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://gulfcouncil.org/" + ], + "aliases": [ + "Gulf Council" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.448433.c", + "preferred": "grid.448433.c" + }, + "ISNI": { + "all": [ + "0000 0004 0491 2955" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02b03n805.json b/v1.49/v1/02b03n805.json new file mode 100644 index 000000000..59a4eab0d --- /dev/null +++ b/v1.49/v1/02b03n805.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02b03n805", + "name": "University College of Science and Technology - Khan Younis", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.34018, + "lng": 34.30627, + "state": null, + "state_code": null, + "city": "Khan Yunis", + "geonames_city": { + "id": 281124, + "city": "Khan Yunis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cst-kh.edu.ps" + ], + "aliases": [ + "Khan Younis College of Science and Technology", + "Khan Younis University College of Science and Technology" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "الكلية الجامعية للعلوم والتكنولوجيا - خان يونس", + "iso639": "ar" + } + ], + "country": { + "country_name": "Palestine", + "country_code": "PS" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02b7f5969.json b/v1.49/v1/02b7f5969.json new file mode 100644 index 000000000..b2e911e31 --- /dev/null +++ b/v1.49/v1/02b7f5969.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02b7f5969", + "name": "Akanu Ibiam, Federal Polytechnic Unwana", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.79584, + "lng": 7.93717, + "state": null, + "state_code": null, + "city": "Unwana", + "geonames_city": { + "id": 2319709, + "city": "Unwana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://polyunwana.edu.ng" + ], + "aliases": [ + "Federal Polytechnic Unwana" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Akanu_Ibiam_Federal_Polytechnic", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02baj6743.json b/v1.49/v1/02baj6743.json new file mode 100644 index 000000000..41b0d8246 --- /dev/null +++ b/v1.49/v1/02baj6743.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/02baj6743", + "name": "CIC Rennes", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Hospitalier Universitaire de Rennes", + "type": "Parent", + "id": "https://ror.org/05qec5a53" + }, + { + "label": "Délégation Régionale Grand Ouest", + "type": "Parent", + "id": "https://ror.org/01qa4rf46" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cic-rennes.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre d'Investigation Clinique de Rennes", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503157.5", + "preferred": "grid.503157.5" + }, + "Wikidata": { + "all": [ + "Q51781079" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02banhz78.json b/v1.49/v1/02banhz78.json new file mode 100644 index 000000000..1fbb91168 --- /dev/null +++ b/v1.49/v1/02banhz78.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/02banhz78", + "name": "Diversité, adaptation, développement des plantes", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.diade-research.fr" + ], + "aliases": [ + "Diversity Adaptation plant Development", + "UMR DIADE" + ], + "acronyms": [ + "DIADE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Diversité Adaptation et Developpement", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503155.7", + "preferred": "grid.503155.7" + }, + "Wikidata": { + "all": [ + "Q51780672" + ], + "preferred": "Q51780672" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02bczqy30.json b/v1.49/v1/02bczqy30.json new file mode 100644 index 000000000..b0ad14270 --- /dev/null +++ b/v1.49/v1/02bczqy30.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02bczqy30", + "name": "Nature Inspires Creativity Engineers Lab", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/nature-inspires-creativity-engineers-n-i-c-e-lab" + ], + "aliases": [ + "NICE Lab" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02byv2846.json b/v1.49/v1/02byv2846.json new file mode 100644 index 000000000..7a0fd48b0 --- /dev/null +++ b/v1.49/v1/02byv2846.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02byv2846", + "name": "Fluides, Automatique et Systèmes Thermiques", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.fast.u-psud.fr" + ], + "aliases": [], + "acronyms": [ + "FAST" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463850.c", + "preferred": "grid.463850.c" + }, + "ISNI": { + "all": [ + "0000 0004 0369 9697" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02c0rrp38.json b/v1.49/v1/02c0rrp38.json new file mode 100644 index 000000000..33986ab81 --- /dev/null +++ b/v1.49/v1/02c0rrp38.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/02c0rrp38", + "name": "Escola de Administração de Empresas de São Paulo", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -23.5475, + "lng": -46.63611, + "state": null, + "state_code": null, + "city": "São Paulo", + "geonames_city": { + "id": 3448439, + "city": "São Paulo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://eaesp.fgv.br" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Escola_de_Administra%C3%A7%C3%A3o_de_Empresas_de_S%C3%A3o_Paulo", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2301 4016" + ], + "preferred": "0000 0001 2301 4016" + }, + "Wikidata": { + "all": [ + "Q10274560" + ], + "preferred": "Q10274560" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02c3vyb44.json b/v1.49/v1/02c3vyb44.json new file mode 100644 index 000000000..60fc3d412 --- /dev/null +++ b/v1.49/v1/02c3vyb44.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02c3vyb44", + "name": "Al-Qalam University College", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.46806, + "lng": 44.39222, + "state": null, + "state_code": null, + "city": "Kirkuk", + "geonames_city": { + "id": 94787, + "city": "Kirkuk", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://alqalam.edu.iq" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "كلية القلم الجامعة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1316 2655" + ], + "preferred": "0000 0005 1316 2655" + }, + "Wikidata": { + "all": [ + "Q25450382" + ], + "preferred": "Q25450382" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02cptmd52.json b/v1.49/v1/02cptmd52.json new file mode 100644 index 000000000..8d0bb3259 --- /dev/null +++ b/v1.49/v1/02cptmd52.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02cptmd52", + "name": "Agronomie", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://agronomie.versailles-grignon.hub.inrae.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785613" + ], + "preferred": "Q51785613" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02czghn94.json b/v1.49/v1/02czghn94.json new file mode 100644 index 000000000..fffcfd3d0 --- /dev/null +++ b/v1.49/v1/02czghn94.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02czghn94", + "name": "Board of Cooperative Educational Services of Nassau County", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.72677, + "lng": -73.6343, + "state": null, + "state_code": null, + "city": "Garden City", + "geonames_city": { + "id": 5118226, + "city": "Garden City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nassauboces.org/" + ], + "aliases": [ + "Nassau BOCES" + ], + "acronyms": [ + "BOCES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.493969.8", + "preferred": "grid.493969.8" + }, + "ISNI": { + "all": [ + "0000 0004 0605 9118" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02d4qm557.json b/v1.49/v1/02d4qm557.json new file mode 100644 index 000000000..9aeb9fbee --- /dev/null +++ b/v1.49/v1/02d4qm557.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/02d4qm557", + "name": "Korn Ferry (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.05223, + "lng": -118.24368, + "state": null, + "state_code": null, + "city": "Los Angeles", + "geonames_city": { + "id": 5368361, + "city": "Los Angeles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kornferry.com" + ], + "aliases": [ + "Korn Ferry Hay Group", + "Korn Ferry Institute", + "Korn/Ferry International" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Korn_Ferry", + "labels": [ + { + "label": "Korn Ferry", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q1728446" + ], + "preferred": "Q1728446" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02d5gqx12.json b/v1.49/v1/02d5gqx12.json new file mode 100644 index 000000000..c2ecf322f --- /dev/null +++ b/v1.49/v1/02d5gqx12.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02d5gqx12", + "name": "National Council Of Educational Research And Training", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.62137, + "lng": 77.2148, + "state": null, + "state_code": null, + "city": "New Delhi", + "geonames_city": { + "id": 1261481, + "city": "New Delhi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ncert.nic.in" + ], + "aliases": [], + "acronyms": [ + "NCERT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Council_of_Educational_Research_and_Training", + "labels": [ + { + "label": "ರಾಷ್ಟ್ರೀಯ ಶೈಕ್ಷಣಿಕ ಸಂಶೋಧನಾ ಮತ್ತು ತರಬೇತಿ ಪರಿಷತ್", + "iso639": "kn" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.501992.6", + "preferred": "grid.501992.6" + }, + "ISNI": { + "all": [ + "0000 0001 2153 5782" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6971919" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02dd25k08.json b/v1.49/v1/02dd25k08.json new file mode 100644 index 000000000..6b9fc0d3a --- /dev/null +++ b/v1.49/v1/02dd25k08.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02dd25k08", + "name": "Laboratoire de Chimie et Biologie des Métaux", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cbm-lab.fr" + ], + "aliases": [], + "acronyms": [ + "LCBM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462960.f", + "preferred": "grid.462960.f" + }, + "ISNI": { + "all": [ + "0000 0004 0384 0427" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261613" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02dd6pb80.json b/v1.49/v1/02dd6pb80.json new file mode 100644 index 000000000..8ba218f51 --- /dev/null +++ b/v1.49/v1/02dd6pb80.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02dd6pb80", + "name": "ISPA - Instituto Universitário", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ispa.pt" + ], + "aliases": [], + "acronyms": [ + "ISPA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ISPA_%E2%80%93_Instituto_Universit%C3%A1rio", + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02dvx0516.json b/v1.49/v1/02dvx0516.json new file mode 100644 index 000000000..827b2e0d2 --- /dev/null +++ b/v1.49/v1/02dvx0516.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/02dvx0516", + "name": "Groupe de Recherche sur les formes Injectables et les Technologies Associées", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://grita.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "GRITA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02dyaew97.json b/v1.49/v1/02dyaew97.json new file mode 100644 index 000000000..c07cf96b2 --- /dev/null +++ b/v1.49/v1/02dyaew97.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02dyaew97", + "name": "Laboratoire de physique des Solides", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lps.u-psud.fr" + ], + "aliases": [], + "acronyms": [ + "LPS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Laboratory_of_Solid_State_Physics", + "labels": [ + { + "label": "Laboratory of Solid State Physics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462447.7", + "preferred": "grid.462447.7" + }, + "ISNI": { + "all": [ + "0000 0000 9404 6552" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3214477" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02e6tmy71.json b/v1.49/v1/02e6tmy71.json new file mode 100644 index 000000000..84fbfb8f1 --- /dev/null +++ b/v1.49/v1/02e6tmy71.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02e6tmy71", + "name": "Wilhelm och Else Stockmanns Stiftelse", + "email_address": null, + "ip_addresses": [], + "established": 1978, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 60.17556, + "lng": 24.93417, + "state": null, + "state_code": null, + "city": "Helsinki", + "geonames_city": { + "id": 658226, + "city": "Helsinki", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Wilhelm and Else Stockmann Foundation", + "iso639": "en" + } + ], + "country": { + "country_name": "Finland", + "country_code": "FI" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7465 0487" + ], + "preferred": "0000 0004 7465 0487" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02egw5x81.json b/v1.49/v1/02egw5x81.json new file mode 100644 index 000000000..5229e244e --- /dev/null +++ b/v1.49/v1/02egw5x81.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02egw5x81", + "name": "Centre de recherche et de restauration des musées de France", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Laboratoire de développement instrumental et de méthodologies innovantes pour les Biens Culturels", + "type": "Child", + "id": "https://ror.org/01h2qr957" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://en.c2rmf.fr/" + ], + "aliases": [], + "acronyms": [ + "C2RMF" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Center_for_Research_and_Restoration_of_Museums_of_France", + "labels": [ + { + "label": "Center for Research and Restoration of Museums of France", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.423667.2", + "preferred": "grid.423667.2" + }, + "ISNI": { + "all": [ + "0000 0001 2297 0516" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945440" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02en5vm52.json b/v1.49/v1/02en5vm52.json new file mode 100644 index 000000000..7ac95620d --- /dev/null +++ b/v1.49/v1/02en5vm52.json @@ -0,0 +1,1123 @@ +{ + "id": "https://ror.org/02en5vm52", + "name": "Sorbonne Université", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Adaptation et Diversité en Milieu Marin", + "type": "Child", + "id": "https://ror.org/0293jn610" + }, + { + "label": "Laboratoire d'Ecogéochimie des Environnements Benthiques", + "type": "Child", + "id": "https://ror.org/049xh5y45" + }, + { + "label": "Biologie Intégrative des Organismes Marins", + "type": "Child", + "id": "https://ror.org/03wg93s13" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "Child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Centre André-Chastel", + "type": "Child", + "id": "https://ror.org/03jqm0b89" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre d’étude de la langue et des littératures françaises", + "type": "Child", + "id": "https://ror.org/059v8sw69" + }, + { + "label": "Centre de Recherche Saint-Antoine", + "type": "Child", + "id": "https://ror.org/03wxndv36" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "Child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de recherches sur la pensée antique", + "type": "Child", + "id": "https://ror.org/02d19mr69" + }, + { + "label": "Centre d'Écologie et des Sciences de la Conservation", + "type": "Child", + "id": "https://ror.org/00sad8321" + }, + { + "label": "Chimie de la Matière Condensée de Paris", + "type": "Child", + "id": "https://ror.org/028ta1f94" + }, + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "Child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Biologie évolutive et écologie des algues", + "type": "Child", + "id": "https://ror.org/051k70002" + }, + { + "label": "Géoazur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Groupe d'Étude des Méthodes de l'Analyse Sociologique de la Sorbonne", + "type": "Child", + "id": "https://ror.org/00kzsxx38" + }, + { + "label": "Institut Henri Poincaré", + "type": "Child", + "id": "https://ror.org/05dfxeg46" + }, + { + "label": "Institut Jean Le Rond d'Alembert", + "type": "Child", + "id": "https://ror.org/043we9s22" + }, + { + "label": "Institut Parisien de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04qwfwm19" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "Child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "Child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "Child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "Child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institut du Cerveau", + "type": "Child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "Child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "Child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institut de minéralogie, de physique des matériaux et de cosmochimie", + "type": "Child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "Institut de Myologie", + "type": "Child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "Child", + "id": "https://ror.org/01h14ww21" + }, + { + "label": "Laboratoire Interfaces et Systèmes Électrochimiques", + "type": "Child", + "id": "https://ror.org/00jb20a14" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "Child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Perrin", + "type": "Child", + "id": "https://ror.org/01ghvgs84" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "Child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Biodiversité et Biotechnologies Microbiennes", + "type": "Child", + "id": "https://ror.org/039p01270" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "Child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire de Biologie du Développement de Villefranche-sur-Mer", + "type": "Child", + "id": "https://ror.org/04hke8425" + }, + { + "label": "Laboratoire de Chimie Physique - Matière et Rayonnement", + "type": "Child", + "id": "https://ror.org/03z20vp15" + }, + { + "label": "Laboratoire de Chimie Théorique", + "type": "Child", + "id": "https://ror.org/00tmb7y09" + }, + { + "label": "Laboratoire de chimie des processus biologiques", + "type": "Child", + "id": "https://ror.org/02fv42846" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Physique Nucléaire et de Hautes Énergies", + "type": "Child", + "id": "https://ror.org/01hg8p552" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "Child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Laboratoire de Recherche en Informatique de Paris 6", + "type": "Child", + "id": "https://ror.org/05krcen59" + }, + { + "label": "Laboratoire de Réactivité de Surface", + "type": "Child", + "id": "https://ror.org/04vthwx70" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "Child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire d’Archéologie Moléculaire et Structurale", + "type": "Child", + "id": "https://ror.org/02ctqqq48" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratoire de Biologie Computationnelle et Quantitative", + "type": "Child", + "id": "https://ror.org/00pcqj134" + }, + { + "label": "Laboratoire de Biologie Intégrative des Modèles Marins", + "type": "Child", + "id": "https://ror.org/001c8pb03" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "Child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Laboratoire d'Océanographie Microbienne", + "type": "Child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratoire de Biologie Moléculaire et Cellulaire des Eucaryotes", + "type": "Child", + "id": "https://ror.org/05mx55f96" + }, + { + "label": "Laboratoire de Physique et d’Étude des Matériaux", + "type": "Child", + "id": "https://ror.org/00a72jq18" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratoire de Physique Théorique de la Matière Condensée", + "type": "Child", + "id": "https://ror.org/04zaaa143" + }, + { + "label": "Laboratoire de Physique Théorique et Hautes Energies", + "type": "Child", + "id": "https://ror.org/02mph9k76" + }, + { + "label": "Institut Langevin", + "type": "Child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Milieux environnementaux, transferts et interactions dans les hydrosystèmes et les sols", + "type": "Child", + "id": "https://ror.org/0229z0679" + }, + { + "label": "Molécule aux Nanos-objets : Réactivité, Interactions et Spectroscopies", + "type": "Child", + "id": "https://ror.org/02jkg8m11" + }, + { + "label": "Dynamique du noyau", + "type": "Child", + "id": "https://ror.org/04team556" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Orient & Méditerranée", + "type": "Child", + "id": "https://ror.org/051gvfp41" + }, + { + "label": "Institut des NanoSciences de Paris", + "type": "Child", + "id": "https://ror.org/03t2f0a12" + }, + { + "label": "Physique des Cellules et Cancers", + "type": "Child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "PHENIX laboratory", + "type": "Child", + "id": "https://ror.org/046htjf88" + }, + { + "label": "Biologie du chloroplaste et perception de la lumière chez les micro-algues", + "type": "Child", + "id": "https://ror.org/001r32c80" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "Child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "Child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "Child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "Child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Station Biologique de Roscoff", + "type": "Child", + "id": "https://ror.org/03s0pzj56" + }, + { + "label": "Sciences et Ingénierie de la Matière Molle", + "type": "Child", + "id": "https://ror.org/03f0z1g15" + }, + { + "label": "Chimie du Solide et Energie", + "type": "Child", + "id": "https://ror.org/03s877y45" + }, + { + "label": "Sorbonne - Identités, Relations Internationales et Civilisations de l’Europe", + "type": "Child", + "id": "https://ror.org/03ae8w006" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "Child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Systèmes de Référence Temps-Espace", + "type": "Child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Unité de Modélisation Mathématique et Informatique des Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/053kxkj53" + }, + { + "label": "Laboratoire d’Océanographie de Villefranche", + "type": "Child", + "id": "https://ror.org/05r5y6641" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "Child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre de Recherche sur l'Amérique Pré-hispanique", + "type": "Child", + "id": "https://ror.org/000nfmp17" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "Child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "Child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "Child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "Child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "Child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "Child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Institut de la Vision", + "type": "Child", + "id": "https://ror.org/000zhpw23" + }, + { + "label": "École des Neurosciences de Paris", + "type": "Child", + "id": "https://ror.org/05re0sm29" + }, + { + "label": "Laboratoire atmosphères, milieux, observations spatiales", + "type": "Child", + "id": "https://ror.org/05ppf7q77" + }, + { + "label": "ITER", + "type": "Child", + "id": "https://ror.org/01d7n9638" + }, + { + "label": "UMI MajuLab", + "type": "Child", + "id": "https://ror.org/027jrtw17" + }, + { + "label": "Laboratoire de Physique de l'ENS", + "type": "Child", + "id": "https://ror.org/03a26mh11" + }, + { + "label": "Institut Pierre-Simon Laplace", + "type": "Child", + "id": "https://ror.org/02haar591" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "Child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Autonomia", + "type": "Child", + "id": "https://ror.org/01ms54x07" + }, + { + "label": "Edition, Interprétation et traduction des textes anciens", + "type": "Child", + "id": "https://ror.org/015cf0x85" + }, + { + "label": "Centre de Recherches Interdisciplinaires sur les Mondes Ibéro-américains Contemporains", + "type": "Child", + "id": "https://ror.org/006jv0w93" + }, + { + "label": "Centre de Recherches sur l’Extrême Orient de Paris – Sorbonne", + "type": "Child", + "id": "https://ror.org/04vwsc311" + }, + { + "label": "Centre d'histoire du XIXe siècle", + "type": "Child", + "id": "https://ror.org/04hrxxd90" + }, + { + "label": "Métaphysique, histoires, transformations, actualités", + "type": "Child", + "id": "https://ror.org/04sv5r538" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "Child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "Child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "Fédération de recherche en sciences mathématiques de Paris centre", + "type": "Child", + "id": "https://ror.org/02jwwk370" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "Child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "Child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Troubles psychiatriques et développement", + "type": "Child", + "id": "https://ror.org/04nc8v966" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Centre Expert en Endométriose", + "type": "Child", + "id": "https://ror.org/00s0m4j44" + }, + { + "label": "Robotique et Innovation Chirurgicale", + "type": "Child", + "id": "https://ror.org/04shr9s31" + }, + { + "label": "Handicap moteur et cognitif et réadaptation", + "type": "Child", + "id": "https://ror.org/011gr5n11" + }, + { + "label": "Analyse, Recherche, Développement et Evaluation en Endourologie et Lithiase Urinaire", + "type": "Child", + "id": "https://ror.org/03f1mtj27" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Groupe de recherche interdisciplinaire sur les processus d'information et de communication", + "type": "Child", + "id": "https://ror.org/04p8das24" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "Child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Centre de linguistique en Sorbonne", + "type": "Child", + "id": "https://ror.org/02zzf0m94" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Réanimation et soins intensifs du patient en Insuffisance respiratoire aigüe", + "type": "Child", + "id": "https://ror.org/02qvhgb32" + }, + { + "label": "Méthodes et Outils pour les Sciences Participatives", + "type": "Child", + "id": "https://ror.org/05kytrf83" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "Child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Laboratoire Médiations", + "type": "Child", + "id": "https://ror.org/04tb23024" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Transplantation et Thérapies Innovantes de la Cornée", + "type": "Child", + "id": "https://ror.org/02g0s3c07" + }, + { + "label": "Biomarqueurs d’urgence et de réanimation", + "type": "Child", + "id": "https://ror.org/01jnrzt83" + }, + { + "label": "Groupe de REcherche en Cardio Oncologie", + "type": "Child", + "id": "https://ror.org/00b4yme84" + }, + { + "label": "Rome et ses renaissances", + "type": "Child", + "id": "https://ror.org/011hja523" + }, + { + "label": "CERES - Centre d'expérimentation en méthodes numériques pour les recherches en sciences humaines et sociales", + "type": "Child", + "id": "https://ror.org/00fyy4d45" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "Child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Institut des Sciences du Calcul et des Données", + "type": "Child", + "id": "https://ror.org/00y16rm59" + }, + { + "label": "Complications Cardiovasculaires et Métaboliques chez les patients vivant avec le VIH", + "type": "Child", + "id": "https://ror.org/00njafa27" + }, + { + "label": "Groupe de Recherche Clinique en Neuro-urologie", + "type": "Child", + "id": "https://ror.org/05gzcy376" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Alzheimer Precision Medicine", + "type": "Child", + "id": "https://ror.org/058qr4y65" + }, + { + "label": "Onco-Urologie Prédictive", + "type": "Child", + "id": "https://ror.org/0138eq662" + }, + { + "label": "Histoire et Archéologie Maritimes", + "type": "Child", + "id": "https://ror.org/011mac819" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "Child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "Child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénierie des Connaissances en e-Santé", + "type": "Child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Enzymologie de l'ARN", + "type": "Child", + "id": "https://ror.org/05n2mnn68" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "Child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "Child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Histoire et Dynamique des Espaces Anglophones: du Réel au Virtuel", + "type": "Child", + "id": "https://ror.org/03vkkad71" + }, + { + "label": "Étude et Édition de Textes Médiévaux", + "type": "Child", + "id": "https://ror.org/037ptrs19" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Représentations et Identités. Espaces Germanique, Nordique et Néerlandophone", + "type": "Child", + "id": "https://ror.org/053sj3y70" + }, + { + "label": "Centre d'Études Médiévales Anglaises", + "type": "Child", + "id": "https://ror.org/01acw3598" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "Drépanocytose : groupe de Recherche de Paris – Sorbonne Université", + "type": "Child", + "id": "https://ror.org/015tg7676" + }, + { + "label": "IMAGES : La médecine de la femme et de l’enfant assistée par l’image", + "type": "Child", + "id": "https://ror.org/00x677422" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "Child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "Civilisations et littératures d'Espagne et d'Amérique du Moyen-Age aux Lumières", + "type": "Child", + "id": "https://ror.org/04xy2by41" + }, + { + "label": "Sens, Texte, Informatique, Histoire", + "type": "Child", + "id": "https://ror.org/02q5emw59" + }, + { + "label": "Centre de Recherche en Littérature Comparée", + "type": "Child", + "id": "https://ror.org/015th7t48" + }, + { + "label": "Équipe Littérature et Culture italiennes", + "type": "Child", + "id": "https://ror.org/05ntgv723" + }, + { + "label": "Groupe d’Étude sur l’HyperTension Intra Crânienne idiopathique", + "type": "Child", + "id": "https://ror.org/013s2ts57" + }, + { + "label": "Groupe de recherche clinique en anesthésie réanimation médecine périopératoire", + "type": "Child", + "id": "https://ror.org/02zn90974" + }, + { + "label": "Groupe de recherche clinique – Tumeurs Thyroïdiennes", + "type": "Child", + "id": "https://ror.org/04n40rk24" + }, + { + "label": "THERANOSCAN : Biomarqueurs Théranostiques des Cancers Bronchiques Non à Petites Cellules", + "type": "Child", + "id": "https://ror.org/02qe0rk31" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Groupe de recherche clinique Amylose AA Sorbonne Université", + "type": "Child", + "id": "https://ror.org/01zpxh127" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "Child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "NeurON : Interface Neuro-machine", + "type": "Child", + "id": "https://ror.org/00a8q8z31" + }, + { + "label": "PremUP", + "type": "Child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "Child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Voix Anglophones : Littérature et Esthétique", + "type": "Child", + "id": "https://ror.org/02m26fm05" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "Child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Remodelage et Reparation du Tissu Renal", + "type": "Child", + "id": "https://ror.org/01sra1980" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "Child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Child", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Related", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "European Marine Biological Resource Centre", + "type": "Related", + "id": "https://ror.org/0038zss60" + }, + { + "label": "Hôpital Armand-Trousseau", + "type": "Related", + "id": "https://ror.org/00yfbr841" + }, + { + "label": "Hôpital Tenon", + "type": "Related", + "id": "https://ror.org/05h5v3c50" + }, + { + "label": "Hôpital Charles-Foix", + "type": "Related", + "id": "https://ror.org/04v3xcy66" + }, + { + "label": "Hôpital Rothschild", + "type": "Related", + "id": "https://ror.org/009kb8w74" + }, + { + "label": "Hôpital Saint-Antoine", + "type": "Related", + "id": "https://ror.org/01875pg84" + }, + { + "label": "Pitié-Salpêtrière Hospital", + "type": "Related", + "id": "https://ror.org/02mh9a093" + }, + { + "label": "Hôpital de la Roche-Guyon", + "type": "Related", + "id": "https://ror.org/02t1zz428" + }, + { + "label": "Centre hospitalier national d'ophtalmologie des Quinze-Vingts", + "type": "Related", + "id": "https://ror.org/024v1ns19" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sorbonne-universite.fr" + ], + "aliases": [ + "Pierre and Marie Curie University", + "University of Paris-Sorbonne" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Sorbonne_University", + "labels": [ + { + "label": "Sorbonne University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462844.8", + "preferred": "grid.462844.8" + }, + "ISNI": { + "all": [ + "0000 0001 2308 1657" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q41497113", + "Q3491150", + "Q546118", + "Q1144549" + ], + "preferred": "Q41497113" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02en65a92.json b/v1.49/v1/02en65a92.json new file mode 100644 index 000000000..5d4a79b4f --- /dev/null +++ b/v1.49/v1/02en65a92.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02en65a92", + "name": "Open Molecular Software Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.54491, + "lng": -121.74052, + "state": null, + "state_code": null, + "city": "Davis", + "geonames_city": { + "id": 5341704, + "city": "Davis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://omsf.io" + ], + "aliases": [], + "acronyms": [ + "OMSF" + ], + "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.49/v1/02erddr56.json b/v1.49/v1/02erddr56.json new file mode 100644 index 000000000..70c0c8bf4 --- /dev/null +++ b/v1.49/v1/02erddr56.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02erddr56", + "name": "Laboratoire Albert Fert", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Thales (France)", + "type": "Parent", + "id": "https://ror.org/04emwm605" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://laboratoire-albert-fert.cnrs-thales.fr" + ], + "aliases": [ + "Albert Fert Laboratory", + "Unité Mixte de Physique CNRS/Thales" + ], + "acronyms": [ + "UMPhy" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462731.5", + "preferred": "grid.462731.5" + }, + "ISNI": { + "all": [ + "0000 0004 0382 1752" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16511698" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02evk6c51.json b/v1.49/v1/02evk6c51.json new file mode 100644 index 000000000..bd9be502a --- /dev/null +++ b/v1.49/v1/02evk6c51.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/02evk6c51", + "name": "Ethologie animale et humaine", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université de Caen Normandie", + "type": "Parent", + "id": "https://ror.org/051kpcy16" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ethos.univ-rennes.fr" + ], + "aliases": [], + "acronyms": [ + "ETHoS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Animal and Human Ethology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0452 0783" + ], + "preferred": "0000 0004 0452 0783" + }, + "Wikidata": { + "all": [ + "Q52604569" + ], + "preferred": "Q52604569" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02ezch769.json b/v1.49/v1/02ezch769.json new file mode 100644 index 000000000..d6a2aa848 --- /dev/null +++ b/v1.49/v1/02ezch769.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/02ezch769", + "name": "Université Polytechnique Hauts-de-France", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut d'électronique de microélectronique et de nanotechnologie", + "type": "Child", + "id": "https://ror.org/02q4res37" + }, + { + "label": "Laboratoire d'Automatique, de Mécanique et d'Informatique Industrielles et Humaines", + "type": "Child", + "id": "https://ror.org/006z7v557" + }, + { + "label": "Maison Européenne des Sciences de l'Homme et de la Société", + "type": "Child", + "id": "https://ror.org/00m090414" + } + ], + "addresses": [ + { + "lat": 50.35909, + "lng": 3.52506, + "state": null, + "state_code": null, + "city": "Valenciennes", + "geonames_city": { + "id": 2971041, + "city": "Valenciennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uphf.fr/" + ], + "aliases": [ + "University of Valenciennes and Hainaut-Cambrési" + ], + "acronyms": [ + "UPHF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Polytechnic_University_of_Hauts-de-France", + "labels": [ + { + "label": "Polytechnic University of Hauts-de-France", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.12810.3a", + "preferred": "grid.12810.3a" + }, + "ISNI": { + "all": [ + "0000 0001 0790 1416" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1548539" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02f3ymk52.json b/v1.49/v1/02f3ymk52.json new file mode 100644 index 000000000..4c81be9d2 --- /dev/null +++ b/v1.49/v1/02f3ymk52.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/02f3ymk52", + "name": "ICN Business School", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.68439, + "lng": 6.18496, + "state": null, + "state_code": null, + "city": "Nancy", + "geonames_city": { + "id": 2990999, + "city": "Nancy", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.icn-artem.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ICN_Business_School", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4686 6766" + ], + "preferred": "0000 0004 4686 6766" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02f9zrr09.json b/v1.49/v1/02f9zrr09.json new file mode 100644 index 000000000..1f80dcb3b --- /dev/null +++ b/v1.49/v1/02f9zrr09.json @@ -0,0 +1,232 @@ +{ + "id": "https://ror.org/02f9zrr09", + "name": "Novartis (Switzerland)", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Novartis (Australia)", + "type": "Child", + "id": "https://ror.org/01w8m1867" + }, + { + "label": "Novartis (Austria)", + "type": "Child", + "id": "https://ror.org/04t24x986" + }, + { + "label": "Novartis (Belgium)", + "type": "Child", + "id": "https://ror.org/05he4e720" + }, + { + "label": "Novartis (Canada)", + "type": "Child", + "id": "https://ror.org/05afs3z13" + }, + { + "label": "Novartis (China)", + "type": "Child", + "id": "https://ror.org/00fxgea47" + }, + { + "label": "Novartis (Denmark)", + "type": "Child", + "id": "https://ror.org/027f4r073" + }, + { + "label": "Novartis (France)", + "type": "Child", + "id": "https://ror.org/00geypp27" + }, + { + "label": "Novartis (Germany)", + "type": "Child", + "id": "https://ror.org/0013shd50" + }, + { + "label": "Novartis (Hungary)", + "type": "Child", + "id": "https://ror.org/04kqbrq68" + }, + { + "label": "Novartis (India)", + "type": "Child", + "id": "https://ror.org/00dhvr506" + }, + { + "label": "Novartis (Ireland)", + "type": "Child", + "id": "https://ror.org/04sgnw557" + }, + { + "label": "Novartis (Israel)", + "type": "Child", + "id": "https://ror.org/01psm3828" + }, + { + "label": "Novartis (Italy)", + "type": "Child", + "id": "https://ror.org/04rcxhq50" + }, + { + "label": "Novartis (Japan)", + "type": "Child", + "id": "https://ror.org/01k1ftz35" + }, + { + "label": "Novartis (Mexico)", + "type": "Child", + "id": "https://ror.org/02dbytc62" + }, + { + "label": "Novartis (Netherlands)", + "type": "Child", + "id": "https://ror.org/01a80cj23" + }, + { + "label": "Novartis (Norway)", + "type": "Child", + "id": "https://ror.org/04qhpra63" + }, + { + "label": "Novartis (Singapore)", + "type": "Child", + "id": "https://ror.org/02v66pf20" + }, + { + "label": "Novartis (Slovakia)", + "type": "Child", + "id": "https://ror.org/02hdkm455" + }, + { + "label": "Novartis (Slovenia)", + "type": "Child", + "id": "https://ror.org/0504mbn59" + }, + { + "label": "Novartis (South Korea)", + "type": "Child", + "id": "https://ror.org/00jkyke88" + }, + { + "label": "Novartis (Spain)", + "type": "Child", + "id": "https://ror.org/042e6sa59" + }, + { + "label": "Novartis (Sweden)", + "type": "Child", + "id": "https://ror.org/01msnnq69" + }, + { + "label": "Novartis (United Kingdom)", + "type": "Child", + "id": "https://ror.org/039s6n838" + }, + { + "label": "Novartis (United States)", + "type": "Child", + "id": "https://ror.org/028fhxy95" + }, + { + "label": "Sandoz Group AG (Switzerland)", + "type": "Child", + "id": "https://ror.org/02rse7p59" + }, + { + "label": "Novartis Gene Therapies Switzerland GmbH", + "type": "Child", + "id": "https://ror.org/02z899n24" + }, + { + "label": "Friedrich Miescher Institute", + "type": "Related", + "id": "https://ror.org/01bmjkv45" + }, + { + "label": "Novartis Institutes for BioMedical Research", + "type": "Child", + "id": "https://ror.org/053gv2m95" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.novartis.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Novartis", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.419481.1", + "preferred": "grid.419481.1" + }, + "ISNI": { + "all": [ + "0000 0001 1515 9979" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q507154" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02feahw73.json b/v1.49/v1/02feahw73.json new file mode 100644 index 000000000..c26abe722 --- /dev/null +++ b/v1.49/v1/02feahw73.json @@ -0,0 +1,1945 @@ +{ + "id": "https://ror.org/02feahw73", + "name": "Centre National de la Recherche Scientifique", + "email_address": null, + "ip_addresses": [], + "established": 1939, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre de Recherche en Cancérologie de Toulouse", + "type": "Child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Centre Max Weber", + "type": "Child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "Child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "Child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Child", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Direction Générale Déléguée à la Science", + "type": "Child", + "id": "https://ror.org/043nepn57" + }, + { + "label": "Délégation Bretagne et Pays de la Loire", + "type": "Child", + "id": "https://ror.org/02t220m45" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "Child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Image and Pervasive Access Laboratory", + "type": "Child", + "id": "https://ror.org/00m3mb357" + }, + { + "label": "Institut Clément Ader", + "type": "Child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Institut Français d'Études Anatoliennes", + "type": "Child", + "id": "https://ror.org/0331qyx19" + }, + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Child", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Child", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "Child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Chimie", + "type": "Child", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Institut de Physique", + "type": "Child", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "Child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Child", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Child", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Child", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "CNRS Ingénierie", + "type": "Child", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Child", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institut de Mécanique et d'Ingénierie", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Aménagement Économie Transports", + "type": "Child", + "id": "https://ror.org/01yw97595" + }, + { + "label": "Laboratoire d'Annecy-le-Vieux de Physique Théorique", + "type": "Child", + "id": "https://ror.org/010hz2d37" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "Child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "Child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratoire Souterrain à Bas Bruit", + "type": "Child", + "id": "https://ror.org/05gscwg02" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Réseau sur le Stockage Electrochimique de l'énergie", + "type": "Child", + "id": "https://ror.org/00190j002" + }, + { + "label": "Centre CEA de Saclay", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Synchrotron soleil", + "type": "Child", + "id": "https://ror.org/01ydb3330" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "Child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Histoire Judiciaire", + "type": "Child", + "id": "https://ror.org/00g32ep81" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "Child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "AERIS/ICARE Data and Services Center", + "type": "Child", + "id": "https://ror.org/013z99a51" + }, + { + "label": "Institut de Recherche sur les Composants logiciels et matériels pour l'Information et la Communication Avancée", + "type": "Child", + "id": "https://ror.org/010nk4c68" + }, + { + "label": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "type": "Child", + "id": "https://ror.org/04f5rw142" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Arènes: politique, santé publique, environnement, médias", + "type": "Child", + "id": "https://ror.org/00m4rxj18" + }, + { + "label": "Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "Institut de génétique et de développement de Rennes", + "type": "Child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "Child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "Child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "Child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Ethologie animale et humaine", + "type": "Child", + "id": "https://ror.org/02evk6c51" + }, + { + "label": "Laboratoire d'études de genre et de sexualité", + "type": "Child", + "id": "https://ror.org/005w2mm89" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "Child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Institut de l'Ouest : Droit et Europe", + "type": "Child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Maison des Sciences de l'Homme Mondes", + "type": "Child", + "id": "https://ror.org/00wx1mx58" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Centre Émile Durkheim", + "type": "Child", + "id": "https://ror.org/01k7w0p97" + }, + { + "label": "Laboratoire de Mathématiques de Besançon", + "type": "Child", + "id": "https://ror.org/04nrhwg12" + }, + { + "label": "Laboratoire architecture anthropologie", + "type": "Child", + "id": "https://ror.org/05wy2cj05" + }, + { + "label": "Biologie du Développement et Cellules Souches", + "type": "Child", + "id": "https://ror.org/02af93v77" + }, + { + "label": "Centre de recherche sur les Inégalités Sociales", + "type": "Child", + "id": "https://ror.org/02a4c5q78" + }, + { + "label": "Centre International de Rencontres Mathématiques", + "type": "Child", + "id": "https://ror.org/04e3d6y73" + }, + { + "label": "Musée Curie", + "type": "Child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Architecture, Milieu, Paysage", + "type": "Child", + "id": "https://ror.org/048289s82" + }, + { + "label": "Géographie de l'environnement", + "type": "Child", + "id": "https://ror.org/01p4g5p84" + }, + { + "label": "Geo-Ocean", + "type": "Child", + "id": "https://ror.org/007dbrz84" + }, + { + "label": "Centre d'Études et de Recherches sur le Développement International", + "type": "Child", + "id": "https://ror.org/01hg13988" + }, + { + "label": "Laboratoire d'Acoustique de l'Université du Mans", + "type": "Child", + "id": "https://ror.org/001aevc89" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "Child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Laboratoire de Médiévistique Occidentale de Paris", + "type": "Child", + "id": "https://ror.org/00z0af360" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "Child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Laboratoire d'Ecologie des Hydrosystèmes Naturels et Anthropisés", + "type": "Child", + "id": "https://ror.org/05pny1q12" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Centre de droit comparé du travail et de la sécurité sociale", + "type": "Child", + "id": "https://ror.org/041ctrc20" + }, + { + "label": "Enzyme and Cell Engineering - Molecular Recognition and Biocatalysis", + "type": "Child", + "id": "https://ror.org/001tmq304" + }, + { + "label": "Sciences pour l'Environnement", + "type": "Child", + "id": "https://ror.org/016nwev19" + }, + { + "label": "Laboratoire Morphodynamique Continentale et Côtière", + "type": "Child", + "id": "https://ror.org/05k1a6w82" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "Child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Langues et Civilisations à Tradition Orale", + "type": "Child", + "id": "https://ror.org/025esck76" + }, + { + "label": "Laboratoire de Mathématiques Nicolas Oresme", + "type": "Child", + "id": "https://ror.org/03jm2hc44" + }, + { + "label": "Centre d'études sociologiques et politiques Raymond-Aron", + "type": "Child", + "id": "https://ror.org/04aq4ab28" + }, + { + "label": "Laboratoire Caribéen de Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00srrcb42" + }, + { + "label": "Laboratoire de Physique Théorique et Modélisation", + "type": "Child", + "id": "https://ror.org/05nhcdk38" + }, + { + "label": "Institut des sciences juridique et philosophique de la Sorbonne", + "type": "Child", + "id": "https://ror.org/0041am420" + }, + { + "label": "RIATE - Centre pour l'analyse spatiale et la géovisualisation", + "type": "Child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "France, Amériques, Espagne, Sociétés, Pouvoirs, Acteurs", + "type": "Child", + "id": "https://ror.org/04daj8721" + }, + { + "label": "Laboratoire des Fluides Complexes et leurs Réservoirs", + "type": "Child", + "id": "https://ror.org/03dg47v24" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "Child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Maison des Sciences de l'Homme et de la Société Sud-Est", + "type": "Child", + "id": "https://ror.org/02ygac863" + }, + { + "label": "Maison Asie Pacifique", + "type": "Child", + "id": "https://ror.org/03e2syc87" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "Child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "Center for Mathematical Modeling", + "type": "Child", + "id": "https://ror.org/00wz2vk41" + }, + { + "label": "Service des Avions Français Instrumentés pour la Recherche en Environnement", + "type": "Child", + "id": "https://ror.org/02qdgbw61" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "Child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "Child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Archéologie des Sociétés Méditerranéennes", + "type": "Child", + "id": "https://ror.org/04n9eyw42" + }, + { + "label": "Laboratoire de Microbiologie Fondamentale et Pathogénicité", + "type": "Child", + "id": "https://ror.org/03e4tg734" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Praxiling", + "type": "Child", + "id": "https://ror.org/03ym2w748" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "Child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Centre d'études franco-russe de Moscou", + "type": "Child", + "id": "https://ror.org/00zmdjj30" + }, + { + "label": "Centre d'Études et de Documentation Économiques, Juridiques et sociales", + "type": "Child", + "id": "https://ror.org/008bf9746" + }, + { + "label": "Maison Française d'Oxford", + "type": "Child", + "id": "https://ror.org/022psxk94" + }, + { + "label": "Centre de recherche français à Jérusalem", + "type": "Child", + "id": "https://ror.org/04ahb2147" + }, + { + "label": "Centre d'études Alexandrines", + "type": "Child", + "id": "https://ror.org/02km70587" + }, + { + "label": "Institut français du Proche-Orient", + "type": "Child", + "id": "https://ror.org/02t9nm044" + }, + { + "label": "Institut français d'études sur l'Asie centrale", + "type": "Child", + "id": "https://ror.org/026t9b832" + }, + { + "label": "Lieux, Identités, eSpaces, Activités", + "type": "Child", + "id": "https://ror.org/00nbhg292" + }, + { + "label": "Ecology and Conservation Science for Sustainable Seas", + "type": "Child", + "id": "https://ror.org/021zcv334" + }, + { + "label": "AMURE - Centre de droit et d'économie de la mer", + "type": "Child", + "id": "https://ror.org/00ss0a232" + }, + { + "label": "Maison méditerranéenne des sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/01ejp3f31" + }, + { + "label": "Centre Franco-Égyptien d’Étude des Temples de Karnak", + "type": "Child", + "id": "https://ror.org/0502mw613" + }, + { + "label": "Centre de Recherche sur la Conservation", + "type": "Child", + "id": "https://ror.org/05q3pap39" + }, + { + "label": "Institut d'Histoire du Droit Jean Gaudemet", + "type": "Child", + "id": "https://ror.org/04j9ztm78" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "Child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "Child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Savoirs et Mondes Indiens", + "type": "Child", + "id": "https://ror.org/04gxn9h90" + }, + { + "label": "Laboratoire de Mathématiques de Reims", + "type": "Child", + "id": "https://ror.org/01xkfnd03" + }, + { + "label": "Centre Michel de Boüard", + "type": "Child", + "id": "https://ror.org/03rnz7p05" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "Child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "Child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Sommeil, Addiction et Neuropsychiatrie", + "type": "Child", + "id": "https://ror.org/04k8wt746" + }, + { + "label": "Plateforme d'Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/05r25mc45" + }, + { + "label": "TBM-Core", + "type": "Child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Génomique évolutive, modélisation et santé", + "type": "Child", + "id": "https://ror.org/026ddbz68" + }, + { + "label": "Takuvik Joint International Laboratory", + "type": "Child", + "id": "https://ror.org/04bzgtz06" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Bordeaux Imaging Center", + "type": "Child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "Child", + "id": "https://ror.org/034bena10" + }, + { + "label": "CEPN - Centre d'Economie de l'Université Paris Nord", + "type": "Child", + "id": "https://ror.org/03k32n603" + }, + { + "label": "Chimie, Structures et Propriétés de Biomatériaux et d'Agents Thérapeutiques", + "type": "Child", + "id": "https://ror.org/0343fpq57" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "Child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Laboratoire écologie, évolution, interactions des systèmes amazoniens", + "type": "Child", + "id": "https://ror.org/00gj7r351" + }, + { + "label": "STELLA MARE", + "type": "Child", + "id": "https://ror.org/040r8ry56" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "Child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Bases de données sur la Biodiversité, Ecologie, Environnement et Sociétés", + "type": "Child", + "id": "https://ror.org/034gk7456" + }, + { + "label": "DMEX Centre for X-ray Imaging", + "type": "Child", + "id": "https://ror.org/0213f8g15" + }, + { + "label": "Unité en Sciences Biologiques et Biotechnologies de Nantes", + "type": "Child", + "id": "https://ror.org/05ef4v550" + }, + { + "label": "Matrice Extracellulaire et Dynamique Cellulaire MEDyC", + "type": "Child", + "id": "https://ror.org/017p6sq53" + }, + { + "label": "Institut de Recherche sur la Biologie de l'Insecte UMR 7261", + "type": "Child", + "id": "https://ror.org/04rp2mn26" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "Child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "Laboratoire Ligérien de Linguistique", + "type": "Child", + "id": "https://ror.org/04s6f1186" + }, + { + "label": "Droit International Comparé et Européen", + "type": "Child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Lasers, Plasmas et Procédés Photoniques", + "type": "Child", + "id": "https://ror.org/01qfjp710" + }, + { + "label": "Centre universitaire de recherches sur l'Action Publique et le Politique Épistémologie & Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00rxdng69" + }, + { + "label": "Centre Gilles-Gaston Granger", + "type": "Child", + "id": "https://ror.org/00axatv03" + }, + { + "label": "Irasia Recherche", + "type": "Child", + "id": "https://ror.org/03bcyhr16" + }, + { + "label": "Institut de Recherches et d'Etudes sur les Mondes Arabes et Musulmans", + "type": "Child", + "id": "https://ror.org/037f3ga09" + }, + { + "label": "Laboratoire d'Archéologie Médiévale et Moderne en Méditerranée", + "type": "Child", + "id": "https://ror.org/05tb4mb78" + }, + { + "label": "Institut d'ethnologie méditerranéenne européenne et comparative", + "type": "Child", + "id": "https://ror.org/050gdsq06" + }, + { + "label": "Temps, espaces, langages, Europe méridionale, Méditerranée", + "type": "Child", + "id": "https://ror.org/010bhn875" + }, + { + "label": "Matériaux Divisés, Interfaces, Réactivité, Electrochimie", + "type": "Child", + "id": "https://ror.org/00m587853" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Macromoléculaires", + "type": "Child", + "id": "https://ror.org/02hwc1z56" + }, + { + "label": "Centre d'études supérieures de civilisation médiévale", + "type": "Child", + "id": "https://ror.org/005hw9085" + }, + { + "label": "Laboratoire de Mathématiques et Applications", + "type": "Child", + "id": "https://ror.org/02p2rk609" + }, + { + "label": "Laboratoire Interdisciplinaire de Recherches \"Sociétés, Sensibilités, Soin\"", + "type": "Child", + "id": "https://ror.org/01rb31945" + }, + { + "label": "Centre d’études en sciences sociales du religieux", + "type": "Child", + "id": "https://ror.org/01kysxr05" + }, + { + "label": "Trajectoires. De la sédentarisation à l’État", + "type": "Child", + "id": "https://ror.org/03wdx6c48" + }, + { + "label": "Structure et Dynamique des Langues", + "type": "Child", + "id": "https://ror.org/019df2r84" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "Child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Laboratoire Information Génomique et Structurale", + "type": "Child", + "id": "https://ror.org/05v0fms67" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Chimie Biologique pour le Vivant", + "type": "Child", + "id": "https://ror.org/03cjyj977" + }, + { + "label": "Biologie Moléculaire Structurale et Processus Infectieux", + "type": "Child", + "id": "https://ror.org/009b91528" + }, + { + "label": "Centre de Recherche d'Albi en génie des Procédés, des SOlides Divisés, de l'Énergie et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03cxnrt47" + }, + { + "label": "Acquisition et Analyse de Données pour l'Histoire naturelle", + "type": "Child", + "id": "https://ror.org/05qhnf349" + }, + { + "label": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "Child", + "id": "https://ror.org/00t7axd27" + }, + { + "label": "Chronobiotron", + "type": "Child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Observatoire pour la Conservation de la Mégafaune Marine", + "type": "Child", + "id": "https://ror.org/04wbg2z51" + }, + { + "label": "Architecture Histoire Technique Territoire Patrimoine", + "type": "Child", + "id": "https://ror.org/05j8sgr10" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "Child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Maison des Sciences de l'Homme Val de Loire", + "type": "Child", + "id": "https://ror.org/03v4gsj38" + }, + { + "label": "GeoRessources", + "type": "Child", + "id": "https://ror.org/04mq2px33" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Observatoire Terre et environnement de Lorraine", + "type": "Child", + "id": "https://ror.org/02cyw3861" + }, + { + "label": "Huma-Num", + "type": "Child", + "id": "https://ror.org/04ces3204" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "Child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Laboratoire de Mathématiques et Modélisation d'Évry", + "type": "Child", + "id": "https://ror.org/03jca6281" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie Biologie Innovation", + "type": "Child", + "id": "https://ror.org/04bgzse17" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "Child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "Child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "Child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "Child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "CALMIP", + "type": "Child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Plateforme de chimie biologique intégrative de Strasbourg", + "type": "Child", + "id": "https://ror.org/052pqt102" + }, + { + "label": "LINK - Laboratory for Innovative Key Materials and Structures", + "type": "Child", + "id": "https://ror.org/03qt6f440" + }, + { + "label": "OpenEdition Center", + "type": "Child", + "id": "https://ror.org/02aja8v82" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Laboratoire de Chimie-Physique Macromoléculaire", + "type": "Child", + "id": "https://ror.org/0371yc337" + }, + { + "label": "Centre pour les humanités numériques et l'histoire de la justice", + "type": "Child", + "id": "https://ror.org/02yvha224" + }, + { + "label": "AlgoSolis", + "type": "Child", + "id": "https://ror.org/05481me13" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "Child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Passages", + "type": "Child", + "id": "https://ror.org/00s40r567" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "Child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "Child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Climat, Environnement, Couplages et Incertitudes", + "type": "Child", + "id": "https://ror.org/05t8ct211" + }, + { + "label": "Laboratoire de Linguistique de Nantes", + "type": "Child", + "id": "https://ror.org/0009eec40" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "Child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "Child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "Child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "Child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "ScanMAT", + "type": "Child", + "id": "https://ror.org/04fsxy317" + }, + { + "label": "PatriNat", + "type": "Child", + "id": "https://ror.org/037eda396" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "Child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Institut Denis Poisson", + "type": "Child", + "id": "https://ror.org/05djhd259" + }, + { + "label": "Temps, Mondes, Sociétés", + "type": "Child", + "id": "https://ror.org/01nhp3z94" + }, + { + "label": "Laboratoire Lorrain de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/020azc393" + }, + { + "label": "Laboratoire de Physique et Chimie Théoriques", + "type": "Child", + "id": "https://ror.org/02atkd403" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Vision pour la Robotique", + "type": "Child", + "id": "https://ror.org/02v6phz91" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Epigenetics, Data, Politics", + "type": "Child", + "id": "https://ror.org/00rg8bd79" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Centre Neurosciences intégratives et Cognition", + "type": "Child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "Child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "Child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire interdisciplinaire d’études sur les réflexivités - Fonds Yan Thomas", + "type": "Child", + "id": "https://ror.org/046dap961" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "Child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Light, nanomaterials, nanotechnologies", + "type": "Child", + "id": "https://ror.org/01waxag60" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "Child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Centre de recherche sur le monde iranien", + "type": "Child", + "id": "https://ror.org/0302qeq32" + }, + { + "label": "RESTORE", + "type": "Child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "Child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "Child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "Child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Transitions Energétiques et Environnementales", + "type": "Child", + "id": "https://ror.org/04cms1b08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "Child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "Child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Bordeaux Sciences Économiques", + "type": "Child", + "id": "https://ror.org/014vz2d20" + }, + { + "label": "Microscopies, imageries et ressources analytiques en région Centre-Val de Loire", + "type": "Child", + "id": "https://ror.org/050x42563" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "Child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Catalyse, Polymérisation, Procédés et Matériaux", + "type": "Child", + "id": "https://ror.org/02f6tst70" + }, + { + "label": "Fédération de recherche Matière et Interactions", + "type": "Child", + "id": "https://ror.org/02wq1s711" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "Child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "Child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "Child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "Child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "Child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "Child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "Child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "Child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "Child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "Child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "Child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "Child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Archéologie, Terre, Histoire, Sociétés", + "type": "Child", + "id": "https://ror.org/011hdpx94" + }, + { + "label": "Institut de Chimie Moléculaire de l'Université de Bourgogne", + "type": "Child", + "id": "https://ror.org/011ygpb73" + }, + { + "label": "Institut Chevreul", + "type": "Child", + "id": "https://ror.org/048k52v18" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "Child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "Laboratoire Ondes et Milieux Complexes", + "type": "Child", + "id": "https://ror.org/02sb3b652" + }, + { + "label": "Centre de Nanosciences et de Nanotechnologies", + "type": "Child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Département de mathématiques et applications", + "type": "Child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "Child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "Child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Intégrité du génome, ARN et cancer", + "type": "Child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "Child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "Child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "Child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "Child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "Child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut de Biologie Intégrative de la Cellule", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "Child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "Child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "Child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "Child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratoire de Physique Théorique et Modèles Statistiques", + "type": "Child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "Child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "Child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "Child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratoire Leprince-Ringuet", + "type": "Child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "Laboratoire de Recherche sur la Croissance Cellulaire, la Réparation et la Régénération Tissulaires", + "type": "Child", + "id": "https://ror.org/041dsyz88" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Laboratoire interdisciplinaire en études culturelles", + "type": "Child", + "id": "https://ror.org/03820wq39" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "Child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Centre de Recherche en Économie et Management", + "type": "Child", + "id": "https://ror.org/0047rmf80" + }, + { + "label": "Institut de Physique de Rennes", + "type": "Child", + "id": "https://ror.org/022b0h879" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "Child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Pacte", + "type": "Child", + "id": "https://ror.org/026j45x50" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "Child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Institut Carnot PolyNat", + "type": "Child", + "id": "https://ror.org/047p7mf25" + }, + { + "label": "Centre de Recherche et de Documentation sur l'Océanie (CREDO)", + "type": "Child", + "id": "https://ror.org/00jj62164" + }, + { + "label": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "type": "Child", + "id": "https://ror.org/005yfhm28" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Laboratoire Interdisciplinaire de Physique", + "type": "Child", + "id": "https://ror.org/023n9q531" + }, + { + "label": "Centre d'études sud-asiatiques et himalayennes", + "type": "Child", + "id": "https://ror.org/039bex249" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "Child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Techniques, Territoires et Sociétés", + "type": "Child", + "id": "https://ror.org/05fc1hn07" + }, + { + "label": "Laboratoire Navier", + "type": "Child", + "id": "https://ror.org/029hkd614" + }, + { + "label": "Imagerie et Stratégies Thérapeutiques pour les Cancers et Tissus cérébraux", + "type": "Child", + "id": "https://ror.org/04b9vs620" + }, + { + "label": "Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scène", + "type": "Child", + "id": "https://ror.org/055q9jt53" + }, + { + "label": "Laboratory of Pathogens and Host Immunity", + "type": "Child", + "id": "https://ror.org/00rt27171" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Child", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Maison des sciences de l'homme Lorraine", + "type": "Child", + "id": "https://ror.org/01petg633" + }, + { + "label": "Institut de Biologie Moléculaire et Cellulaire", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Centre d'Anthropobiologie et de Génomique de Toulouse", + "type": "Child", + "id": "https://ror.org/045p8nc06" + }, + { + "label": "UMR Géographie-cités", + "type": "Related", + "id": "https://ror.org/05yqfzf35" + }, + { + "label": "Campus Condorcet", + "type": "Related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "Institut Montpelliérain Alexander Grothendieck", + "type": "Related", + "id": "https://ror.org/044kxby82" + }, + { + "label": "Haute Technologie Animale Grenobloise", + "type": "Child", + "id": "https://ror.org/03vyv3y87" + }, + { + "label": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "type": "Child", + "id": "https://ror.org/0535cbn94" + }, + { + "label": "Institut Universitaire Européen de la Mer", + "type": "Child", + "id": "https://ror.org/04pfr1b11" + }, + { + "label": "Indo-French Centre for Applied Mathematics", + "type": "Child", + "id": "https://ror.org/05rnj8444" + }, + { + "label": "Institut d'Études Scientifiques de Cargèse", + "type": "Child", + "id": "https://ror.org/044mrv955" + }, + { + "label": "Groupe de Recherche en Management", + "type": "Child", + "id": "https://ror.org/023cs7p87" + }, + { + "label": "Centre de Radiofréquences, Optique et Micro-nanoélectronique des Alpes", + "type": "Child", + "id": "https://ror.org/050rs7291" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CNRS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Centre_national_de_la_recherche_scientifique", + "labels": [ + { + "label": "French National Centre for Scientific Research", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.4444.0", + "preferred": "grid.4444.0" + }, + "ISNI": { + "all": [ + "0000 0001 2259 7504" + ], + "preferred": "0000 0001 2259 7504" + }, + "Wikidata": { + "all": [ + "Q280413", + "Q39411466" + ], + "preferred": "Q280413" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02fhmtn03.json b/v1.49/v1/02fhmtn03.json new file mode 100644 index 000000000..f5824fd62 --- /dev/null +++ b/v1.49/v1/02fhmtn03.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02fhmtn03", + "name": "National Fire Agency", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.59245, + "lng": 127.29223, + "state": null, + "state_code": null, + "city": "Sejong", + "geonames_city": { + "id": 11523293, + "city": "Sejong", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nfa.go.kr" + ], + "aliases": [ + "National Fire Agency of the Republic of Korea" + ], + "acronyms": [ + "NFA", + "소방청" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Fire_Agency_%28South_Korea%29", + "labels": [ + { + "label": "대한민국 소방청", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6474 253X" + ], + "preferred": "0000 0004 6474 253X" + }, + "Wikidata": { + "all": [ + "Q33625595" + ], + "preferred": "Q33625595" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02fke9256.json b/v1.49/v1/02fke9256.json new file mode 100644 index 000000000..f8c6977a9 --- /dev/null +++ b/v1.49/v1/02fke9256.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02fke9256", + "name": "Laboratoire de Mécanique et Génie Civil", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lmgc.univ-montp2.fr/?lang=fr" + ], + "aliases": [], + "acronyms": [ + "LMGC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503312.6", + "preferred": "grid.503312.6" + }, + "ISNI": { + "all": [ + "0000 0004 0609 831X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51782347" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02ftce284.json b/v1.49/v1/02ftce284.json new file mode 100644 index 000000000..fa33819f4 --- /dev/null +++ b/v1.49/v1/02ftce284.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02ftce284", + "name": "Laboratoire Charles Coulomb", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.coulomb.univ-montp2.fr/?lang=en" + ], + "aliases": [], + "acronyms": [ + "L2C" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462669.9", + "preferred": "grid.462669.9" + }, + "ISNI": { + "all": [ + "0000 0004 4687 2402" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02fw8mx86.json b/v1.49/v1/02fw8mx86.json new file mode 100644 index 000000000..38c019211 --- /dev/null +++ b/v1.49/v1/02fw8mx86.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02fw8mx86", + "name": "Textron Systems (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1923, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Textron (United States)", + "type": "Parent", + "id": "https://ror.org/04h6azc67" + } + ], + "addresses": [ + { + "lat": 50.73438, + "lng": 7.09549, + "state": null, + "state_code": null, + "city": "Bonn", + "geonames_city": { + "id": 2946447, + "city": "Bonn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.textronsystems.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Textron#Kautex_Textron", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.480198.c", + "preferred": "grid.480198.c" + }, + "Wikidata": { + "all": [ + "Q30272327" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02g6y2720.json b/v1.49/v1/02g6y2720.json new file mode 100644 index 000000000..d71c5ce07 --- /dev/null +++ b/v1.49/v1/02g6y2720.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02g6y2720", + "name": "Unité de Glycobiologie Structurale et Fonctionnelle", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ugsf-umr-glycobiologie.univ-lille1.fr/" + ], + "aliases": [], + "acronyms": [ + "UGSF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464109.e", + "preferred": "grid.464109.e" + }, + "ISNI": { + "all": [ + "0000 0004 0638 7509" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262465" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02ggnyt49.json b/v1.49/v1/02ggnyt49.json new file mode 100644 index 000000000..d8ce6e588 --- /dev/null +++ b/v1.49/v1/02ggnyt49.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/02ggnyt49", + "name": "Ministère de la Justice", + "email_address": null, + "ip_addresses": [], + "established": 1790, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales", + "type": "Child", + "id": "https://ror.org/01qm1tk92" + }, + { + "label": "Centre pour les humanités numériques et l'histoire de la justice", + "type": "Child", + "id": "https://ror.org/02yvha224" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.justice.gouv.fr/multilinguisme-12198/english-12200/justice-in-france-22126.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Justice_(France)", + "labels": [ + { + "label": "Ministry of Justice", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.494228.1", + "preferred": "grid.494228.1" + }, + "ISNI": { + "all": [ + "0000 0004 0639 9788" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q509816" + ], + "preferred": "Q509816" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02ggzyd20.json b/v1.49/v1/02ggzyd20.json new file mode 100644 index 000000000..44718e1ab --- /dev/null +++ b/v1.49/v1/02ggzyd20.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/02ggzyd20", + "name": "Direction de la Recherche Technologique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "CEA LETI", + "type": "Child", + "id": "https://ror.org/04mf0wv34" + }, + { + "label": "CEA LIST", + "type": "Child", + "id": "https://ror.org/000dbcc61" + }, + { + "label": "CEA LITEN", + "type": "Child", + "id": "https://ror.org/01mbz8562" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.drt-cea.com/accueil.htm" + ], + "aliases": [ + "CEA Tech" + ], + "acronyms": [ + "DRT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457262.0", + "preferred": "grid.457262.0" + }, + "ISNI": { + "all": [ + "0000 0004 7473 7929" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30299418" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02gpbfd77.json b/v1.49/v1/02gpbfd77.json new file mode 100644 index 000000000..e8d91187e --- /dev/null +++ b/v1.49/v1/02gpbfd77.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02gpbfd77", + "name": "Wyoming Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 41.31137, + "lng": -105.5911, + "state": null, + "state_code": null, + "city": "Laramie", + "geonames_city": { + "id": 5830062, + "city": "Laramie", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.thinkwy.org/" + ], + "aliases": [], + "acronyms": [ + "WHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447663.4", + "preferred": "grid.447663.4" + }, + "ISNI": { + "all": [ + "0000 0004 5907 0580" + ], + "preferred": "0000 0004 5907 0580" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02gx2bb72.json b/v1.49/v1/02gx2bb72.json new file mode 100644 index 000000000..7960ecd2f --- /dev/null +++ b/v1.49/v1/02gx2bb72.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02gx2bb72", + "name": "Société des Auteurs et Compositeurs Dramatiques", + "email_address": null, + "ip_addresses": [], + "established": 1829, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sacd.fr/A-society-for-and-by-authors.750.0.html" + ], + "aliases": [], + "acronyms": [ + "SACD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Soci%C3%A9t%C3%A9_des_Auteurs_et_Compositeurs_Dramatiques", + "labels": [ + { + "label": "Society of Dramatic Authors and Composers", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.437687.9", + "preferred": "grid.437687.9" + }, + "ISNI": { + "all": [ + "0000 0001 2190 4189" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02hewtj70.json b/v1.49/v1/02hewtj70.json new file mode 100644 index 000000000..98fc87ba4 --- /dev/null +++ b/v1.49/v1/02hewtj70.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02hewtj70", + "name": "South Dakota Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 44.31136, + "lng": -96.79839, + "state": null, + "state_code": null, + "city": "Brookings", + "geonames_city": { + "id": 5226534, + "city": "Brookings", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sdhumanities.org/" + ], + "aliases": [], + "acronyms": [ + "SDHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447591.a", + "preferred": "grid.447591.a" + }, + "ISNI": { + "all": [ + "0000 0000 8821 023X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02hkbys70.json b/v1.49/v1/02hkbys70.json new file mode 100644 index 000000000..27dcf7e57 --- /dev/null +++ b/v1.49/v1/02hkbys70.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02hkbys70", + "name": "Lille University Management", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lumen.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "LUMEN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02hp31992.json b/v1.49/v1/02hp31992.json new file mode 100644 index 000000000..9472c23bc --- /dev/null +++ b/v1.49/v1/02hp31992.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02hp31992", + "name": "Empenn", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inria.fr/fr/empenn" + ], + "aliases": [], + "acronyms": [ + "VISAGES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783514" + ], + "preferred": "Q51783514" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02jjxqt79.json b/v1.49/v1/02jjxqt79.json new file mode 100644 index 000000000..3a51b342e --- /dev/null +++ b/v1.49/v1/02jjxqt79.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02jjxqt79", + "name": "Idaho Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 43.6135, + "lng": -116.20345, + "state": null, + "state_code": null, + "city": "Boise", + "geonames_city": { + "id": 5586437, + "city": "Boise", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.idahohumanities.org/" + ], + "aliases": [], + "acronyms": [ + "IHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446961.8", + "preferred": "grid.446961.8" + }, + "ISNI": { + "all": [ + "0000 0000 8535 9725" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02jskfj56.json b/v1.49/v1/02jskfj56.json new file mode 100644 index 000000000..019f9c1de --- /dev/null +++ b/v1.49/v1/02jskfj56.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02jskfj56", + "name": "Sekolah Tinggi Ilmu Ekonomi Gentiaras", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -5.42917, + "lng": 105.26111, + "state": null, + "state_code": null, + "city": "Bandar Lampung", + "geonames_city": { + "id": 1624917, + "city": "Bandar Lampung", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://stie.gentiaras.ac.id" + ], + "aliases": [ + "STIE Gentiaras" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109913575" + ], + "preferred": "Q109913575" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02k44p231.json b/v1.49/v1/02k44p231.json new file mode 100644 index 000000000..590afd062 --- /dev/null +++ b/v1.49/v1/02k44p231.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02k44p231", + "name": "Fujian Chuanzheng Communications College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 26.06139, + "lng": 119.30611, + "state": null, + "state_code": null, + "city": "Fuzhou", + "geonames_city": { + "id": 1810821, + "city": "Fuzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fjcpc.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E7%A6%8F%E5%BB%BA%E8%88%B9%E6%94%BF%E4%BA%A4%E9%80%9A%E8%81%8C%E4%B8%9A%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "福建船政交通职业学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6514 1592" + ], + "preferred": "0000 0004 6514 1592" + }, + "Wikidata": { + "all": [ + "Q55697553" + ], + "preferred": "Q55697553" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02k4h0334.json b/v1.49/v1/02k4h0334.json new file mode 100644 index 000000000..efc2a3fe8 --- /dev/null +++ b/v1.49/v1/02k4h0334.json @@ -0,0 +1,153 @@ +{ + "id": "https://ror.org/02k4h0334", + "name": "NOAA National Ocean Service", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "NOAA National Geodetic Survey", + "type": "Child", + "id": "https://ror.org/02f762h70" + }, + { + "label": "NOAA Office for Coastal Management", + "type": "Child", + "id": "https://ror.org/05v14bq57" + }, + { + "label": "NOAA Office of National Marine Sanctuaries", + "type": "Child", + "id": "https://ror.org/04bgwn153" + }, + { + "label": "NOAA Office of Response and Restoration", + "type": "Child", + "id": "https://ror.org/03g5tqa50" + }, + { + "label": "NOAA Office of Coast Survey", + "type": "Child", + "id": "https://ror.org/05evek152" + }, + { + "label": "NOAA Center for Operational Oceanographic Products & Services", + "type": "Child", + "id": "https://ror.org/05vcng590" + }, + { + "label": "NOAA Integrated Ocean Observing System", + "type": "Child", + "id": "https://ror.org/01yvark48" + }, + { + "label": "National Oceanic and Atmospheric Administration", + "type": "Parent", + "id": "https://ror.org/02z5nhe81" + }, + { + "label": "NOAA National Centers for Coastal Ocean Science", + "type": "Child", + "id": "https://ror.org/05ba43f71" + }, + { + "label": "NOAA RESTORE Science Program", + "type": "Child", + "id": "https://ror.org/0042xzm63" + } + ], + "addresses": [ + { + "lat": 38.99067, + "lng": -77.02609, + "state": null, + "state_code": null, + "city": "Silver Spring", + "geonames_city": { + "id": 4369596, + "city": "Silver Spring", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://oceanservice.noaa.gov/" + ], + "aliases": [ + "NOAA's National Ocean Service", + "NOAA's Ocean Service", + "National Ocean Service", + "National Ocean Survey", + "National Oceanic and Atmospheric Administration National Ocean Survey", + "U.S. National Ocean Service", + "U.S. National Ocean Survey", + "U.S. National Oceanic and Atmospheric Administration National Ocean Service", + "USA National Ocean Service", + "United States National Ocean Service", + "United States National Ocean Survey", + "United States National Oceanic and Atmospheric Administration National Ocean Service" + ], + "acronyms": [ + "NOAA NOS", + "NOS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Ocean_Service", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.423022.5", + "preferred": "grid.423022.5" + }, + "ISNI": { + "all": [ + "0000 0004 0625 6154" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q14692277" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02k8f5n40.json b/v1.49/v1/02k8f5n40.json new file mode 100644 index 000000000..4a5bad03f --- /dev/null +++ b/v1.49/v1/02k8f5n40.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/02k8f5n40", + "name": "Laboratoire Cognitions Humaine et Artificielle", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Vincennes à Saint-Denis", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "Université Paris-Est Créteil", + "type": "Parent", + "id": "https://ror.org/05ggc9x40" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + }, + { + "label": "CY Cergy Paris Université", + "type": "Parent", + "id": "https://ror.org/043htjv09" + } + ], + "addresses": [ + { + "lat": 48.93564, + "lng": 2.35387, + "state": null, + "state_code": null, + "city": "Saint-Denis", + "geonames_city": { + "id": 2980916, + "city": "Saint-Denis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://laboratoire-chart.fr" + ], + "aliases": [ + "Laboratoire CHArt" + ], + "acronyms": [ + "CHArt" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503126.3", + "preferred": "grid.503126.3" + }, + "ISNI": { + "all": [ + "0000 0004 0495 272X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51782494" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02kbmgc12.json b/v1.49/v1/02kbmgc12.json new file mode 100644 index 000000000..8b08a94b3 --- /dev/null +++ b/v1.49/v1/02kbmgc12.json @@ -0,0 +1,215 @@ +{ + "id": "https://ror.org/02kbmgc12", + "name": "AgroParisTech", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Biologie et Gestion des Risques en Agriculture", + "type": "Child", + "id": "https://ror.org/049q30t56" + }, + { + "label": "Ecologie des Forêts de Guyane", + "type": "Child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Écologie Fonctionnelle et Écotoxicologie des Agroécosystèmes", + "type": "Child", + "id": "https://ror.org/01z6yh944" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Génétique Animale et Biologie Intégrative", + "type": "Child", + "id": "https://ror.org/03rkgeb39" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Institut Jean-Pierre Bourgin", + "type": "Child", + "id": "https://ror.org/01wqd6v19" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Institut Micalis", + "type": "Child", + "id": "https://ror.org/0471cyx86" + }, + { + "label": "Laboratorie de Physiologie de la Nutrition et du Comportement Alimentaire", + "type": "Child", + "id": "https://ror.org/043f5vc59" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Silva", + "type": "Child", + "id": "https://ror.org/01d5v2p67" + }, + { + "label": "UMR Territoires", + "type": "Child", + "id": "https://ror.org/026tc4g97" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "Child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "Child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "SADAPT Science Action Développement - Activités Produits Territoires", + "type": "Child", + "id": "https://ror.org/01cmdgj85" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/00780az30" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "Child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "ParisTech", + "type": "Parent", + "id": "https://ror.org/05c2qg481" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Association française de zootechnie", + "type": "Related", + "id": "https://ror.org/05rxf9p36" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.agroparistech.fr" + ], + "aliases": [ + "Agro ParisTech", + "Paris Institute of Technology for Life, Food and Environmental Sciences" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Agro_ParisTech", + "labels": [ + { + "label": "Institut des sciences et industries du vivant et de l'environnement", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.417885.7", + "preferred": "grid.417885.7" + }, + "ISNI": { + "all": [ + "0000 0001 2185 8223" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1637105" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02ke25a78.json b/v1.49/v1/02ke25a78.json new file mode 100644 index 000000000..53e55f7d6 --- /dev/null +++ b/v1.49/v1/02ke25a78.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02ke25a78", + "name": "Fundación Puertorriqueña de las Humanidades", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 18.46633, + "lng": -66.10572, + "state": null, + "state_code": null, + "city": "San Juan", + "geonames_city": { + "id": 4568127, + "city": "San Juan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.fphpr.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Puerto Rico", + "country_code": "PR" + }, + "external_ids": { + "GRID": { + "all": "grid.450867.8", + "preferred": "grid.450867.8" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02kj5x347.json b/v1.49/v1/02kj5x347.json new file mode 100644 index 000000000..c580b1682 --- /dev/null +++ b/v1.49/v1/02kj5x347.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/02kj5x347", + "name": "Sir Salimullah Medical College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Mitford Hospital, Dhaka", + "type": "Related", + "id": "https://ror.org/03s61s823" + } + ], + "addresses": [ + { + "lat": 23.7104, + "lng": 90.40744, + "state": null, + "state_code": null, + "city": "Dhaka", + "geonames_city": { + "id": 1185241, + "city": "Dhaka", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ssmcmh.gov.bd" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Sir_Salimullah_Medical_College", + "labels": [], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q7528929" + ], + "preferred": "Q7528929" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02kpeqv85.json b/v1.49/v1/02kpeqv85.json new file mode 100644 index 000000000..267f1098b --- /dev/null +++ b/v1.49/v1/02kpeqv85.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/02kpeqv85", + "name": "Kyoto University", + "email_address": null, + "ip_addresses": [], + "established": 1897, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Kyoto University Institute for Chemical Research", + "type": "Child", + "id": "https://ror.org/0349bbg69" + }, + { + "label": "Yukawa Institute for Theoretical Physics", + "type": "Child", + "id": "https://ror.org/0589kgd85" + }, + { + "label": "Kyoto University Hospital", + "type": "Related", + "id": "https://ror.org/04k6gr834" + }, + { + "label": "Research Institute for Sustainable Humanosphere", + "type": "Child", + "id": "https://ror.org/05dfqh778" + } + ], + "addresses": [ + { + "lat": 35.02107, + "lng": 135.75385, + "state": null, + "state_code": null, + "city": "Kyoto", + "geonames_city": { + "id": 1857910, + "city": "Kyoto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.kyoto-u.ac.jp/en" + ], + "aliases": [ + "Kyōto daigaku" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Kyoto_University", + "labels": [ + { + "label": "京都大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.258799.8", + "preferred": "grid.258799.8" + }, + "ISNI": { + "all": [ + "0000 0004 0372 2033" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q336264" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02kry3y94.json b/v1.49/v1/02kry3y94.json new file mode 100644 index 000000000..d5aefb46f --- /dev/null +++ b/v1.49/v1/02kry3y94.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02kry3y94", + "name": "Tecnológico de Estudios Superiores de Jocotitlán", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.70864, + "lng": -99.80187, + "state": null, + "state_code": null, + "city": "Jocotitlán", + "geonames_city": { + "id": 8583681, + "city": "Jocotitlán", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tesjo.edomex.gob.mx" + ], + "aliases": [ + "TESJo" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02ks53214.json b/v1.49/v1/02ks53214.json new file mode 100644 index 000000000..296b8caaf --- /dev/null +++ b/v1.49/v1/02ks53214.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/02ks53214", + "name": "Max Planck Institute for Chemical Ecology", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Society", + "type": "Parent", + "id": "https://ror.org/01hhn8329" + } + ], + "addresses": [ + { + "lat": 50.92878, + "lng": 11.5899, + "state": null, + "state_code": null, + "city": "Jena", + "geonames_city": { + "id": 2895044, + "city": "Jena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ice.mpg.de" + ], + "aliases": [ + "Max-Planck-Institut für chemische Ökologie" + ], + "acronyms": [ + "MPI-CE", + "MPI-COE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Max_Planck_Institute_for_Chemical_Ecology", + "labels": [ + { + "label": "Max-Planck-Institut für Chemische Ökologie", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.418160.a", + "preferred": "grid.418160.a" + }, + "ISNI": { + "all": [ + "0000 0004 0491 7131" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q700245" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02kxx1z36.json b/v1.49/v1/02kxx1z36.json new file mode 100644 index 000000000..2da9db917 --- /dev/null +++ b/v1.49/v1/02kxx1z36.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02kxx1z36", + "name": "Korea Technology and Information Promotion Agency for SMEs", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of SMEs and Startups", + "type": "Parent", + "id": "https://ror.org/03sws5s65" + } + ], + "addresses": [ + { + "lat": 37.566, + "lng": 126.9784, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835848, + "city": "Seoul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tipa.or.kr" + ], + "aliases": [], + "acronyms": [ + "TIPA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "중소기업기술정보진흥원", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q16189718" + ], + "preferred": "Q16189718" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02kzqn938.json b/v1.49/v1/02kzqn938.json new file mode 100644 index 000000000..2fdc99af5 --- /dev/null +++ b/v1.49/v1/02kzqn938.json @@ -0,0 +1,507 @@ +{ + "id": "https://ror.org/02kzqn938", + "name": "Université de Lille", + "email_address": null, + "ip_addresses": [], + "established": 1559, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Infection and Immunity of Lille", + "type": "Child", + "id": "https://ror.org/00dyt5s15" + }, + { + "label": "Centre Lillois d'Etudes et de Recherches Sociologiques et Economiques", + "type": "Child", + "id": "https://ror.org/00mghmd60" + }, + { + "label": "Centre d'Etudes en Civilisations, Langues et Littératures Etrangères", + "type": "Child", + "id": "https://ror.org/03629my43" + }, + { + "label": "Institut Charles Viollette", + "type": "Child", + "id": "https://ror.org/0018c4h73" + }, + { + "label": "Institut de Biologie de Lille", + "type": "Child", + "id": "https://ror.org/05gd4yq49" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de Recherches Historiques du Septentrion", + "type": "Child", + "id": "https://ror.org/021ddkf20" + }, + { + "label": "Institut d'électronique de microélectronique et de nanotechnologie", + "type": "Child", + "id": "https://ror.org/02q4res37" + }, + { + "label": "Integrated Genomics and Metabolic Diseases Modeling", + "type": "Child", + "id": "https://ror.org/0300mzg60" + }, + { + "label": "Laboratoire Génie et Matériaux Textiles", + "type": "Child", + "id": "https://ror.org/038sy2k93" + }, + { + "label": "Laboratoire Paul Painlevé", + "type": "Child", + "id": "https://ror.org/043n4fm24" + }, + { + "label": "Laboratoire d'Automatique, Génie Informatique et Signal", + "type": "Child", + "id": "https://ror.org/04wez4p43" + }, + { + "label": "Laboratoire d'Optique Atmosphérique", + "type": "Child", + "id": "https://ror.org/02mdnkg28" + }, + { + "label": "Laboratoire d'Électrotechnique et d'Électronique de Puissance de Lille", + "type": "Child", + "id": "https://ror.org/0186z1m53" + }, + { + "label": "Laboratoire de Génétique & Evolution des Populations Végétales", + "type": "Child", + "id": "https://ror.org/01h0a3k64" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "Child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Laboratoire de Physique des Lasers, Atomes et Molécules", + "type": "Child", + "id": "https://ror.org/04e89s906" + }, + { + "label": "Laboratoire de Spectroscopie pour les Interactions, la Réactivité et l'Environnement", + "type": "Child", + "id": "https://ror.org/01tv2ca73" + }, + { + "label": "Laboratoire d’Océanologie et de Géosciences", + "type": "Child", + "id": "https://ror.org/05m14rs93" + }, + { + "label": "Unité de catalyse et de chimie du solide de Lille", + "type": "Child", + "id": "https://ror.org/04vrqzz54" + }, + { + "label": "Centre d'Etudes et de Recherches Administratives, Politiques et Sociales", + "type": "Child", + "id": "https://ror.org/03n91q085" + }, + { + "label": "Lille Inflammation Research International Center", + "type": "Child", + "id": "https://ror.org/03c3m6m66" + }, + { + "label": "Lille Économie Management", + "type": "Child", + "id": "https://ror.org/05bz47575" + }, + { + "label": "Maison Européenne des Sciences de l'Homme et de la Société", + "type": "Child", + "id": "https://ror.org/00m090414" + }, + { + "label": "Miniaturisation pour la Synthèse, l'Analyse et la Protéomique", + "type": "Child", + "id": "https://ror.org/02s4dmd79" + }, + { + "label": "PhysicoChimie des Processus de Combustion et de l'Atmosphère", + "type": "Child", + "id": "https://ror.org/03k9wer31" + }, + { + "label": "Protéomique, Réponse Inflammatoire et Spectrométrie de Masse", + "type": "Child", + "id": "https://ror.org/05dm3m993" + }, + { + "label": "Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète", + "type": "Child", + "id": "https://ror.org/05xanhp90" + }, + { + "label": "Savoirs, Textes, Langage", + "type": "Child", + "id": "https://ror.org/003fs1j49" + }, + { + "label": "Sciences Cognitives et Sciences Affectives", + "type": "Child", + "id": "https://ror.org/05rqwc876" + }, + { + "label": "Territoires, Villes, Environnement & Société", + "type": "Child", + "id": "https://ror.org/04kwqat20" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "Child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "Child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "Unité de Recherche Pluridisciplinaire Sport, Santé, Société", + "type": "Child", + "id": "https://ror.org/03eq8fa86" + }, + { + "label": "Unité Évolution, Écologie et Paléontologie", + "type": "Child", + "id": "https://ror.org/04y91dy23" + }, + { + "label": "Systèmes avancés de délivrance de principes actifs", + "type": "Child", + "id": "https://ror.org/053ppfe96" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "Child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Histoire Judiciaire", + "type": "Child", + "id": "https://ror.org/00g32ep81" + }, + { + "label": "Centre d'Investigation Clinique - Innovation Technologique de Lille", + "type": "Child", + "id": "https://ror.org/04p4jgt68" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "Groupe de Recherche sur les formes Injectables et les Technologies Associées", + "type": "Child", + "id": "https://ror.org/02dvx0516" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "Child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "AERIS/ICARE Data and Services Center", + "type": "Child", + "id": "https://ror.org/013z99a51" + }, + { + "label": "IMPact de l'Environnement Chimique sur la Santé humaine", + "type": "Child", + "id": "https://ror.org/0455vgw31" + }, + { + "label": "Institute for Translational Research in Inflammation", + "type": "Child", + "id": "https://ror.org/03qy9z186" + }, + { + "label": "Institut de Recherche sur les Composants logiciels et matériels pour l'Information et la Communication Avancée", + "type": "Child", + "id": "https://ror.org/010nk4c68" + }, + { + "label": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "type": "Child", + "id": "https://ror.org/04f5rw142" + }, + { + "label": "Laboratoire de Génie Civil et Géo Environnement", + "type": "Child", + "id": "https://ror.org/00fh1dw28" + }, + { + "label": "Lille Neurosciences & Cognition", + "type": "Child", + "id": "https://ror.org/04p94ax69" + }, + { + "label": "Médicaments et Molécules pour Agir sur les Systèmes Vivants", + "type": "Child", + "id": "https://ror.org/0086epd30" + }, + { + "label": "Adiposité Médullaire et Os", + "type": "Child", + "id": "https://ror.org/00hz02a80" + }, + { + "label": "Evaluation des technologies de santé et des pratiques médicales", + "type": "Child", + "id": "https://ror.org/01qygwc68" + }, + { + "label": "OncoThAI", + "type": "Child", + "id": "https://ror.org/04q29nn62" + }, + { + "label": "Laboratoire de Physiologie Cellulaire", + "type": "Child", + "id": "https://ror.org/05fjffm04" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Facteurs de risque et déterminants moléculaires des maladies liées au vieillissement", + "type": "Child", + "id": "https://ror.org/03rvrjk28" + }, + { + "label": "Recherche translationnelle sur le diabète", + "type": "Child", + "id": "https://ror.org/03pbmtd68" + }, + { + "label": "Unité de Mécanique de Lille - Joseph Boussinesq", + "type": "Child", + "id": "https://ror.org/00tt79z10" + }, + { + "label": "Analyses Littéraires et Histoire de la Langue", + "type": "Child", + "id": "https://ror.org/05q5m4q74" + }, + { + "label": "Centre d'Etude des Arts Contemporains", + "type": "Child", + "id": "https://ror.org/00bwykg15" + }, + { + "label": "Centre de Recherche \"Individus, Epreuves, Sociétés\"", + "type": "Child", + "id": "https://ror.org/016w4zy25" + }, + { + "label": "Centre Interuniversitaire de Recherche en Education de Lille", + "type": "Child", + "id": "https://ror.org/00ccaam24" + }, + { + "label": "Centre de Recherche Droits et Perspectives du droit", + "type": "Child", + "id": "https://ror.org/047y28a09" + }, + { + "label": "Groupe d'Etudes et de Recherche Interdisciplinaire en Information et Communication", + "type": "Child", + "id": "https://ror.org/02tznxc41" + }, + { + "label": "Laboratoire de Virologie - Pathogenèse virale", + "type": "Child", + "id": "https://ror.org/006vqpx82" + }, + { + "label": "LACTH - Laboratoire d'Architecture Conception Territoire Histoire Matérialité", + "type": "Child", + "id": "https://ror.org/0409gk363" + }, + { + "label": "Lille School of Management Research Center", + "type": "Child", + "id": "https://ror.org/00jsgkx16" + }, + { + "label": "Lille University Management", + "type": "Child", + "id": "https://ror.org/02hkbys70" + }, + { + "label": "Psychologie : Interactions, Temps, Emotions, Cognition", + "type": "Child", + "id": "https://ror.org/044xe8e90" + }, + { + "label": "Unité de Taphonomie Médico-Légale", + "type": "Child", + "id": "https://ror.org/03ya3d516" + }, + { + "label": "Laboratoire de Didactique André Revuz", + "type": "Child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Maladies RAres du DEveloppement embryonnaire et du MEtabolisme", + "type": "Child", + "id": "https://ror.org/04dsjbp13" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Related", + "id": "https://ror.org/02ppyfa04" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-lille.fr/home/" + ], + "aliases": [ + "Ulille", + "univ-lille" + ], + "acronyms": [ + "UDL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Lille", + "labels": [ + { + "label": "University of Lille", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503422.2", + "preferred": "grid.503422.2" + }, + "ISNI": { + "all": [ + "0000 0001 2242 6780" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3551621" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02m5qpk42.json b/v1.49/v1/02m5qpk42.json new file mode 100644 index 000000000..e8b55e69e --- /dev/null +++ b/v1.49/v1/02m5qpk42.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02m5qpk42", + "name": "Institut Pasteur de Nha Trang", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 12.24507, + "lng": 109.19432, + "state": null, + "state_code": null, + "city": "Nha Trang", + "geonames_city": { + "id": 1572151, + "city": "Nha Trang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ipn.org.vn" + ], + "aliases": [ + "Pasteur Institute in Nha Trang", + "Pasteur Institute of Nha Trang", + "Viện Pasteur Nha Trang" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q10832773" + ], + "preferred": "Q10832773" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02mc6qk71.json b/v1.49/v1/02mc6qk71.json new file mode 100644 index 000000000..e122f7f14 --- /dev/null +++ b/v1.49/v1/02mc6qk71.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02mc6qk71", + "name": "Laboratoire de Physique et Modélisation des Milieux Condensés", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lpmmc.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "LPM2C", + "LPMMC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463719.e", + "preferred": "grid.463719.e" + }, + "ISNI": { + "all": [ + "0000 0004 0384 2377" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02mdnkg28.json b/v1.49/v1/02mdnkg28.json new file mode 100644 index 000000000..0739c3b6d --- /dev/null +++ b/v1.49/v1/02mdnkg28.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02mdnkg28", + "name": "Laboratoire d'Optique Atmosphérique", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National d'Études Spatiales", + "type": "Parent", + "id": "https://ror.org/04h1h0y33" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www-loa.univ-lille1.fr/" + ], + "aliases": [], + "acronyms": [ + "LOA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.497265.b", + "preferred": "grid.497265.b" + }, + "ISNI": { + "all": [ + "0000 0004 0368 3740" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51784352" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02mg6n827.json b/v1.49/v1/02mg6n827.json new file mode 100644 index 000000000..de6429fb7 --- /dev/null +++ b/v1.49/v1/02mg6n827.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/02mg6n827", + "name": "CEA Grenoble", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire d'Economie Appliquée de Grenoble", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Laboratoire des Technologies de la Microélectronique", + "type": "Child", + "id": "https://ror.org/036zswm25" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://portail.cea.fr/Pages/le-cea/les-centres-cea/grenoble.aspx" + ], + "aliases": [ + "Centre d'Études Nucléaires de Grenoble" + ], + "acronyms": [ + "CENG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457348.9", + "preferred": "grid.457348.9" + }, + "ISNI": { + "all": [ + "0000 0004 0630 1517" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2931224" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02mnw9q71.json b/v1.49/v1/02mnw9q71.json new file mode 100644 index 000000000..a8a4b6ab6 --- /dev/null +++ b/v1.49/v1/02mnw9q71.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02mnw9q71", + "name": "Institut Galien Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.76507, + "lng": 2.26655, + "state": null, + "state_code": null, + "city": "Châtenay-Malabry", + "geonames_city": { + "id": 3026108, + "city": "Châtenay-Malabry", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umr-cnrs8612.universite-paris-saclay.fr" + ], + "aliases": [ + "Institut Galien Paris Sud", + "Institute Galien Paris-Saclay" + ], + "acronyms": [ + "IGPS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503249.9", + "preferred": "grid.503249.9" + }, + "ISNI": { + "all": [ + "0000 0004 0368 8779" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51781179" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02n2h9t24.json b/v1.49/v1/02n2h9t24.json new file mode 100644 index 000000000..d26c25add --- /dev/null +++ b/v1.49/v1/02n2h9t24.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/02n2h9t24", + "name": "Laboratoire des Composites Thermo Structuraux", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Safran (France)", + "type": "Parent", + "id": "https://ror.org/05sqf9v67" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + } + ], + "addresses": [ + { + "lat": 44.80565, + "lng": -0.6324, + "state": null, + "state_code": null, + "city": "Pessac", + "geonames_city": { + "id": 2987805, + "city": "Pessac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lcts.u-bordeaux.fr/" + ], + "aliases": [], + "acronyms": [ + "LCTS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503357.7", + "preferred": "grid.503357.7" + }, + "ISNI": { + "all": [ + "0000 0004 0384 8111" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51782353" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02ncz7991.json b/v1.49/v1/02ncz7991.json new file mode 100644 index 000000000..0a3aec894 --- /dev/null +++ b/v1.49/v1/02ncz7991.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/02ncz7991", + "name": "Field Applied Research Australia", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -38.14711, + "lng": 144.36069, + "state": null, + "state_code": null, + "city": "Geelong", + "geonames_city": { + "id": 2165798, + "city": "Geelong", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://faraustralia.com.au" + ], + "aliases": [ + "FAR Australia" + ], + "acronyms": [ + "FAR" + ], + "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.49/v1/02nfq1309.json b/v1.49/v1/02nfq1309.json new file mode 100644 index 000000000..5dc501e73 --- /dev/null +++ b/v1.49/v1/02nfq1309.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/02nfq1309", + "name": "Chimie et Modélisation pour la Biologie du Cancer", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://curie.fr/unite/umr9187-u1196" + ], + "aliases": [ + "Chimie, Modelisation et Imagerie pour la Biologie" + ], + "acronyms": [ + "CMBC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Chemistry and Modelling for Biology of Cancer", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784796" + ], + "preferred": "Q51784796" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02ny5za58.json b/v1.49/v1/02ny5za58.json new file mode 100644 index 000000000..ddd790ce7 --- /dev/null +++ b/v1.49/v1/02ny5za58.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02ny5za58", + "name": "Wuchang Shouyi University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.58333, + "lng": 114.26667, + "state": null, + "state_code": null, + "city": "Wuhan", + "geonames_city": { + "id": 1791247, + "city": "Wuhan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.wsyu.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E6%AD%A6%E6%98%8C%E9%A6%96%E4%B9%89%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "武昌首义学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q10905381" + ], + "preferred": "Q10905381" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02nz6zk20.json b/v1.49/v1/02nz6zk20.json new file mode 100644 index 000000000..ae98ab916 --- /dev/null +++ b/v1.49/v1/02nz6zk20.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02nz6zk20", + "name": "Humanities Montana", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 46.87215, + "lng": -113.994, + "state": null, + "state_code": null, + "city": "Missoula", + "geonames_city": { + "id": 5666639, + "city": "Missoula", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.humanitiesmontana.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446931.d", + "preferred": "grid.446931.d" + }, + "ISNI": { + "all": [ + "0000 0004 5902 8147" + ], + "preferred": "0000 0004 5902 8147" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02p0q0q90.json b/v1.49/v1/02p0q0q90.json new file mode 100644 index 000000000..92081a6bb --- /dev/null +++ b/v1.49/v1/02p0q0q90.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/02p0q0q90", + "name": "Jackson University College", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.68848, + "lng": -1.62443, + "state": null, + "state_code": null, + "city": "Kumasi", + "geonames_city": { + "id": 2298890, + "city": "Kumasi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://jackson.edu.gh" + ], + "aliases": [ + "Jackson College of Education", + "Jackson Educational Complex" + ], + "acronyms": [ + "JEC", + "JUC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q126949646" + ], + "preferred": "Q126949646" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02p6v5z38.json b/v1.49/v1/02p6v5z38.json new file mode 100644 index 000000000..33a1272c9 --- /dev/null +++ b/v1.49/v1/02p6v5z38.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02p6v5z38", + "name": "Teikyo University Hospital, Mizonokuchi", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Teikyo University", + "type": "Parent", + "id": "https://ror.org/01gaw2478" + } + ], + "addresses": [ + { + "lat": 35.52056, + "lng": 139.71722, + "state": null, + "state_code": null, + "city": "Kawasaki", + "geonames_city": { + "id": 1859642, + "city": "Kawasaki", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://teikyo-mizonokuchi.jp" + ], + "aliases": [ + "Teikyo Daigaku Igakubu Fuzoku Mizonokuchi Byoin", + "Teikyo Mizonokuchi Hospital", + "Teikyō Daigaku Igakubu Fuzoku Mizonokuchi Byōin", + "ていきょうだいがくいがくぶふぞくみぞのくちびょういん", + "テイキョウダイガクイガクブフゾクミゾノクチビョウイン" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://ja.wikipedia.org/wiki/%E5%B8%9D%E4%BA%AC%E5%A4%A7%E5%AD%A6%E5%8C%BB%E5%AD%A6%E9%83%A8%E9%99%84%E5%B1%9E%E6%BA%9D%E5%8F%A3%E7%97%85%E9%99%A2", + "labels": [ + { + "label": "帝京大学医学部附属溝口病院", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1772 0514" + ], + "preferred": "0000 0004 1772 0514" + }, + "Wikidata": { + "all": [ + "Q11480975" + ], + "preferred": "Q11480975" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02ppyfa04.json b/v1.49/v1/02ppyfa04.json new file mode 100644 index 000000000..0d02c451d --- /dev/null +++ b/v1.49/v1/02ppyfa04.json @@ -0,0 +1,206 @@ +{ + "id": "https://ror.org/02ppyfa04", + "name": "Centre Hospitalier Universitaire de Lille", + "email_address": null, + "ip_addresses": [], + "established": 1936, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpital Claude Huriez", + "type": "Child", + "id": "https://ror.org/05cpv3t46" + }, + { + "label": "Hôpital Jeanne de Flandre", + "type": "Child", + "id": "https://ror.org/01e8kn913" + }, + { + "label": "Hôpital Roger Salengro", + "type": "Child", + "id": "https://ror.org/0165ax130" + }, + { + "label": "Lille Inflammation Research International Center", + "type": "Child", + "id": "https://ror.org/03c3m6m66" + }, + { + "label": "Lille’s Cardiology Hospital", + "type": "Child", + "id": "https://ror.org/000z46s85" + }, + { + "label": "Protéomique, Réponse Inflammatoire et Spectrométrie de Masse", + "type": "Child", + "id": "https://ror.org/05dm3m993" + }, + { + "label": "Sciences Cognitives et Sciences Affectives", + "type": "Child", + "id": "https://ror.org/05rqwc876" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Investigation Clinique - Innovation Technologique de Lille", + "type": "Child", + "id": "https://ror.org/04p4jgt68" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "Groupe de Recherche sur les formes Injectables et les Technologies Associées", + "type": "Child", + "id": "https://ror.org/02dvx0516" + }, + { + "label": "IMPact de l'Environnement Chimique sur la Santé humaine", + "type": "Child", + "id": "https://ror.org/0455vgw31" + }, + { + "label": "Institute for Translational Research in Inflammation", + "type": "Child", + "id": "https://ror.org/03qy9z186" + }, + { + "label": "Lille Neurosciences & Cognition", + "type": "Child", + "id": "https://ror.org/04p94ax69" + }, + { + "label": "Adiposité Médullaire et Os", + "type": "Child", + "id": "https://ror.org/00hz02a80" + }, + { + "label": "Evaluation des technologies de santé et des pratiques médicales", + "type": "Child", + "id": "https://ror.org/01qygwc68" + }, + { + "label": "OncoThAI", + "type": "Child", + "id": "https://ror.org/04q29nn62" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Facteurs de risque et déterminants moléculaires des maladies liées au vieillissement", + "type": "Child", + "id": "https://ror.org/03rvrjk28" + }, + { + "label": "Recherche translationnelle sur le diabète", + "type": "Child", + "id": "https://ror.org/03pbmtd68" + }, + { + "label": "Laboratoire de Virologie - Pathogenèse virale", + "type": "Child", + "id": "https://ror.org/006vqpx82" + }, + { + "label": "Unité de Taphonomie Médico-Légale", + "type": "Child", + "id": "https://ror.org/03ya3d516" + }, + { + "label": "Université de Lille", + "type": "Related", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chu-lille.fr" + ], + "aliases": [ + "CHRU de Lille", + "CHU de Lille", + "Centre Hospitalier Régional et Universitaire de Lille" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.410463.4", + "preferred": "grid.410463.4" + }, + "ISNI": { + "all": [ + "0000 0004 0471 8845" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945741" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02pt9a543.json b/v1.49/v1/02pt9a543.json new file mode 100644 index 000000000..5a17ab20b --- /dev/null +++ b/v1.49/v1/02pt9a543.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/02pt9a543", + "name": "Autarquia de Ensino Superior de Garanhuns", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -8.9308, + "lng": -36.50767, + "state": null, + "state_code": null, + "city": "Garanhuns", + "geonames_city": { + "id": 6320507, + "city": "Garanhuns", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aesga.edu.br" + ], + "aliases": [ + "Autarquia de Ensino Superior de Garanhuns - AESGA" + ], + "acronyms": [ + "AESGA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02ptn8z56.json b/v1.49/v1/02ptn8z56.json new file mode 100644 index 000000000..b3f904452 --- /dev/null +++ b/v1.49/v1/02ptn8z56.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02ptn8z56", + "name": "École Nationale Supérieure d'Architecture de Versailles", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.80359, + "lng": 2.13424, + "state": null, + "state_code": null, + "city": "Versailles", + "geonames_city": { + "id": 2969679, + "city": "Versailles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.versailles.archi.fr/index.php?action=en" + ], + "aliases": [], + "acronyms": [ + "ENSAV" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_nationale_sup%C3%A9rieure_d%27architecture_de_Versailles", + "labels": [ + { + "label": "National School of Architecture of Versailles", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.466401.1", + "preferred": "grid.466401.1" + }, + "ISNI": { + "all": [ + "0000 0001 2181 0043" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02pzyz439.json b/v1.49/v1/02pzyz439.json new file mode 100644 index 000000000..636774b26 --- /dev/null +++ b/v1.49/v1/02pzyz439.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/02pzyz439", + "name": "Forests and Societies", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ur-forets-societes.cirad.fr/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Forêts et Sociétés", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503171.1", + "preferred": "grid.503171.1" + }, + "Wikidata": { + "all": [ + "Q51780088" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02q4res37.json b/v1.49/v1/02q4res37.json new file mode 100644 index 000000000..f4ebb90ce --- /dev/null +++ b/v1.49/v1/02q4res37.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/02q4res37", + "name": "Institut d'électronique de microélectronique et de nanotechnologie", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Supérieur de l'Électronique et du Numérique", + "type": "Parent", + "id": "https://ror.org/017h2rd72" + }, + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université Polytechnique Hauts-de-France", + "type": "Parent", + "id": "https://ror.org/02ezch769" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "École Nationale Supérieure de Chimie de Lille", + "type": "Parent", + "id": "https://ror.org/041yg4h55" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iemn.fr" + ], + "aliases": [], + "acronyms": [ + "IEMN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_d%27%C3%A9lectronique_de_micro%C3%A9lectronique_et_de_nanotechnologie", + "labels": [ + { + "label": "Institute of Electronics, Microelectronics and Nanotechnology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461903.9", + "preferred": "grid.461903.9" + }, + "ISNI": { + "all": [ + "0000 0004 0368 3863" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3151942" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02q6fa122.json b/v1.49/v1/02q6fa122.json new file mode 100644 index 000000000..11be84685 --- /dev/null +++ b/v1.49/v1/02q6fa122.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/02q6fa122", + "name": "Dynamique de l'information génétique : bases fondamentales et cancer", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://curie.fr/unite/umr3244" + ], + "aliases": [ + "DIG-Cancer", + "Dynamics of Genetic Information", + "Dynamique de l'information génétique" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Dynamics of Genetic Information: fundamental bases and cancer", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462584.9", + "preferred": "grid.462584.9" + }, + "ISNI": { + "all": [ + "0000 0004 0367 1475" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261497" + ], + "preferred": "Q30261497" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02q7f3j18.json b/v1.49/v1/02q7f3j18.json new file mode 100644 index 000000000..cd6cc6179 --- /dev/null +++ b/v1.49/v1/02q7f3j18.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/02q7f3j18", + "name": "Microbe, Intestine, Inflammation and Host Susceptibility", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Recherche en Nutrition Humaine d'Auvergne", + "type": "Parent", + "id": "https://ror.org/03rzyjb72" + }, + { + "label": "Délégation Régionale Auvergne-Rhône-Alpes", + "type": "Parent", + "id": "https://ror.org/0530j9m17" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://m2ish.uca.fr" + ], + "aliases": [ + "M2iSH" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503381.c", + "preferred": "grid.503381.c" + }, + "Wikidata": { + "all": [ + "Q51779868" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02qkn0e91.json b/v1.49/v1/02qkn0e91.json new file mode 100644 index 000000000..f9dc71eb3 --- /dev/null +++ b/v1.49/v1/02qkn0e91.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02qkn0e91", + "name": "Institut Pasteur du Laos", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 17.96667, + "lng": 102.6, + "state": null, + "state_code": null, + "city": "Vientiane", + "geonames_city": { + "id": 1651944, + "city": "Vientiane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pasteur.la" + ], + "aliases": [ + "Foundation Institut Pasteur du Laos", + "Institut Pasteur of Laos" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "ສະຖາບັນ ປັດສະເຕີ ລາວ", + "iso639": "lo" + } + ], + "country": { + "country_name": "Laos", + "country_code": "LA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02r1kz177.json b/v1.49/v1/02r1kz177.json new file mode 100644 index 000000000..0872ab0a1 --- /dev/null +++ b/v1.49/v1/02r1kz177.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/02r1kz177", + "name": "Bioinformatique Moléculaire", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gdr-bim.cnrs.fr" + ], + "aliases": [ + "GDR Bioinformatique Moléculaire", + "Groupement de Recherche Bioinformatique Moléculaire" + ], + "acronyms": [ + "GDR BIM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780297" + ], + "preferred": "Q51780297" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02r9kbs29.json b/v1.49/v1/02r9kbs29.json new file mode 100644 index 000000000..a84fa5ceb --- /dev/null +++ b/v1.49/v1/02r9kbs29.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02r9kbs29", + "name": "Peki College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1954, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Ghana", + "type": "Related", + "id": "https://ror.org/01r22mr83" + } + ], + "addresses": [ + { + "lat": 6.53082, + "lng": 0.2362, + "state": null, + "state_code": null, + "city": "Peki Blengo", + "geonames_city": { + "id": 2296032, + "city": "Peki Blengo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pekicoe.edu.gh" + ], + "aliases": [ + "Government Training College Peki" + ], + "acronyms": [ + "GOVCO", + "PKCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Peki_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996980" + ], + "preferred": "Q46996980" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02rmk5x23.json b/v1.49/v1/02rmk5x23.json new file mode 100644 index 000000000..48a1064b0 --- /dev/null +++ b/v1.49/v1/02rmk5x23.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/02rmk5x23", + "name": "Fédération de recherche PLAS@PAR", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Observatoire de Paris", + "type": "Parent", + "id": "https://ror.org/029nkcm90" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Office National d'Études et de Recherches Aérospatiales", + "type": "Parent", + "id": "https://ror.org/005y2ap84" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.plasapar.sorbonne-universite.fr" + ], + "aliases": [ + "PLAS@PAR", + "Plasmas à Paris" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695003" + ], + "preferred": "Q123695003" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02rx3b187.json b/v1.49/v1/02rx3b187.json new file mode 100644 index 000000000..8cf86aa40 --- /dev/null +++ b/v1.49/v1/02rx3b187.json @@ -0,0 +1,553 @@ +{ + "id": "https://ror.org/02rx3b187", + "name": "Université Grenoble Alpes", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Interuniversitaire de MicroElectronique et Nanotechnologies", + "type": "Child", + "id": "https://ror.org/000tdrn36" + }, + { + "label": "Laboratoire d'Economie Appliquée de Grenoble", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Institut polytechnique de Grenoble", + "type": "Child", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut Néel", + "type": "Child", + "id": "https://ror.org/04dbzz632" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut des Géosciences de l'Environnement", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Interdisciplinaire de Physique", + "type": "Child", + "id": "https://ror.org/023n9q531" + }, + { + "label": "Laboratoire de Linguistique et Didactique des Langues Etrangères et Maternelles", + "type": "Child", + "id": "https://ror.org/05588ks88" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratoire de Physique Subatomique et de Cosmologie", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "Child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "Institut Carnot PolyNat", + "type": "Child", + "id": "https://ror.org/047p7mf25" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Laboratoire de Recherche sur les Apprentissages en Contexte", + "type": "Child", + "id": "https://ror.org/05c99vk74" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Laboratoire Inter-universitaire de Psychologie: Personnalité, Cognition, Changement Social", + "type": "Child", + "id": "https://ror.org/03jrb0276" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "Child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Laboratoire Modélisation et Exploration des Matériaux", + "type": "Child", + "id": "https://ror.org/00ndvqf03" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "Child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "Child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Centre d'Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique", + "type": "Child", + "id": "https://ror.org/04ndt7n58" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Centre d'Etudes et de Recherches Appliquées à la Gestion", + "type": "Child", + "id": "https://ror.org/0509qp208" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Laboratoire d'Informatique de Grenoble", + "type": "Child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "Child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Pacte", + "type": "Child", + "id": "https://ror.org/026j45x50" + }, + { + "label": "Laboratoire de Conception et d'Intégration des Systèmes", + "type": "Child", + "id": "https://ror.org/04eg25g76" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "Child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scène", + "type": "Child", + "id": "https://ror.org/055q9jt53" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Child", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Centre de recherches juridiques de Grenoble", + "type": "Child", + "id": "https://ror.org/04e2ndp15" + }, + { + "label": "Centre de recherche en économie de Grenoble", + "type": "Child", + "id": "https://ror.org/05bw7ad85" + }, + { + "label": "Laboratoire EcoSystèmes et Sociétés En Montagne", + "type": "Child", + "id": "https://ror.org/01a0ez112" + }, + { + "label": "Méthodes et Histoire de l'architecture", + "type": "Child", + "id": "https://ror.org/00genbz89" + }, + { + "label": "Centre d'études sur la sécurité internationale et les coopérations européennes", + "type": "Child", + "id": "https://ror.org/033d95m27" + }, + { + "label": "Sport et environnement social", + "type": "Child", + "id": "https://ror.org/00t9pwh21" + }, + { + "label": "Architecture, Environnement & Cultures Constructives", + "type": "Child", + "id": "https://ror.org/02wrd4e19" + }, + { + "label": "Laboratoire Universitaire Histoire Cultures Italie Europe", + "type": "Child", + "id": "https://ror.org/00y523k32" + }, + { + "label": "Institut de philosophie de Grenoble", + "type": "Child", + "id": "https://ror.org/01554y636" + }, + { + "label": "Groupe de recherche sur les enjeux de la communication", + "type": "Child", + "id": "https://ror.org/00awrf758" + }, + { + "label": "Laboratoire des Sciences pour la Conception, l'Optimisation et la Production", + "type": "Child", + "id": "https://ror.org/00rv5x925" + }, + { + "label": "Institut Fourier", + "type": "Child", + "id": "https://ror.org/05rwrfh97" + }, + { + "label": "Techniques of Informatics and Microelectronics for Integrated Systems Architecture", + "type": "Child", + "id": "https://ror.org/000063q30" + }, + { + "label": "Translational Innovation in Medicine and Complexity", + "type": "Child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "Child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Autonomie, Gérontologie, E-santé, Imagerie et Société", + "type": "Child", + "id": "https://ror.org/01aj0bf86" + }, + { + "label": "Laboratoire Biosciences et bioingénierie pour la Santé", + "type": "Child", + "id": "https://ror.org/039j4x695" + }, + { + "label": "Brain Tech Laboratory", + "type": "Child", + "id": "https://ror.org/01027m165" + }, + { + "label": "Laboratoire Biologie et Biotechnologie pour la Santé", + "type": "Child", + "id": "https://ror.org/0557vhy43" + }, + { + "label": "Université Pierre Mendès France", + "type": "Predecessor", + "id": "https://ror.org/02f7wz369" + }, + { + "label": "Centre Hospitalier Universitaire de Grenoble", + "type": "Related", + "id": "https://ror.org/041rhpw39" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "Institut de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Centre de Recherches sur les Macromolécules Végétales", + "type": "Child", + "id": "https://ror.org/0003ege03" + }, + { + "label": "Département de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/010rs2a38" + }, + { + "label": "Hypoxie et Physiopathologies cardiovasculaires et respiratoires", + "type": "Child", + "id": "https://ror.org/0459x4g44" + }, + { + "label": "Haute Technologie Animale Grenobloise", + "type": "Child", + "id": "https://ror.org/03vyv3y87" + }, + { + "label": "Institut pour l'avancée des biosciences", + "type": "Child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "Child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire d'Écologie Alpine", + "type": "Child", + "id": "https://ror.org/03x1z2w73" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire de Radiopharmaceutiques Biocliniques", + "type": "Child", + "id": "https://ror.org/01273vs09" + }, + { + "label": "Laboratory of Fundamental and Applied Bioenergetics", + "type": "Child", + "id": "https://ror.org/05514hp74" + }, + { + "label": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "type": "Child", + "id": "https://ror.org/0535cbn94" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Laboratoire Rhéologie et Procédés", + "type": "Child", + "id": "https://ror.org/044ggyg50" + }, + { + "label": "Laboratoire National des Champs Magnétiques Intenses", + "type": "Child", + "id": "https://ror.org/045ktmd28" + }, + { + "label": "Laboratoire de génie des procédés pour la bioraffinerie, les matériaux bio-sourcés et l’impression fonctionnelle", + "type": "Child", + "id": "https://ror.org/02z8yps18" + }, + { + "label": "Institut de Planétologie et d'Astrophysique de Grenoble", + "type": "Child", + "id": "https://ror.org/01kcrnc96" + }, + { + "label": "Laboratoire des Écoulements Géophysiques et Industriels", + "type": "Child", + "id": "https://ror.org/043pfpy19" + }, + { + "label": "Sols, Solides, Structures, Risques", + "type": "Child", + "id": "https://ror.org/03bcdsr62" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "Child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Laboratoire des Matériaux et du Génie Physique", + "type": "Child", + "id": "https://ror.org/014n97s28" + }, + { + "label": "Laboratoire de Physique et Modélisation des Milieux Condensés", + "type": "Child", + "id": "https://ror.org/02mc6qk71" + }, + { + "label": "Laboratoire des Technologies de la Microélectronique", + "type": "Child", + "id": "https://ror.org/036zswm25" + }, + { + "label": "Laboratoire de Génie Électrique de Grenoble", + "type": "Child", + "id": "https://ror.org/05hyx5a17" + }, + { + "label": "Science et Ingénierie des Matériaux et Procédés", + "type": "Child", + "id": "https://ror.org/00m7zca23" + }, + { + "label": "Centre de Radiofréquences, Optique et Micro-nanoélectronique des Alpes", + "type": "Child", + "id": "https://ror.org/050rs7291" + }, + { + "label": "Département des Systèmes Basses Températures", + "type": "Child", + "id": "https://ror.org/009ps2x93" + } + ], + "addresses": [ + { + "lat": 45.1787, + "lng": 5.76281, + "state": null, + "state_code": null, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 2978317, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-grenoble-alpes.fr" + ], + "aliases": [], + "acronyms": [ + "UGA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Grenoble_Alpes_University", + "labels": [ + { + "label": "Grenoble Alpes University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.450307.5", + "preferred": "grid.450307.5" + }, + "Wikidata": { + "all": [ + "Q945876" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02s4dmd79.json b/v1.49/v1/02s4dmd79.json new file mode 100644 index 000000000..0bb038079 --- /dev/null +++ b/v1.49/v1/02s4dmd79.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02s4dmd79", + "name": "Miniaturisation pour la Synthèse, l'Analyse et la Protéomique", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-lille1.fr/recherche/Laboratoires-Equipements?id=4583&type=labos" + ], + "aliases": [], + "acronyms": [ + "MSAP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462613.4", + "preferred": "grid.462613.4" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02s78cg64.json b/v1.49/v1/02s78cg64.json new file mode 100644 index 000000000..de7fdf8f7 --- /dev/null +++ b/v1.49/v1/02s78cg64.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/02s78cg64", + "name": "Mustaqbal University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 26.32599, + "lng": 43.97497, + "state": null, + "state_code": null, + "city": "Buraidah", + "geonames_city": { + "id": 107304, + "city": "Buraidah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uom.edu.sa" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Saudi Arabia", + "country_code": "SA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02sbkmb73.json b/v1.49/v1/02sbkmb73.json new file mode 100644 index 000000000..b8fc59bc2 --- /dev/null +++ b/v1.49/v1/02sbkmb73.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02sbkmb73", + "name": "Connecticut Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 41.56232, + "lng": -72.65065, + "state": null, + "state_code": null, + "city": "Middletown", + "geonames_city": { + "id": 4838633, + "city": "Middletown", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cthumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446582.9", + "preferred": "grid.446582.9" + }, + "ISNI": { + "all": [ + "0000 0001 2221 0621" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02st4q439.json b/v1.49/v1/02st4q439.json new file mode 100644 index 000000000..2fa4a269c --- /dev/null +++ b/v1.49/v1/02st4q439.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02st4q439", + "name": "Institut de Chimie des Substances Naturelles", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://icsn.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "ICSN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_de_Chimie_des_Substances_Naturelles", + "labels": [ + { + "label": "Institute for the chemistry of natural substances", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418214.a", + "preferred": "grid.418214.a" + }, + "ISNI": { + "all": [ + "0000 0001 2286 3155" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2388377" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02sy42d13.json b/v1.49/v1/02sy42d13.json new file mode 100644 index 000000000..9ca48e165 --- /dev/null +++ b/v1.49/v1/02sy42d13.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02sy42d13", + "name": "Bambino Gesù Children's Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1869, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Istituti di Ricovero e Cura a Carattere Scientifico", + "type": "Parent", + "id": "https://ror.org/04tfzc498" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ospedalebambinogesu.it" + ], + "aliases": [ + "Baby Jesus Paediatric Hospital", + "Bambino Gesù Hospital", + "IRCCS Bambino Gesù Children's Hospital", + "IRCCS Ospedale Pediatrico Bambino Gesù" + ], + "acronyms": [ + "OPBG" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bambino_Ges%C3%B9_Hospital", + "labels": [ + { + "label": "Ospedale Pediatrico Bambino Gesù", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.414125.7", + "preferred": "grid.414125.7" + }, + "ISNI": { + "all": [ + "0000 0001 0727 6809" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3886684" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02t3p7e85.json b/v1.49/v1/02t3p7e85.json new file mode 100644 index 000000000..710bbdf5a --- /dev/null +++ b/v1.49/v1/02t3p7e85.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02t3p7e85", + "name": "Queensland Children’s Hospital", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Children’s Health Queensland Hospital and Health Service", + "type": "Parent", + "id": "https://ror.org/00be8mn93" + }, + { + "label": "Children's Hospital Foundation", + "type": "Child", + "id": "https://ror.org/03g60bf21" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Lady Cilento Children's Hospital" + ], + "acronyms": [ + "QCH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Queensland_Children's_Hospital", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.240562.7", + "preferred": "grid.240562.7" + }, + "Wikidata": { + "all": [ + "Q7270916" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02tare285.json b/v1.49/v1/02tare285.json new file mode 100644 index 000000000..6b59b19c2 --- /dev/null +++ b/v1.49/v1/02tare285.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02tare285", + "name": "National Institute of Technology, Puducherry", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.91667, + "lng": 79.83333, + "state": null, + "state_code": null, + "city": "Kāraikāl", + "geonames_city": { + "id": 1267887, + "city": "Kāraikāl", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nitpy.ac.in" + ], + "aliases": [ + "NIT Puducherry" + ], + "acronyms": [ + "NITPY" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Institute_of_Technology%2C_Puducherry", + "labels": [ + { + "label": "राष्ट्रीय प्रौद्योगिकी संस्थान पुदुच्चेरी, कारैक्काल", + "iso639": "hi" + }, + { + "label": "தேசிய தொழில்நுட்பக் கழகம் புதுச்சேரி, காரைக்கால்", + "iso639": "ta" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q6973718" + ], + "preferred": "Q6973718" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02tcf7a68.json b/v1.49/v1/02tcf7a68.json new file mode 100644 index 000000000..1d53103cc --- /dev/null +++ b/v1.49/v1/02tcf7a68.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02tcf7a68", + "name": "Centre Hospitalier Universitaire de Clermont-Ferrand", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Université Clermont Auvergne", + "type": "Related", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chu-clermontferrand.fr/internet/default.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.411163.0", + "preferred": "grid.411163.0" + }, + "ISNI": { + "all": [ + "0000 0004 0639 4151" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02tm5ny37.json b/v1.49/v1/02tm5ny37.json new file mode 100644 index 000000000..0188c4e03 --- /dev/null +++ b/v1.49/v1/02tm5ny37.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/02tm5ny37", + "name": "Médipole Garonne", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.medipole.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.492674.a", + "preferred": "grid.492674.a" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02tznxc41.json b/v1.49/v1/02tznxc41.json new file mode 100644 index 000000000..614981ddc --- /dev/null +++ b/v1.49/v1/02tznxc41.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02tznxc41", + "name": "Groupe d'Etudes et de Recherche Interdisciplinaire en Information et Communication", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://geriico.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "GERIICO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2204 2402" + ], + "preferred": "0000 0001 2204 2402" + }, + "Wikidata": { + "all": [ + "Q51779683" + ], + "preferred": "Q51779683" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02v8kk877.json b/v1.49/v1/02v8kk877.json new file mode 100644 index 000000000..10993d230 --- /dev/null +++ b/v1.49/v1/02v8kk877.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02v8kk877", + "name": "European Union Agency for Railways", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.35909, + "lng": 3.52506, + "state": null, + "state_code": null, + "city": "Valenciennes", + "geonames_city": { + "id": 2971041, + "city": "Valenciennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.era.europa.eu" + ], + "aliases": [], + "acronyms": [ + "ERA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_Union_Agency_for_Railways", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q369273" + ], + "preferred": "Q369273" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02vdm1p28.json b/v1.49/v1/02vdm1p28.json new file mode 100644 index 000000000..38456e8c1 --- /dev/null +++ b/v1.49/v1/02vdm1p28.json @@ -0,0 +1,374 @@ +{ + "id": "https://ror.org/02vdm1p28", + "name": "National Endowment for the Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Alabama Humanities Foundation", + "type": "Related", + "id": "https://ror.org/01ntvtb47" + }, + { + "label": "Alaska Humanities Forum", + "type": "Related", + "id": "https://ror.org/03afwf105" + }, + { + "label": "Amerika Samoa Humanities Council", + "type": "Related", + "id": "https://ror.org/00zv6sd12" + }, + { + "label": "Arizona Humanities", + "type": "Related", + "id": "https://ror.org/04d9hcc21" + }, + { + "label": "Arkansas Humanities Council", + "type": "Related", + "id": "https://ror.org/04e9t3w40" + }, + { + "label": "Cal Humanities", + "type": "Related", + "id": "https://ror.org/0027wax95" + }, + { + "label": "Colorado Humanities", + "type": "Related", + "id": "https://ror.org/005wz0e45" + }, + { + "label": "Connecticut Humanities Council", + "type": "Related", + "id": "https://ror.org/02sbkmb73" + }, + { + "label": "Delaware Humanities Forum", + "type": "Related", + "id": "https://ror.org/05njt8204" + }, + { + "label": "Florida Humanities Council", + "type": "Related", + "id": "https://ror.org/03bkshf67" + }, + { + "label": "Fundación Puertorriqueña de las Humanidades", + "type": "Related", + "id": "https://ror.org/02ke25a78" + }, + { + "label": "Georgia Humanities Council", + "type": "Related", + "id": "https://ror.org/056qzgq67" + }, + { + "label": "Guam Humanities Council", + "type": "Related", + "id": "https://ror.org/03skccr46" + }, + { + "label": "Hawai'i Council for the Humanities", + "type": "Related", + "id": "https://ror.org/04aeaje24" + }, + { + "label": "Humanities Council of South Carolina", + "type": "Related", + "id": "https://ror.org/0290xtv45" + }, + { + "label": "Humanities Council of Washington", + "type": "Related", + "id": "https://ror.org/0160ba067" + }, + { + "label": "Humanities Iowa", + "type": "Related", + "id": "https://ror.org/01ty7bz40" + }, + { + "label": "Humanities Montana", + "type": "Related", + "id": "https://ror.org/02nz6zk20" + }, + { + "label": "Humanities Nebraska", + "type": "Related", + "id": "https://ror.org/03c10r560" + }, + { + "label": "Humanities Tennessee", + "type": "Related", + "id": "https://ror.org/05bab7f08" + }, + { + "label": "Humanities Texas", + "type": "Related", + "id": "https://ror.org/00xdgaz28" + }, + { + "label": "Humanities Washington", + "type": "Related", + "id": "https://ror.org/05ajmm513" + }, + { + "label": "Humanities West", + "type": "Related", + "id": "https://ror.org/0371hm317" + }, + { + "label": "Idaho Humanities Council", + "type": "Related", + "id": "https://ror.org/02jjxqt79" + }, + { + "label": "Illinois Humanities Council", + "type": "Related", + "id": "https://ror.org/05nw4bs65" + }, + { + "label": "Indiana Humanities", + "type": "Related", + "id": "https://ror.org/01q3rcc14" + }, + { + "label": "Humanities Kansas", + "type": "Related", + "id": "https://ror.org/0018tj392" + }, + { + "label": "Kentucky Humanities Council", + "type": "Related", + "id": "https://ror.org/048t5xm56" + }, + { + "label": "Louisiana Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/032m0qa86" + }, + { + "label": "Maine Humanities Council", + "type": "Related", + "id": "https://ror.org/024kdkj87" + }, + { + "label": "Maryland Humanities Council", + "type": "Related", + "id": "https://ror.org/00h43mz31" + }, + { + "label": "Mass Humanities", + "type": "Related", + "id": "https://ror.org/05jkzmq27" + }, + { + "label": "Michigan Humanities Council", + "type": "Related", + "id": "https://ror.org/009445d52" + }, + { + "label": "Minnesota Humanities Center", + "type": "Related", + "id": "https://ror.org/015hnv758" + }, + { + "label": "Mississippi Humanities Council", + "type": "Related", + "id": "https://ror.org/04n1pzr73" + }, + { + "label": "Missouri Humanities Council", + "type": "Related", + "id": "https://ror.org/01vjab145" + }, + { + "label": "Nevada Humanities", + "type": "Related", + "id": "https://ror.org/016df9e78" + }, + { + "label": "New Hampshire Humanities Council", + "type": "Related", + "id": "https://ror.org/054bwsx29" + }, + { + "label": "New Jersey Council for the Humanities", + "type": "Related", + "id": "https://ror.org/037er0m96" + }, + { + "label": "New Mexico Humanities Council", + "type": "Related", + "id": "https://ror.org/03ew9k907" + }, + { + "label": "New York Council for the Humanities", + "type": "Related", + "id": "https://ror.org/00kqccw49" + }, + { + "label": "North Carolina Humanities Council", + "type": "Related", + "id": "https://ror.org/01r8ww931" + }, + { + "label": "Humanities North Dakota", + "type": "Related", + "id": "https://ror.org/04h1tgj82" + }, + { + "label": "Ohio Humanities Council", + "type": "Related", + "id": "https://ror.org/02vwv4x74" + }, + { + "label": "Oklahoma Humanities Council", + "type": "Related", + "id": "https://ror.org/04mz2k452" + }, + { + "label": "Omohundro Institute of Early American History and Culture", + "type": "Related", + "id": "https://ror.org/01fjvrm82" + }, + { + "label": "Oregon Humanities", + "type": "Related", + "id": "https://ror.org/020m4fx82" + }, + { + "label": "Pennsylvania Humanities Council", + "type": "Related", + "id": "https://ror.org/00cc69h98" + }, + { + "label": "Rhode Island Council for the Humanities", + "type": "Related", + "id": "https://ror.org/012mse022" + }, + { + "label": "South Dakota Humanities Council", + "type": "Related", + "id": "https://ror.org/02hewtj70" + }, + { + "label": "Utah Humanities Council", + "type": "Related", + "id": "https://ror.org/056rync30" + }, + { + "label": "Vermont Humanities", + "type": "Related", + "id": "https://ror.org/05c602238" + }, + { + "label": "Virgin Islands Humanities Council", + "type": "Related", + "id": "https://ror.org/00amdr662" + }, + { + "label": "Virginia Foundation for the Humanities", + "type": "Related", + "id": "https://ror.org/04x361v68" + }, + { + "label": "West Virginia Humanities Council", + "type": "Related", + "id": "https://ror.org/024hqb733" + }, + { + "label": "Wisconsin Humanities Council", + "type": "Related", + "id": "https://ror.org/03ccs9d57" + }, + { + "label": "Wyoming Humanities Council", + "type": "Related", + "id": "https://ror.org/02gpbfd77" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.neh.gov/" + ], + "aliases": [], + "acronyms": [ + "NEH" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/National_Endowment_for_the_Humanities", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.422239.c", + "preferred": "grid.422239.c" + }, + "ISNI": { + "all": [ + "0000 0001 0281 9499" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q478050" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02vjkv261.json b/v1.49/v1/02vjkv261.json new file mode 100644 index 000000000..c794f9ffc --- /dev/null +++ b/v1.49/v1/02vjkv261.json @@ -0,0 +1,1353 @@ +{ + "id": "https://ror.org/02vjkv261", + "name": "Inserm", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Adaptateurs de Signalisation en Hématologie", + "type": "Child", + "id": "https://ror.org/03837fc46" + }, + { + "label": "Laboratoire Adhésion et inflammation", + "type": "Child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Centre de Recherche en Cancérologie de Lyon", + "type": "Child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Centre de Recherche en Cancérologie de Toulouse", + "type": "Child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Institut Thématique Cancer", + "type": "Child", + "id": "https://ror.org/04zdwr798" + }, + { + "label": "Institut thématique Biologie cellulaire, développement et évolution", + "type": "Child", + "id": "https://ror.org/024k3xe80" + }, + { + "label": "Centre Interdisciplinaire de Recherche en Biologie", + "type": "Child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "Child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Centre de Recherche Médecine, Sciences, Santé, Santé Mentale, Société", + "type": "Child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Centre de Recherche sur l'Inflammation", + "type": "Child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre Méditerranéen de Médecine Moléculaire", + "type": "Child", + "id": "https://ror.org/029rfe283" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "Child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "Child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "Child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "Child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Référence Déficits Immunitaires Héréditaires", + "type": "Child", + "id": "https://ror.org/009p5nb11" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "Child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Cognition, Action, and Sensorimotor Plasticity", + "type": "Child", + "id": "https://ror.org/03xe54902" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "Child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Délégation Paris 11", + "type": "Child", + "id": "https://ror.org/0589k3111" + }, + { + "label": "Délégation Paris 12", + "type": "Child", + "id": "https://ror.org/00sbttv49" + }, + { + "label": "Délégation Paris 5", + "type": "Child", + "id": "https://ror.org/02e0y6e06" + }, + { + "label": "Délégation Paris 6", + "type": "Child", + "id": "https://ror.org/03rt48n94" + }, + { + "label": "Délégation Paris 7", + "type": "Child", + "id": "https://ror.org/00bw5n526" + }, + { + "label": "Délégation Régionale Auvergne-Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/0530j9m17" + }, + { + "label": "Délégation Régionale Est", + "type": "Child", + "id": "https://ror.org/04kv7c795" + }, + { + "label": "Délégation Régionale Grand Ouest", + "type": "Child", + "id": "https://ror.org/01qa4rf46" + }, + { + "label": "Délégation Régionale Nord Ouest", + "type": "Child", + "id": "https://ror.org/00jmxvy70" + }, + { + "label": "Délégation Régionale Nouvelle-Aquitaine", + "type": "Child", + "id": "https://ror.org/044rb3f07" + }, + { + "label": "Délégation Régionale Occitanie Méditerranée", + "type": "Child", + "id": "https://ror.org/01ddr6d46" + }, + { + "label": "Délégation Régionale Occitanie Pyrénées", + "type": "Child", + "id": "https://ror.org/03xssrp53" + }, + { + "label": "Délégation Régionale Provence-Alpes-Côte d’Azur et Corse", + "type": "Child", + "id": "https://ror.org/01s8rwd67" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Equipe Soutenue par la Région et par l'Inserm", + "type": "Child", + "id": "https://ror.org/03e801006" + }, + { + "label": "Institut thématique Génétique, génomique et bioinformatique", + "type": "Child", + "id": "https://ror.org/01rfstj90" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "Child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "Child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "Child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Institut des Maladies Génétiques Imagine", + "type": "Child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Imagerie et Cerveau", + "type": "Child", + "id": "https://ror.org/01eem7c55" + }, + { + "label": "Immunité et Cancer", + "type": "Child", + "id": "https://ror.org/01zefvs55" + }, + { + "label": "Institut thématique Immunologie, inflammation, infectiologie et microbiologie", + "type": "Child", + "id": "https://ror.org/00r454w59" + }, + { + "label": "Inserm Transfert", + "type": "Child", + "id": "https://ror.org/01wftfc57" + }, + { + "label": "Institut pour l'avancée des biosciences", + "type": "Child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Institut Cochin", + "type": "Child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "Child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut Jacques Monod", + "type": "Child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "Child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "Child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut d'Économie Publique", + "type": "Child", + "id": "https://ror.org/014ycqe77" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "Child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie de Lille", + "type": "Child", + "id": "https://ror.org/05gd4yq49" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Neurobiologie de la Méditerranée", + "type": "Child", + "id": "https://ror.org/02jthx987" + }, + { + "label": "Institut de Neurosciences des Systèmes", + "type": "Child", + "id": "https://ror.org/019kqby73" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "Child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Institut de Recherche en Santé, Environnement et Travail", + "type": "Child", + "id": "https://ror.org/01p178v10" + }, + { + "label": "Institut du Cerveau", + "type": "Child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "Child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut du Thorax", + "type": "Child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "Child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "Child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institut de Biologie Valrose", + "type": "Child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institut de génétique et de biologie moléculaire et cellulaire", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institut de Myologie", + "type": "Child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institut de Recherche sur le Cancer et le Vieillissement de Nice", + "type": "Child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "Centre International de Recherche en Infectiologie", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire CarMeN", + "type": "Child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "Child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "Child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire d'Optique et Biosciences", + "type": "Child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratoire de Recherche Vasculaire Translationnelle", + "type": "Child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "Child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Institut Langevin", + "type": "Child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Lipides, Nutrition, Cancer", + "type": "Child", + "id": "https://ror.org/04d70nb60" + }, + { + "label": "Centre de Recherche en Neurosciences de Lyon", + "type": "Child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Institut thématique Bases moléculaires et structurales du vivant", + "type": "Child", + "id": "https://ror.org/00j5dj575" + }, + { + "label": "Institut Mondor de Recherche Biomédicale", + "type": "Child", + "id": "https://ror.org/04qe59j94" + }, + { + "label": "Institut thématique Neurosciences, sciences cognitives, neurologie, psychiatrie", + "type": "Child", + "id": "https://ror.org/05e7p5n27" + }, + { + "label": "Nutrition, Obésité et Risque Thrombotique", + "type": "Child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Oncogenesis Stress Signaling", + "type": "Child", + "id": "https://ror.org/00bf6bf92" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "Child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Génomes, biologie cellulaire et thérapeutiques", + "type": "Child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "Child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "Child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physiopathologie, métabolisme et nutrition", + "type": "Child", + "id": "https://ror.org/00cmmh940" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "Child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Institut thématique Santé Publique", + "type": "Child", + "id": "https://ror.org/04wbsq162" + }, + { + "label": "Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète", + "type": "Child", + "id": "https://ror.org/05xanhp90" + }, + { + "label": "Skin Research Center", + "type": "Child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "Institut Cellule Souche et Cerveau", + "type": "Child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "Child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "Child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Theories and Approaches of Genomic Complexity", + "type": "Child", + "id": "https://ror.org/025sfbe73" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "Child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "Child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Systèmes avancés de délivrance de principes actifs", + "type": "Child", + "id": "https://ror.org/053ppfe96" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Investigation Clinique - Innovation Technologique de Lille", + "type": "Child", + "id": "https://ror.org/04p4jgt68" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "IMPact de l'Environnement Chimique sur la Santé humaine", + "type": "Child", + "id": "https://ror.org/0455vgw31" + }, + { + "label": "Institute for Translational Research in Inflammation", + "type": "Child", + "id": "https://ror.org/03qy9z186" + }, + { + "label": "Lille Neurosciences & Cognition", + "type": "Child", + "id": "https://ror.org/04p94ax69" + }, + { + "label": "Médicaments et Molécules pour Agir sur les Systèmes Vivants", + "type": "Child", + "id": "https://ror.org/0086epd30" + }, + { + "label": "OncoThAI", + "type": "Child", + "id": "https://ror.org/04q29nn62" + }, + { + "label": "Laboratoire de Physiologie Cellulaire", + "type": "Child", + "id": "https://ror.org/05fjffm04" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Recherche translationnelle sur le diabète", + "type": "Child", + "id": "https://ror.org/03pbmtd68" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "Child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Bacterial RNAs & Medicine", + "type": "Child", + "id": "https://ror.org/031y0x195" + }, + { + "label": "Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer", + "type": "Child", + "id": "https://ror.org/05p7fmf80" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "Child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "Child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre d’Investigation Clinique 1436", + "type": "Child", + "id": "https://ror.org/033z83z59" + }, + { + "label": "Hypoxie et Poumon", + "type": "Child", + "id": "https://ror.org/02mtpz628" + }, + { + "label": "Centre d'Investigation Clinique - Epidémiologie Clinique Saint-Etienne", + "type": "Child", + "id": "https://ror.org/044dp1584" + }, + { + "label": "NeuroDiderot", + "type": "Child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Besançon", + "type": "Child", + "id": "https://ror.org/04nk3ny21" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "Child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "Child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Institute for Translational Medicine and Liver Disease", + "type": "Child", + "id": "https://ror.org/00jvqbw52" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "Child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "Child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "Child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde", + "type": "Child", + "id": "https://ror.org/05vqkgf08" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "Biologie des maladies cardiovasculaires", + "type": "Child", + "id": "https://ror.org/0463z7496" + }, + { + "label": "Nutrition, Diabète et Cerveau", + "type": "Child", + "id": "https://ror.org/052yj6c27" + }, + { + "label": "Pharmacologie et Transplantation", + "type": "Child", + "id": "https://ror.org/013dngs07" + }, + { + "label": "Pathologies Pulmonaires et Plasticité Cellulaire", + "type": "Child", + "id": "https://ror.org/02w7ezv91" + }, + { + "label": "Physiopathologie, autoimmunité, maladies neuromusculaire et thérapie régénératrice", + "type": "Child", + "id": "https://ror.org/034feyf26" + }, + { + "label": "Centre de Génétique Médicale de Marseille", + "type": "Child", + "id": "https://ror.org/01e4wd589" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "Child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Centre d'Investigation Clinique Antilles Guyane", + "type": "Child", + "id": "https://ror.org/029hdt144" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "Child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "Child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "HIPI - Immunologie humaine, physiopathologie et immunithérapie", + "type": "Child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "Child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Institut Droit et Santé", + "type": "Child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "Child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Etude longitudinale française depuis l'enfance", + "type": "Child", + "id": "https://ror.org/03cxgcr75" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "Child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Laboratory for the Bioengineering of Tissues", + "type": "Child", + "id": "https://ror.org/012zmcc30" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "Child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "TBM-Core", + "type": "Child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Centre d’Investigation Clinique des Hôpitaux Universitaires de Strasbourg", + "type": "Child", + "id": "https://ror.org/03zsnyg10" + }, + { + "label": "Bordeaux Imaging Center", + "type": "Child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "Child", + "id": "https://ror.org/034bena10" + }, + { + "label": "RMeS - Regenerative Medicine and Skeleton", + "type": "Child", + "id": "https://ror.org/025agbr41" + }, + { + "label": "Pharmacologie des anti-infectieux et antibiorésistance", + "type": "Child", + "id": "https://ror.org/041v99f68" + }, + { + "label": "Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau", + "type": "Child", + "id": "https://ror.org/040d87505" + }, + { + "label": "Ischémie Reperfusion, Métabolisme et Inflammation Stérile en Transplantation", + "type": "Child", + "id": "https://ror.org/05kkw6065" + }, + { + "label": "Laboratoire de Neurosciences Expérimentales et Cliniques", + "type": "Child", + "id": "https://ror.org/04rfxk768" + }, + { + "label": "Anti-infectieux : supports moléculaires des résistances et innovations thérapeutiques", + "type": "Child", + "id": "https://ror.org/0458p8g61" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "Child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "Centre d'Étude des Pathologies Respiratoires", + "type": "Child", + "id": "https://ror.org/01vxptj17" + }, + { + "label": "Groupe de Recherches sur l’Analyse Multimodale de la Fonction Cérébrale", + "type": "Child", + "id": "https://ror.org/02a9mrq41" + }, + { + "label": "Plateforme d'information et de services pour les maladies rares et les médicaments orphelins", + "type": "Child", + "id": "https://ror.org/05thj7870" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "Child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "Child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre de Recherche Épidémiologie et Statistique", + "type": "Child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Anti-microbiens, Modélisation, Evolution", + "type": "Child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "Child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Organisation Nucléaire et Oncogenèse", + "type": "Child", + "id": "https://ror.org/05q8d3662" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "Child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "Child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Pathogenèse des infections vasculaires", + "type": "Child", + "id": "https://ror.org/00gjnk018" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "Child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Maladies Rares: Génétique et Métabolisme", + "type": "Child", + "id": "https://ror.org/01wvg5605" + }, + { + "label": "Research on healthcare performance", + "type": "Child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "Child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "Child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Physiopathologie et imagerie des troubles neurologiques", + "type": "Child", + "id": "https://ror.org/00vsvph51" + }, + { + "label": "Neuropsychologie et Imagerie de la Mémoire Humaine", + "type": "Child", + "id": "https://ror.org/04f6tkx67" + }, + { + "label": "Mobilités: Vieillissement, Pathologie, Santé", + "type": "Child", + "id": "https://ror.org/028rasm92" + }, + { + "label": "Imagerie Moléculaire et Stratégies Théranostiques", + "type": "Child", + "id": "https://ror.org/03y61y350" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "Child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "Child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Laboratoire d'imagerie translationnelle en oncologie", + "type": "Child", + "id": "https://ror.org/05qy9ka59" + }, + { + "label": "RESTORE", + "type": "Child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "Child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Génomique fonctionnelle comparative", + "type": "Child", + "id": "https://ror.org/016nv8j08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "Child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "L’Inserm dans Paris et l’Île-de-France Centre Nord", + "type": "Child", + "id": "https://ror.org/00jyt4d57" + }, + { + "label": "Défaillance Cardiovasculaire Aiguë et Chronique", + "type": "Child", + "id": "https://ror.org/05ft9wv42" + }, + { + "label": "Nutrition-Génétique et Exposition aux Risques Environnementaux", + "type": "Child", + "id": "https://ror.org/053d03003" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "Child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "The Enteric Nervous System in Gut and Brain Disorders", + "type": "Child", + "id": "https://ror.org/01kbkse74" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "Child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "Child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "Child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "Child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénierie des Connaissances en e-Santé", + "type": "Child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "Child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "PremUP", + "type": "Child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "Child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "Child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "Child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "Child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Infection et inflammation", + "type": "Child", + "id": "https://ror.org/021sh3243" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Laboratoire physiopathologie et pharmacologie clinique de la douleur", + "type": "Child", + "id": "https://ror.org/02k243t26" + }, + { + "label": "Handicap neuromusculaire : Physiopathologie, Biothérapie et Pharmacologie appliquées", + "type": "Child", + "id": "https://ror.org/02nxezb95" + }, + { + "label": "COMETE - Mobilités : Vieillissement, pathologie, santé", + "type": "Child", + "id": "https://ror.org/018z38380" + }, + { + "label": "Endothélium, valvulopathies et insuffisance cardiaque", + "type": "Child", + "id": "https://ror.org/017ed2k28" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/035gq6r08" + }, + { + "label": "Center for Research in Transplantation and Translational Immunology", + "type": "Child", + "id": "https://ror.org/01165k395" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "methodS in Patient-centered outcomes and HEalth ResEarch", + "type": "Child", + "id": "https://ror.org/013m8h627" + }, + { + "label": "Translational Research in Gene Therapy", + "type": "Child", + "id": "https://ror.org/02tg88m31" + }, + { + "label": "Dynamique Microbienne associée aux Infections Urinaires et Respiratoires", + "type": "Child", + "id": "https://ror.org/01a6c6c20" + }, + { + "label": "Génomique du cancer et du cerveau", + "type": "Child", + "id": "https://ror.org/05k71g406" + }, + { + "label": "Unité de recherche interdisciplinaire pour la prévention et le traitement des cancers", + "type": "Child", + "id": "https://ror.org/04b8tg719" + }, + { + "label": "Neuroendocrine, Endocrine and Germinal Differentiation Communication", + "type": "Child", + "id": "https://ror.org/02yvdat18" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "Child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "Child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "Child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Neuroscience et Psychiatrie Translationnelle de Strasbourg", + "type": "Child", + "id": "https://ror.org/05dd6kb95" + }, + { + "label": "Immuno-Rhumathologie moléculaire", + "type": "Child", + "id": "https://ror.org/03k7yrw82" + }, + { + "label": "Laboratoire de Génétique Médicale", + "type": "Child", + "id": "https://ror.org/016wpzq40" + }, + { + "label": "CIC Rennes", + "type": "Child", + "id": "https://ror.org/02baj6743" + }, + { + "label": "UMS BioCore", + "type": "Child", + "id": "https://ror.org/04r5nwv94" + }, + { + "label": "Brain Tech Laboratory", + "type": "Child", + "id": "https://ror.org/01027m165" + }, + { + "label": "Laboratoire Biologie et Biotechnologie pour la Santé", + "type": "Child", + "id": "https://ror.org/0557vhy43" + }, + { + "label": "Hypoxie et Physiopathologies cardiovasculaires et respiratoires", + "type": "Child", + "id": "https://ror.org/0459x4g44" + }, + { + "label": "Haute Technologie Animale Grenobloise", + "type": "Child", + "id": "https://ror.org/03vyv3y87" + }, + { + "label": "Laboratoire Biosciences et bioingénierie pour la Santé", + "type": "Child", + "id": "https://ror.org/039j4x695" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inserm.fr" + ], + "aliases": [], + "acronyms": [ + "INSERM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Inserm", + "labels": [ + { + "label": "French Institute of Health and Medical Research", + "iso639": "en" + }, + { + "label": "Institut National de la Santé et de la Recherche Médicale", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.7429.8", + "preferred": "grid.7429.8" + }, + "ISNI": { + "all": [ + "0000 0001 2186 6389" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1474517" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02vnq7240.json b/v1.49/v1/02vnq7240.json new file mode 100644 index 000000000..7971a1a9b --- /dev/null +++ b/v1.49/v1/02vnq7240.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/02vnq7240", + "name": "Laboratoire Magmas et Volcans", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université Jean Monnet", + "type": "Parent", + "id": "https://ror.org/04yznqr36" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + }, + { + "label": "Observatoire de Physique du Globe de Clermont-Ferrand", + "type": "Parent", + "id": "https://ror.org/01bch8q67" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lmv.univ-bpclermont.fr/en/" + ], + "aliases": [], + "acronyms": [ + "LMV", + "UMR LMV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463966.8", + "preferred": "grid.463966.8" + }, + "ISNI": { + "all": [ + "0000 0004 0386 1420" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02vtmh618.json b/v1.49/v1/02vtmh618.json new file mode 100644 index 000000000..e2298acf5 --- /dev/null +++ b/v1.49/v1/02vtmh618.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/02vtmh618", + "name": "Foreign and Commonwealth Office", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Official Development Assistance", + "type": "Child", + "id": "https://ror.org/009twqt47" + }, + { + "label": "Government of the United Kingdom", + "type": "Parent", + "id": "https://ror.org/05wnh3t63" + }, + { + "label": "Foreign, Commonwealth & Development Office", + "type": "Successor", + "id": "https://ror.org/037wke960" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gov.uk/government/organisations/foreign-commonwealth-office" + ], + "aliases": [ + "Foreign Office" + ], + "acronyms": [ + "FCO" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Foreign_and_Commonwealth_Office", + "labels": [ + { + "label": "Y Swyddfa Dramor a Chymanwlad", + "iso639": "cy" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.421514.7", + "preferred": "grid.421514.7" + }, + "ISNI": { + "all": [ + "0000 0004 0421 7848" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02vwv4x74.json b/v1.49/v1/02vwv4x74.json new file mode 100644 index 000000000..b8646100a --- /dev/null +++ b/v1.49/v1/02vwv4x74.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02vwv4x74", + "name": "Ohio Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 39.96118, + "lng": -82.99879, + "state": null, + "state_code": null, + "city": "Columbus", + "geonames_city": { + "id": 4509177, + "city": "Columbus", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ohiohumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447249.8", + "preferred": "grid.447249.8" + }, + "ISNI": { + "all": [ + "0000 0004 5906 3655" + ], + "preferred": "0000 0004 5906 3655" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02w8awt17.json b/v1.49/v1/02w8awt17.json new file mode 100644 index 000000000..a674fc0ee --- /dev/null +++ b/v1.49/v1/02w8awt17.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02w8awt17", + "name": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École nationale supérieure d'arts et métiers", + "type": "Parent", + "id": "https://ror.org/018pp1107" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Office National d'Études et de Recherches Aérospatiales", + "type": "Parent", + "id": "https://ror.org/005y2ap84" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "École Centrale de Lille", + "type": "Parent", + "id": "https://ror.org/01x441g73" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lmfl.cnrs.fr/en/home/" + ], + "aliases": [], + "acronyms": [ + "LCFC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Lille Fluid Mechanics Laboratory - Kampé de Fériet", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.510389.6", + "preferred": "grid.510389.6" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02wgtm643.json b/v1.49/v1/02wgtm643.json new file mode 100644 index 000000000..323ceaea3 --- /dev/null +++ b/v1.49/v1/02wgtm643.json @@ -0,0 +1,131 @@ +{ + "id": "https://ror.org/02wgtm643", + "name": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Rennes 2", + "type": "Parent", + "id": "https://ror.org/01m84wm78" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Nantes Université", + "type": "Parent", + "id": "https://ror.org/03gnr7b55" + }, + { + "label": "Le Mans Université", + "type": "Parent", + "id": "https://ror.org/01mtcc283" + }, + { + "label": "Ministère de la Culture", + "type": "Parent", + "id": "https://ror.org/017rnyz40" + }, + { + "label": "Institut National de Recherches Archéologiques Préventives", + "type": "Parent", + "id": "https://ror.org/04andmq85" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "Parent", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://creaah.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CReAAH", + "UMR CReAAH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2159 0685" + ], + "preferred": "0000 0001 2159 0685" + }, + "Wikidata": { + "all": [ + "Q51782356" + ], + "preferred": "Q51782356" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02wm3rq58.json b/v1.49/v1/02wm3rq58.json new file mode 100644 index 000000000..90e56dcdd --- /dev/null +++ b/v1.49/v1/02wm3rq58.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02wm3rq58", + "name": "Sociedad de Lucha Contra el Cáncer del Ecuador", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": -2.19616, + "lng": -79.88621, + "state": null, + "state_code": null, + "city": "Guayaquil", + "geonames_city": { + "id": 3657509, + "city": "Guayaquil", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.solca.med.ec" + ], + "aliases": [ + "SOLCA - Guayaquil", + "Society to Fight Cancer" + ], + "acronyms": [ + "SOLCA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Sociedad_de_Lucha_Contra_el_Cancer", + "labels": [], + "country": { + "country_name": "Ecuador", + "country_code": "EC" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9905 0083" + ], + "preferred": "0000 0000 9905 0083" + }, + "Wikidata": { + "all": [ + "Q7551895" + ], + "preferred": "Q7551895" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02wmc6m46.json b/v1.49/v1/02wmc6m46.json new file mode 100644 index 000000000..fa595b7a9 --- /dev/null +++ b/v1.49/v1/02wmc6m46.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02wmc6m46", + "name": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Jean Monnet", + "type": "Parent", + "id": "https://ror.org/04yznqr36" + }, + { + "label": "Université Jean Moulin Lyon III", + "type": "Parent", + "id": "https://ror.org/05b5c0584" + }, + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ihrim.ens-lyon.fr/" + ], + "aliases": [], + "acronyms": [ + "IHRIM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482740.d", + "preferred": "grid.482740.d" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02wnqcb97.json b/v1.49/v1/02wnqcb97.json new file mode 100644 index 000000000..32b8bda64 --- /dev/null +++ b/v1.49/v1/02wnqcb97.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02wnqcb97", + "name": "National Health Service", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Department of Health and Social Care", + "type": "Parent", + "id": "https://ror.org/03sbpja79" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nhs.uk/" + ], + "aliases": [], + "acronyms": [ + "NHS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Health_Service", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.451052.7", + "preferred": "grid.451052.7" + }, + "ISNI": { + "all": [ + "0000 0004 0581 2008" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16251481" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02wxq9k17.json b/v1.49/v1/02wxq9k17.json new file mode 100644 index 000000000..fd7880da0 --- /dev/null +++ b/v1.49/v1/02wxq9k17.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/02wxq9k17", + "name": "Claremont School of Theology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.05223, + "lng": -118.24368, + "state": null, + "state_code": null, + "city": "Los Angeles", + "geonames_city": { + "id": 5368361, + "city": "Los Angeles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cst.edu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Claremont_School_of_Theology", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0389 9090" + ], + "preferred": "0000 0004 0389 9090" + }, + "Wikidata": { + "all": [ + "Q5126331" + ], + "preferred": "Q5126331" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02wzg8t73.json b/v1.49/v1/02wzg8t73.json new file mode 100644 index 000000000..44a1b5ba3 --- /dev/null +++ b/v1.49/v1/02wzg8t73.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/02wzg8t73", + "name": "Centre d’Etudes Politiques Et sociaLes", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cepel.edu.umontpellier.fr/" + ], + "aliases": [ + "South European Center for Political Studies" + ], + "acronyms": [ + "CEPEL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre d'Etudes Politiques de l'Europe Latine", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503083.d", + "preferred": "grid.503083.d" + }, + "ISNI": { + "all": [ + "0000 0001 2323 7754" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51783902" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02x2d4k59.json b/v1.49/v1/02x2d4k59.json new file mode 100644 index 000000000..51780a9a8 --- /dev/null +++ b/v1.49/v1/02x2d4k59.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/02x2d4k59", + "name": "Pfizer Health Research Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.health-research.or.jp" + ], + "aliases": [ + "公益財団法人ファイザーヘルスリサーチ振興財団" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q11331839" + ], + "preferred": "Q11331839" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02xnnng09.json b/v1.49/v1/02xnnng09.json new file mode 100644 index 000000000..9ed5eed8f --- /dev/null +++ b/v1.49/v1/02xnnng09.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/02xnnng09", + "name": "Laboratoire de Génie Électrique et Électronique de Paris", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.centralesupelec.fr/fr/geeps-group-electrical-engineering-paris" + ], + "aliases": [ + "Group of Electrical Engineering - Paris", + "Group of Electrical Engineering - Paris Laboratory" + ], + "acronyms": [ + "GeePs" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462965.a", + "preferred": "grid.462965.a" + }, + "ISNI": { + "all": [ + "0000 0004 0390 3862" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261615" + ], + "preferred": "Q30261615" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02xqgcz97.json b/v1.49/v1/02xqgcz97.json new file mode 100644 index 000000000..ad3267bcc --- /dev/null +++ b/v1.49/v1/02xqgcz97.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02xqgcz97", + "name": "Masdar Institute of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.45118, + "lng": 54.39696, + "state": null, + "state_code": null, + "city": "Abu Dhabi", + "geonames_city": { + "id": 292968, + "city": "Abu Dhabi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www2.masdar.ac.ae" + ], + "aliases": [ + "Masdar Institute" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Masdar_Institute", + "labels": [], + "country": { + "country_name": "United Arab Emirates", + "country_code": "AE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q4117960" + ], + "preferred": "Q4117960" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02y0gk295.json b/v1.49/v1/02y0gk295.json new file mode 100644 index 000000000..5927849e1 --- /dev/null +++ b/v1.49/v1/02y0gk295.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/02y0gk295", + "name": "Centre de Recherche sur les Ions, les Matériaux et la Photonique", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université de Caen Normandie", + "type": "Parent", + "id": "https://ror.org/051kpcy16" + }, + { + "label": "École Nationale Supérieure d'Ingénieurs de Caen", + "type": "Parent", + "id": "https://ror.org/01fpqqe90" + } + ], + "addresses": [ + { + "lat": 49.18585, + "lng": -0.35912, + "state": null, + "state_code": null, + "city": "Caen", + "geonames_city": { + "id": 3029241, + "city": "Caen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://cimap.ensicaen.fr/?lang=en" + ], + "aliases": [], + "acronyms": [ + "CIMAP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462794.a", + "preferred": "grid.462794.a" + }, + "ISNI": { + "all": [ + "0000 0004 0385 9208" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261559" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02y7p0749.json b/v1.49/v1/02y7p0749.json new file mode 100644 index 000000000..a00b69f92 --- /dev/null +++ b/v1.49/v1/02y7p0749.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02y7p0749", + "name": "Ministry of Health", + "email_address": null, + "ip_addresses": [], + "established": 1953, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Instituto Nacional de Traumatologia e Ortopedia", + "type": "Child", + "id": "https://ror.org/05nyf1y15" + } + ], + "addresses": [ + { + "lat": -15.77972, + "lng": -47.92972, + "state": null, + "state_code": null, + "city": "Brasília", + "geonames_city": { + "id": 3469058, + "city": "Brasília", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gov.br/saude/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Minist%C3%A9rio_da_Sa%C3%BAde_(Brasil)", + "labels": [ + { + "label": "Ministério da Saúde", + "iso639": "pt" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "GRID": { + "all": "grid.414596.b", + "preferred": "grid.414596.b" + }, + "ISNI": { + "all": [ + "0000 0004 0602 9808" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6867090" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02y802x14.json b/v1.49/v1/02y802x14.json new file mode 100644 index 000000000..ef0255a69 --- /dev/null +++ b/v1.49/v1/02y802x14.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02y802x14", + "name": "Korea Display Research Corporation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.58333, + "lng": 127, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835847, + "city": "Seoul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Korea Display Research Consortium" + ], + "acronyms": [ + "KDRC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02yd1yr68.json b/v1.49/v1/02yd1yr68.json new file mode 100644 index 000000000..1ea662ea8 --- /dev/null +++ b/v1.49/v1/02yd1yr68.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02yd1yr68", + "name": "Jinzhou Medical University", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.10778, + "lng": 121.14167, + "state": null, + "state_code": null, + "city": "Jinzhou", + "geonames_city": { + "id": 2036427, + "city": "Jinzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.jzmu.edu.cn" + ], + "aliases": [ + "Liaoning Medical University", + "Liáoníng Yīxuéyuàn", + "辽宁医学院" + ], + "acronyms": [ + "JZMU", + "LMU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Liaoning_Medical_University", + "labels": [ + { + "label": "锦州医科大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.454145.5", + "preferred": "grid.454145.5" + }, + "ISNI": { + "all": [ + "0000 0000 9860 0426" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6540147", + "Q6202901" + ], + "preferred": "Q6540147" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02yknsc93.json b/v1.49/v1/02yknsc93.json new file mode 100644 index 000000000..3408d35cb --- /dev/null +++ b/v1.49/v1/02yknsc93.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02yknsc93", + "name": "McCoy College of Education", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.28835, + "lng": -2.60889, + "state": null, + "state_code": null, + "city": "Nadowli", + "geonames_city": { + "id": 7647177, + "city": "Nadowli", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mccoycoe.edu.gh" + ], + "aliases": [ + "McCoy COE" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q126911819" + ], + "preferred": "Q126911819" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02ysgwq33.json b/v1.49/v1/02ysgwq33.json new file mode 100644 index 000000000..50345adb7 --- /dev/null +++ b/v1.49/v1/02ysgwq33.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02ysgwq33", + "name": "Institut Pasteur de Dakar", + "email_address": null, + "ip_addresses": [], + "established": 1923, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 14.6937, + "lng": -17.44406, + "state": null, + "state_code": null, + "city": "Dakar", + "geonames_city": { + "id": 2253354, + "city": "Dakar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur.sn/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Senegal", + "country_code": "SN" + }, + "external_ids": { + "GRID": { + "all": "grid.418508.0", + "preferred": "grid.418508.0" + }, + "ISNI": { + "all": [ + "0000 0001 1956 9596" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02yv7k107.json b/v1.49/v1/02yv7k107.json new file mode 100644 index 000000000..7c7228f2f --- /dev/null +++ b/v1.49/v1/02yv7k107.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02yv7k107", + "name": "Wesley College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1922, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Kwame Nkrumah University of Science and Technology", + "type": "Related", + "id": "https://ror.org/00cb23x68" + } + ], + "addresses": [ + { + "lat": 6.68848, + "lng": -1.62443, + "state": null, + "state_code": null, + "city": "Kumasi", + "geonames_city": { + "id": 2298890, + "city": "Kumasi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.wesco.edu.gh" + ], + "aliases": [], + "acronyms": [ + "WESCO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Wesley_College_of_Education%2C_Kumasi", + "labels": [ + { + "label": "Kwalejin Ilimi ta Wesley", + "iso639": "ha" + } + ], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q7983889" + ], + "preferred": "Q7983889" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02yvha224.json b/v1.49/v1/02yvha224.json new file mode 100644 index 000000000..102a9762c --- /dev/null +++ b/v1.49/v1/02yvha224.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02yvha224", + "name": "Centre pour les humanités numériques et l'histoire de la justice", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Ministère de la Justice", + "type": "Parent", + "id": "https://ror.org/02ggnyt49" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://clamor.criminocorpus.org" + ], + "aliases": [], + "acronyms": [ + "CLAMOR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q23199340" + ], + "preferred": "Q23199340" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02z1r3k29.json b/v1.49/v1/02z1r3k29.json new file mode 100644 index 000000000..0879cf20b --- /dev/null +++ b/v1.49/v1/02z1r3k29.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02z1r3k29", + "name": "St. Ambrose College of Education", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Cape Coast", + "type": "Related", + "id": "https://ror.org/0492nfe34" + } + ], + "addresses": [ + { + "lat": 7.3, + "lng": -2.7, + "state": null, + "state_code": null, + "city": "Dormaa East", + "geonames_city": { + "id": 7648973, + "city": "Dormaa East", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sace.edu.gh" + ], + "aliases": [ + "Saint Ambrose College of Education" + ], + "acronyms": [ + "SACE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Ambrose_College_of_Education", + "labels": [ + { + "label": "Kwalejin Ilimi ta St. Ambrose", + "iso639": "ha" + } + ], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996983" + ], + "preferred": "Q46996983" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02z1xqy79.json b/v1.49/v1/02z1xqy79.json new file mode 100644 index 000000000..9216b7207 --- /dev/null +++ b/v1.49/v1/02z1xqy79.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02z1xqy79", + "name": "Al-Faruq College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University for Development Studies", + "type": "Related", + "id": "https://ror.org/052nhnq73" + } + ], + "addresses": [ + { + "lat": 7.73855, + "lng": -2.1036, + "state": null, + "state_code": null, + "city": "Wankyi", + "geonames_city": { + "id": 2294086, + "city": "Wankyi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://afcoe.edu.gh" + ], + "aliases": [], + "acronyms": [ + "AFCOE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Al-Faruq_College_of_Education", + "labels": [ + { + "label": "Al-Faruq taʼlim kolleji", + "iso639": "uz" + }, + { + "label": "كلية الفاروق للتربية", + "iso639": "ar" + } + ], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q77924246" + ], + "preferred": "Q77924246" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02z8yps18.json b/v1.49/v1/02z8yps18.json new file mode 100644 index 000000000..ac51b4836 --- /dev/null +++ b/v1.49/v1/02z8yps18.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02z8yps18", + "name": "Laboratoire de génie des procédés pour la bioraffinerie, les matériaux bio-sourcés et l’impression fonctionnelle", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lgp2.grenoble-inp.fr" + ], + "aliases": [ + "Laboratoire Génie des Procédés Papetiers", + "Laboratory of Pulp and Paper Science and Graphic Arts" + ], + "acronyms": [ + "LGP2" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503355.5", + "preferred": "grid.503355.5" + }, + "ISNI": { + "all": [ + "0000 0004 0384 3417" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51784359" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02zeryz43.json b/v1.49/v1/02zeryz43.json new file mode 100644 index 000000000..b8581085b --- /dev/null +++ b/v1.49/v1/02zeryz43.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02zeryz43", + "name": "Wyle (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "KBR (United States)", + "type": "Successor", + "id": "https://ror.org/01g1xae87" + } + ], + "addresses": [ + { + "lat": 33.91918, + "lng": -118.41647, + "state": null, + "state_code": null, + "city": "El Segundo", + "geonames_city": { + "id": 5345860, + "city": "El Segundo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kbr.com/markets/government/kbr-wyle/" + ], + "aliases": [ + "KBRwyle" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Wyle_Laboratories", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.420049.b", + "preferred": "grid.420049.b" + }, + "ISNI": { + "all": [ + "0000 0001 0152 412X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q8039905" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/02zj7b759.json b/v1.49/v1/02zj7b759.json new file mode 100644 index 000000000..8a689039d --- /dev/null +++ b/v1.49/v1/02zj7b759.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02zj7b759", + "name": "Australian Plant Phenomics Network", + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.plantphenomics.org.au" + ], + "aliases": [ + "Australian Plant Phenomics Facility" + ], + "acronyms": [ + "APPF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Australian Plant Phenomics Facility", + "iso639": "en" + } + ], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02zm1vy19.json b/v1.49/v1/02zm1vy19.json new file mode 100644 index 000000000..30dfafdaa --- /dev/null +++ b/v1.49/v1/02zm1vy19.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02zm1vy19", + "name": "Catavento Instituto", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -12.97563, + "lng": -38.49096, + "state": null, + "state_code": null, + "city": "Salvador", + "geonames_city": { + "id": 3450554, + "city": "Salvador", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://cataventoinstituto.com.br" + ], + "aliases": [ + "Catavento Instituto - Ensino para melhor assistência em Psicologia Hospitalar" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/02zv2b697.json b/v1.49/v1/02zv2b697.json new file mode 100644 index 000000000..626773d54 --- /dev/null +++ b/v1.49/v1/02zv2b697.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/02zv2b697", + "name": "Tecnológico de Estudios Superiores de Valle de Bravo", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.19501, + "lng": -100.13132, + "state": null, + "state_code": null, + "city": "Valle de Bravo", + "geonames_city": { + "id": 3980621, + "city": "Valle de Bravo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tesvb.edomex.gob.mx" + ], + "aliases": [ + "TES Valle de Bravo", + "TecNM Valle de Bravo", + "Tecnológico Nacional de México de Valle de Bravo" + ], + "acronyms": [ + "TESVB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/0300mzg60.json b/v1.49/v1/0300mzg60.json new file mode 100644 index 000000000..5186d2e83 --- /dev/null +++ b/v1.49/v1/0300mzg60.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/0300mzg60", + "name": "Integrated Genomics and Metabolic Diseases Modeling", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Parent", + "id": "https://ror.org/05k9skc85" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www-good.ibl.fr/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Genomique et Physiologie Moleculaire des Maladies Metaboliques", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463858.4", + "preferred": "grid.463858.4" + }, + "ISNI": { + "all": [ + "0000 0004 0370 6893" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0305eqz85.json b/v1.49/v1/0305eqz85.json new file mode 100644 index 000000000..719604c11 --- /dev/null +++ b/v1.49/v1/0305eqz85.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/0305eqz85", + "name": "Gbewaa College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Ghana", + "type": "Related", + "id": "https://ror.org/01r22mr83" + } + ], + "addresses": [ + { + "lat": 11.06872, + "lng": -0.10522, + "state": null, + "state_code": null, + "city": "Pusiga", + "geonames_city": { + "id": 12105116, + "city": "Pusiga", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://gbce.edu.gh" + ], + "aliases": [ + "Government Training College Pusiga" + ], + "acronyms": [ + "GBCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gbewaa_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996970" + ], + "preferred": "Q46996970" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/030e1gk87.json b/v1.49/v1/030e1gk87.json new file mode 100644 index 000000000..7fddf47de --- /dev/null +++ b/v1.49/v1/030e1gk87.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/030e1gk87", + "name": "Byrd Polar and Climate Research Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "The Ohio State University", + "type": "Parent", + "id": "https://ror.org/00rs6vg23" + } + ], + "addresses": [ + { + "lat": 39.96118, + "lng": -82.99879, + "state": null, + "state_code": null, + "city": "Columbus", + "geonames_city": { + "id": 4509177, + "city": "Columbus", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://byrd.osu.edu" + ], + "aliases": [], + "acronyms": [ + "BPCRC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5004232" + ], + "preferred": "Q5004232" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/030ewzw66.json b/v1.49/v1/030ewzw66.json new file mode 100644 index 000000000..bd12f97a1 --- /dev/null +++ b/v1.49/v1/030ewzw66.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/030ewzw66", + "name": "Institut de l'Ouest : Droit et Europe", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iode.univ-rennes.fr" + ], + "aliases": [], + "acronyms": [ + "IODE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Western Institute of Law and Europe", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503202.6", + "preferred": "grid.503202.6" + }, + "ISNI": { + "all": [ + "0000 0001 0519 7461" + ], + "preferred": "0000 0001 0519 7461" + }, + "Wikidata": { + "all": [ + "Q51779929" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/030mmee62.json b/v1.49/v1/030mmee62.json new file mode 100644 index 000000000..4110f1cc4 --- /dev/null +++ b/v1.49/v1/030mmee62.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/030mmee62", + "name": "University of Fada N'gourma", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.06157, + "lng": 0.35843, + "state": null, + "state_code": null, + "city": "Fada N'gourma", + "geonames_city": { + "id": 2360886, + "city": "Fada N'gourma", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "University de Fada" + ], + "acronyms": [ + "UDFG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Université de Fada N'gourma", + "iso639": "fr" + }, + { + "label": "Université de Fada-Ngourma", + "iso639": "fr" + } + ], + "country": { + "country_name": "Burkina Faso", + "country_code": "BF" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q126960902" + ], + "preferred": "Q126960902" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/030vwjb30.json b/v1.49/v1/030vwjb30.json new file mode 100644 index 000000000..5bb1d3e45 --- /dev/null +++ b/v1.49/v1/030vwjb30.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/030vwjb30", + "name": "Genopolys", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.genopolys.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782087" + ], + "preferred": "Q51782087" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/031g0x021.json b/v1.49/v1/031g0x021.json new file mode 100644 index 000000000..3ad809ef2 --- /dev/null +++ b/v1.49/v1/031g0x021.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/031g0x021", + "name": "Jasikan College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.40941, + "lng": 0.46771, + "state": null, + "state_code": null, + "city": "Jasikan", + "geonames_city": { + "id": 2300178, + "city": "Jasikan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "JASICO", + "JCoE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Jasikan_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996972" + ], + "preferred": "Q46996972" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/031j0at32.json b/v1.49/v1/031j0at32.json new file mode 100644 index 000000000..3ff72da2e --- /dev/null +++ b/v1.49/v1/031j0at32.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/031j0at32", + "name": "Beibu Gulf University", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Beibu Gulf University", + "type": "Successor", + "id": "https://ror.org/01dq3qq95" + } + ], + "addresses": [ + { + "lat": 21.98247, + "lng": 108.65061, + "state": null, + "state_code": null, + "city": "Qinzhou", + "geonames_city": { + "id": 1797551, + "city": "Qinzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.bbgu.edu.cn/" + ], + "aliases": [ + "Qinzhou College" + ], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [ + { + "label": "北部湾大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.508037.9", + "preferred": "grid.508037.9" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/031jmyr19.json b/v1.49/v1/031jmyr19.json new file mode 100644 index 000000000..7c455e750 --- /dev/null +++ b/v1.49/v1/031jmyr19.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/031jmyr19", + "name": "Odisha University of Technology and Research", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.27241, + "lng": 85.83385, + "state": null, + "state_code": null, + "city": "Bhubaneswar", + "geonames_city": { + "id": 1275817, + "city": "Bhubaneswar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.outr.ac.in" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Odisha_University_of_Technology_and_Research", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/031y0x195.json b/v1.49/v1/031y0x195.json new file mode 100644 index 000000000..aed6c8e38 --- /dev/null +++ b/v1.49/v1/031y0x195.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/031y0x195", + "name": "Bacterial RNAs & Medicine", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://biochpharma.univ-rennes.fr" + ], + "aliases": [ + "ARN Régulateurs bactériens et médecine", + "Bacterial Regulatory RNAs and Medicine" + ], + "acronyms": [ + "BRM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/031zpdg16.json b/v1.49/v1/031zpdg16.json new file mode 100644 index 000000000..07f919bad --- /dev/null +++ b/v1.49/v1/031zpdg16.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/031zpdg16", + "name": "Minnesota Children's Museum", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.94441, + "lng": -93.09327, + "state": null, + "state_code": null, + "city": "Saint Paul", + "geonames_city": { + "id": 5045360, + "city": "Saint Paul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mcm.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Minnesota_Children%27s_Museum", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.487667.c", + "preferred": "grid.487667.c" + }, + "ISNI": { + "all": [ + "0000 0004 0490 1025" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6868186" + ], + "preferred": "Q6868186" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/032jsmy36.json b/v1.49/v1/032jsmy36.json new file mode 100644 index 000000000..507f04e16 --- /dev/null +++ b/v1.49/v1/032jsmy36.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/032jsmy36", + "name": "Nippon Life Insurance Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 34.69087, + "lng": 135.50221, + "state": null, + "state_code": null, + "city": "Imabashi", + "geonames_city": { + "id": 11818472, + "city": "Imabashi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nihonseimei-zaidan.or.jp" + ], + "aliases": [ + "Nihon Seimei Zaidan", + "日本生命財団" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "公益財団法人日本生命財団", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7690 2502" + ], + "preferred": "0000 0004 7690 2502" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/032k75171.json b/v1.49/v1/032k75171.json new file mode 100644 index 000000000..e71bf1f41 --- /dev/null +++ b/v1.49/v1/032k75171.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/032k75171", + "name": "Carnot Institute Qualiment", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Le réseau des Carnot", + "type": "Parent", + "id": "https://ror.org/0452y0518" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.instituts-carnot.eu/en/carnot-institute/qualiment" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Carnot Qualiment", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.488886.2", + "preferred": "grid.488886.2" + }, + "Wikidata": { + "all": [ + "Q50035265" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/032m0qa86.json b/v1.49/v1/032m0qa86.json new file mode 100644 index 000000000..7c289ed0d --- /dev/null +++ b/v1.49/v1/032m0qa86.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/032m0qa86", + "name": "Louisiana Endowment for the Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 29.95465, + "lng": -90.07507, + "state": null, + "state_code": null, + "city": "New Orleans", + "geonames_city": { + "id": 4335045, + "city": "New Orleans", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.leh.org/" + ], + "aliases": [], + "acronyms": [ + "LEH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446967.e", + "preferred": "grid.446967.e" + }, + "ISNI": { + "all": [ + "0000 0001 1395 8099" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/032v67m28.json b/v1.49/v1/032v67m28.json new file mode 100644 index 000000000..5f914f647 --- /dev/null +++ b/v1.49/v1/032v67m28.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/032v67m28", + "name": "UMR Transfrontalière BioEcoAgro", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Liège", + "type": "Parent", + "id": "https://ror.org/00afp2z80" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + }, + { + "label": "Institut Catholique d'Arts et Métiers", + "type": "Related", + "id": "https://ror.org/02jj4jf83" + }, + { + "label": "Université d'Artois", + "type": "Related", + "id": "https://ror.org/053x9s498" + }, + { + "label": "Université du littoral côte d'opale", + "type": "Related", + "id": "https://ror.org/02gdcg342" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bioecoagro.eu/umrt-bioecoagro_fre/" + ], + "aliases": [ + "BioEcoAgro" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/032vkvz43.json b/v1.49/v1/032vkvz43.json new file mode 100644 index 000000000..69bb2e273 --- /dev/null +++ b/v1.49/v1/032vkvz43.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/032vkvz43", + "name": "State Organization \"Institute of Market and Economic&Ecological Researches of NAS of Ukraine\"", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.48572, + "lng": 30.74383, + "state": null, + "state_code": null, + "city": "Odesa", + "geonames_city": { + "id": 698740, + "city": "Odesa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://impeer.org.ua" + ], + "aliases": [ + "Інститут проблем ринку та економіко-екологічних досліджень НАН України", + "Одеське відділення Інституту економіки АН України" + ], + "acronyms": [ + "IMEER NASU" + ], + "status": "active", + "wikipedia_url": "https://uk.wikipedia.org/wiki/Об%27єднаний_інститут_економіки_НАН_України", + "labels": [ + { + "label": "Державна установа \"Інститут ринку і економіко-екологічних досліджень НАН України\"", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/033c46s90.json b/v1.49/v1/033c46s90.json new file mode 100644 index 000000000..c0490a76a --- /dev/null +++ b/v1.49/v1/033c46s90.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/033c46s90", + "name": "Université Européenne de Bretagne", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ueb.eu/versionAnglaiseV2/" + ], + "aliases": [], + "acronyms": [ + "UEB" + ], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/European_University_of_Brittany", + "labels": [ + { + "label": "European University of Brittany", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.412143.1", + "preferred": "grid.412143.1" + }, + "ISNI": { + "all": [ + "0000 0001 2359 716X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3551779" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/033f7da12.json b/v1.49/v1/033f7da12.json new file mode 100644 index 000000000..7723a8643 --- /dev/null +++ b/v1.49/v1/033f7da12.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/033f7da12", + "name": "Dayananda Sagar University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.97194, + "lng": 77.59369, + "state": null, + "state_code": null, + "city": "Bengaluru", + "geonames_city": { + "id": 1277333, + "city": "Bengaluru", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dsu.edu.in" + ], + "aliases": [], + "acronyms": [ + "DSU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Dayananda_Sagar_University", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q22079827" + ], + "preferred": "Q22079827" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/033v1zn65.json b/v1.49/v1/033v1zn65.json new file mode 100644 index 000000000..20728ece7 --- /dev/null +++ b/v1.49/v1/033v1zn65.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/033v1zn65", + "name": "Laboratoire interdisciplinaire Récits Cultures et Sociétés", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/laboratoire-interdisciplinaire-re%CC%81cits-cultures-et-socie%CC%81te%CC%81s-lirces" + ], + "aliases": [], + "acronyms": [ + "LIRCES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785067" + ], + "preferred": "Q51785067" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/033xr5946.json b/v1.49/v1/033xr5946.json new file mode 100644 index 000000000..4c7aa0409 --- /dev/null +++ b/v1.49/v1/033xr5946.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/033xr5946", + "name": "Tecnológico Nacional de México Campus Ciudad Valles", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.99631, + "lng": -99.01093, + "state": null, + "state_code": null, + "city": "Ciudad Valles", + "geonames_city": { + "id": 3483849, + "city": "Ciudad Valles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tecvalles.mx/wp/" + ], + "aliases": [ + "Instituto Tecnológico de Ciudad Valles", + "TecNM Campus Ciudad Valles" + ], + "acronyms": [ + "ITCV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/034gh1d56.json b/v1.49/v1/034gh1d56.json new file mode 100644 index 000000000..d2d55fd14 --- /dev/null +++ b/v1.49/v1/034gh1d56.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/034gh1d56", + "name": "Laboratoire des Sciences de l’Information et de la Communication", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/laboratoire-des-sciences-de-linformation-et-de-la-communication-sic-lab" + ], + "aliases": [ + "Laboratoire SIC", + "SIC Lab", + "SIC Laboratory" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/034m2b326.json b/v1.49/v1/034m2b326.json new file mode 100644 index 000000000..02f36bedf --- /dev/null +++ b/v1.49/v1/034m2b326.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/034m2b326", + "name": "Shahid Beheshti University of Medical Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Imam Hossein Hospital", + "type": "Related", + "id": "https://ror.org/053qhtw56" + }, + { + "label": "Taleghani General Hospital", + "type": "Related", + "id": "https://ror.org/047ae9605" + } + ], + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sbmu.ac.ir" + ], + "aliases": [], + "acronyms": [ + "SBMU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Shahid_Beheshti_University_of_Medical_Sciences", + "labels": [ + { + "label": "دانشگاه علوم پزشکی شهید بهشتی", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "GRID": { + "all": "grid.411600.2", + "preferred": "grid.411600.2" + }, + "Wikidata": { + "all": [ + "Q637387" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/034xqwd07.json b/v1.49/v1/034xqwd07.json new file mode 100644 index 000000000..2a6140b68 --- /dev/null +++ b/v1.49/v1/034xqwd07.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/034xqwd07", + "name": "Kano State Polytechnic", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.00012, + "lng": 8.51672, + "state": null, + "state_code": null, + "city": "Kano", + "geonames_city": { + "id": 2335204, + "city": "Kano", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kanopoly.edu.ng" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kano_State_Polytechnic", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q28401916" + ], + "preferred": "Q28401916" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/035630h07.json b/v1.49/v1/035630h07.json new file mode 100644 index 000000000..c07ff95f5 --- /dev/null +++ b/v1.49/v1/035630h07.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/035630h07", + "name": "Universidade Save", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -23.85972, + "lng": 35.34722, + "state": null, + "state_code": null, + "city": "Maxixe", + "geonames_city": { + "id": 1039536, + "city": "Maxixe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://unisave.ac.mz" + ], + "aliases": [], + "acronyms": [ + "UNISAVE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mozambique", + "country_code": "MZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/035cy3r13.json b/v1.49/v1/035cy3r13.json new file mode 100644 index 000000000..7edc27f6b --- /dev/null +++ b/v1.49/v1/035cy3r13.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/035cy3r13", + "name": "Pasteur Hellenic Institute", + "email_address": null, + "ip_addresses": [], + "established": 1920, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 37.98376, + "lng": 23.72784, + "state": null, + "state_code": null, + "city": "Athens", + "geonames_city": { + "id": 264371, + "city": "Athens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur.gr/?lang=en" + ], + "aliases": [], + "acronyms": [ + "HPI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Greece", + "country_code": "GR" + }, + "external_ids": { + "GRID": { + "all": "grid.418497.7", + "preferred": "grid.418497.7" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/035gq6r08.json b/v1.49/v1/035gq6r08.json new file mode 100644 index 000000000..e0739c7c7 --- /dev/null +++ b/v1.49/v1/035gq6r08.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/035gq6r08", + "name": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.labex-lermit.fr" + ], + "aliases": [ + "LabEx LERMIT" + ], + "acronyms": [ + "LERMIT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Excellence in Research on Medication and Innovative Therapeutics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q124525851" + ], + "preferred": "Q124525851" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/035pbs233.json b/v1.49/v1/035pbs233.json new file mode 100644 index 000000000..354b4c149 --- /dev/null +++ b/v1.49/v1/035pbs233.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/035pbs233", + "name": "Lyon Genou Centre Albert Trillat", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.orthopedie-lyon.fr/" + ], + "aliases": [ + "Albert-Trillat Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.511569.f", + "preferred": "grid.511569.f" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/035xkbk20.json b/v1.49/v1/035xkbk20.json new file mode 100644 index 000000000..77b0e6dae --- /dev/null +++ b/v1.49/v1/035xkbk20.json @@ -0,0 +1,521 @@ +{ + "id": "https://ror.org/035xkbk20", + "name": "Aix-Marseille Université", + "email_address": null, + "ip_addresses": [], + "established": 1409, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire Adhésion et inflammation", + "type": "Child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "Child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Bioénergétique et Ingénierie des Protéines", + "type": "Child", + "id": "https://ror.org/0060xzr04" + }, + { + "label": "Centre de Résonance Magnétique Biologique et Médicale", + "type": "Child", + "id": "https://ror.org/04ceg1205" + }, + { + "label": "Centre de physique des particules de Marseille", + "type": "Child", + "id": "https://ror.org/00fw8bp86" + }, + { + "label": "Centre Camille Jullian", + "type": "Child", + "id": "https://ror.org/050sat078" + }, + { + "label": "Centre Norbert Elias", + "type": "Child", + "id": "https://ror.org/028ycv057" + }, + { + "label": "Centre Paul Albert-Février", + "type": "Child", + "id": "https://ror.org/00wcvf151" + }, + { + "label": "Centre de Physique Théorique", + "type": "Child", + "id": "https://ror.org/052bbtn31" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "Child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "Child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Centre de Recherche et d’Enseignement de Géosciences de l’Environnement", + "type": "Child", + "id": "https://ror.org/01pa4h393" + }, + { + "label": "Centro Internacional Franco-Argentino de Ciencias de la Información y de Sistemas", + "type": "Child", + "id": "https://ror.org/02m19wv39" + }, + { + "label": "Institut de Biologie du Développement Marseille", + "type": "Child", + "id": "https://ror.org/02me5cy06" + }, + { + "label": "Economic & Social Sciences, Health Systems & Medical Informatics", + "type": "Child", + "id": "https://ror.org/0508wny29" + }, + { + "label": "Biodiversité et Biotechnologie Fongiques", + "type": "Child", + "id": "https://ror.org/021x7r354" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Groupement de Recherche en Économie Quantitative d’Aix-Marseille", + "type": "Child", + "id": "https://ror.org/02ek9wp67" + }, + { + "label": "Institut Fresnel", + "type": "Child", + "id": "https://ror.org/03br1wy20" + }, + { + "label": "Institut Pythéas Observatoire des Sciences de l’Univers", + "type": "Child", + "id": "https://ror.org/00f945z63" + }, + { + "label": "Institut Universitaire des Systèmes Thermiques Industriels", + "type": "Child", + "id": "https://ror.org/04bgbbh33" + }, + { + "label": "Institut de Chimie Radicalaire", + "type": "Child", + "id": "https://ror.org/000d5zy28" + }, + { + "label": "Institut de Mathématiques de Marseille", + "type": "Child", + "id": "https://ror.org/042h2y225" + }, + { + "label": "Institut de Neurobiologie de la Méditerranée", + "type": "Child", + "id": "https://ror.org/02jthx987" + }, + { + "label": "Institut de Neurophysiopathologie", + "type": "Child", + "id": "https://ror.org/00w2q5j98" + }, + { + "label": "Institut de Neurosciences de la Timone", + "type": "Child", + "id": "https://ror.org/043hw6336" + }, + { + "label": "Institut de Neurosciences des Systèmes", + "type": "Child", + "id": "https://ror.org/019kqby73" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "Child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Institut de Recherche sur les Phénomènes Hors Équilibre", + "type": "Child", + "id": "https://ror.org/03zq0xc17" + }, + { + "label": "Institut des Matériaux, de Microélectronique et des Nanosciences de Provence", + "type": "Child", + "id": "https://ror.org/0238zyh04" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences Moléculaires de Marseille", + "type": "Child", + "id": "https://ror.org/05xr3b330" + }, + { + "label": "Institut des Sciences du Mouvement Etienne-Jules Marey", + "type": "Child", + "id": "https://ror.org/03tncyc93" + }, + { + "label": "Laboratoire d'Economie et de Sociologie du Travail", + "type": "Child", + "id": "https://ror.org/043xjcd49" + }, + { + "label": "Unité de Neurobiologie des canaux Ioniques et de la Synapse", + "type": "Child", + "id": "https://ror.org/04d3p2m17" + }, + { + "label": "Laboratoire Chimie de l'Environnement", + "type": "Child", + "id": "https://ror.org/02pr0xw82" + }, + { + "label": "Laboratoire Méditerranéen de Préhistoire Europe Afrique", + "type": "Child", + "id": "https://ror.org/011gea244" + }, + { + "label": "Laboratoire Parole et Langage", + "type": "Child", + "id": "https://ror.org/05whq8x35" + }, + { + "label": "Laboratoire de Chimie Bactérienne", + "type": "Child", + "id": "https://ror.org/057zme681" + }, + { + "label": "Laboratoire de Mécanique, Modélisation & Procédés Propres", + "type": "Child", + "id": "https://ror.org/01vrxpt40" + }, + { + "label": "Laboratoire de Psychologie Cognitive", + "type": "Child", + "id": "https://ror.org/01rf5x574" + }, + { + "label": "Laboratoire d’Astrophysique de Marseille", + "type": "Child", + "id": "https://ror.org/00ssy9q55" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "Child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Laboratoire de Mécanique et d’Acoustique", + "type": "Child", + "id": "https://ror.org/03787ar02" + }, + { + "label": "Génétique Médicale & Génomique Fonctionelle", + "type": "Child", + "id": "https://ror.org/04fc8dp24" + }, + { + "label": "Institut Méditerranéen de Biodiversité et d'Ecologie Marine et Continentale", + "type": "Child", + "id": "https://ror.org/0409c3995" + }, + { + "label": "Institut Méditerranéen d’Océanologie", + "type": "Child", + "id": "https://ror.org/05258q350" + }, + { + "label": "Nutrition, Obésité et Risque Thrombotique", + "type": "Child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Physique des interactions ioniques et moléculaires", + "type": "Child", + "id": "https://ror.org/04kgf6p94" + }, + { + "label": "Laboratoire Population Environnement Développement", + "type": "Child", + "id": "https://ror.org/017qtjx43" + }, + { + "label": "Station Marine d'Endoume", + "type": "Child", + "id": "https://ror.org/051p9ra28" + }, + { + "label": "Theories and Approaches of Genomic Complexity", + "type": "Child", + "id": "https://ror.org/025sfbe73" + }, + { + "label": "Centre de Recherche et de Documentation sur l'Océanie (CREDO)", + "type": "Child", + "id": "https://ror.org/00jj62164" + }, + { + "label": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "type": "Child", + "id": "https://ror.org/005yfhm28" + }, + { + "label": "Centre International de Rencontres Mathématiques", + "type": "Child", + "id": "https://ror.org/04e3d6y73" + }, + { + "label": "Maison Asie Pacifique", + "type": "Child", + "id": "https://ror.org/03e2syc87" + }, + { + "label": "Centre de recherche français à Jérusalem", + "type": "Child", + "id": "https://ror.org/04ahb2147" + }, + { + "label": "Institut Méditerranéen des Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/00c62kq26" + }, + { + "label": "Centre de Génétique Médicale de Marseille", + "type": "Child", + "id": "https://ror.org/01e4wd589" + }, + { + "label": "Maison méditerranéenne des sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/01ejp3f31" + }, + { + "label": "Centre d'Immunophénomique", + "type": "Child", + "id": "https://ror.org/034bena10" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "Child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "Droit International Comparé et Européen", + "type": "Child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Lasers, Plasmas et Procédés Photoniques", + "type": "Child", + "id": "https://ror.org/01qfjp710" + }, + { + "label": "Centre Gilles-Gaston Granger", + "type": "Child", + "id": "https://ror.org/00axatv03" + }, + { + "label": "Irasia Recherche", + "type": "Child", + "id": "https://ror.org/03bcyhr16" + }, + { + "label": "Institut de Recherches et d'Etudes sur les Mondes Arabes et Musulmans", + "type": "Child", + "id": "https://ror.org/037f3ga09" + }, + { + "label": "Laboratoire d'Archéologie Médiévale et Moderne en Méditerranée", + "type": "Child", + "id": "https://ror.org/05tb4mb78" + }, + { + "label": "Institut d'ethnologie méditerranéenne européenne et comparative", + "type": "Child", + "id": "https://ror.org/050gdsq06" + }, + { + "label": "Temps, espaces, langages, Europe méridionale, Méditerranée", + "type": "Child", + "id": "https://ror.org/010bhn875" + }, + { + "label": "Matériaux Divisés, Interfaces, Réactivité, Electrochimie", + "type": "Child", + "id": "https://ror.org/00m587853" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Macromoléculaires", + "type": "Child", + "id": "https://ror.org/02hwc1z56" + }, + { + "label": "Laboratoire Information Génomique et Structurale", + "type": "Child", + "id": "https://ror.org/05v0fms67" + }, + { + "label": "Huma-Num", + "type": "Child", + "id": "https://ror.org/04ces3204" + }, + { + "label": "OpenEdition Center", + "type": "Child", + "id": "https://ror.org/02aja8v82" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Hôpital de la Timone", + "type": "Related", + "id": "https://ror.org/05jrr4320" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-amu.fr/" + ], + "aliases": [ + "Paul Cézanne University", + "University of Provence", + "University of the Mediterranean", + "Université d'Aix-Marseille" + ], + "acronyms": [ + "AMU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Aix-Marseille_University", + "labels": [ + { + "label": "Aix-Marseille University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.5399.6", + "preferred": "grid.5399.6" + }, + "ISNI": { + "all": [ + "0000 0001 2176 4817" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2302586", + "Q1687719", + "Q1204304" + ], + "preferred": "Q2302586" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03629my43.json b/v1.49/v1/03629my43.json new file mode 100644 index 000000000..17d8cbb5f --- /dev/null +++ b/v1.49/v1/03629my43.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03629my43", + "name": "Centre d'Etudes en Civilisations, Langues et Littératures Etrangères", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cecille.univ-lille.fr/" + ], + "aliases": [], + "acronyms": [ + "CECILLE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503274.7", + "preferred": "grid.503274.7" + }, + "Wikidata": { + "all": [ + "Q51780238" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0363rtq22.json b/v1.49/v1/0363rtq22.json new file mode 100644 index 000000000..97f4454e4 --- /dev/null +++ b/v1.49/v1/0363rtq22.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/0363rtq22", + "name": "Posts and Telecommunications Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.97136, + "lng": 105.77876, + "state": null, + "state_code": null, + "city": "Hà Đông", + "geonames_city": { + "id": 1581364, + "city": "Hà Đông", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://portal.ptit.edu.vn" + ], + "aliases": [], + "acronyms": [ + "PTIT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Học Viện Công Nghệ Bưu Chính Viễn Thông", + "iso639": "vi" + } + ], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/036b8pc68.json b/v1.49/v1/036b8pc68.json new file mode 100644 index 000000000..2dfe7121a --- /dev/null +++ b/v1.49/v1/036b8pc68.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/036b8pc68", + "name": "Stiftung Alfried Krupp Kolleg Greifswald", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Alfried Krupp von Bohlen und Halbach Foundation", + "type": "Related", + "id": "https://ror.org/04y7h3604" + }, + { + "label": "Universität Greifswald", + "type": "Related", + "id": "https://ror.org/00r1edq15" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.wiko-greifswald.de" + ], + "aliases": [ + "Alfried Krupp Wissenschaftskolleg Greifswald" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.461826.f", + "preferred": "grid.461826.f" + }, + "ISNI": { + "all": [ + "0000 0004 0493 4193" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1464555" + ], + "preferred": "Q1464555" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/036eg1q44.json b/v1.49/v1/036eg1q44.json new file mode 100644 index 000000000..1893ae488 --- /dev/null +++ b/v1.49/v1/036eg1q44.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/036eg1q44", + "name": "Institut de Recherche en Infectiologie de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Languedoc Roussillon", + "type": "Parent", + "id": "https://ror.org/04hrs9369" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.irim.cnrs.fr/index.php/en/" + ], + "aliases": [], + "acronyms": [ + "IRIM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503217.2", + "preferred": "grid.503217.2" + }, + "Wikidata": { + "all": [ + "Q52557905" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/036qbj650.json b/v1.49/v1/036qbj650.json new file mode 100644 index 000000000..a2c857d76 --- /dev/null +++ b/v1.49/v1/036qbj650.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/036qbj650", + "name": "Association Histiocytose France", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.5457, + "lng": 2.65356, + "state": null, + "state_code": null, + "city": "Melun", + "geonames_city": { + "id": 2994651, + "city": "Melun", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.histiocytose.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.478232.8", + "preferred": "grid.478232.8" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/036xhtv26.json b/v1.49/v1/036xhtv26.json new file mode 100644 index 000000000..bb188dac0 --- /dev/null +++ b/v1.49/v1/036xhtv26.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/036xhtv26", + "name": "Institut de génétique et de développement de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://igdr.univ-rennes.fr" + ], + "aliases": [ + "Institut de génétique et développement de Rennes" + ], + "acronyms": [ + "IGDR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Genetics and Development of Rennes", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462478.b", + "preferred": "grid.462478.b" + }, + "ISNI": { + "all": [ + "0000 0004 0609 882X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261468" + ], + "preferred": "Q30261468" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/036yvb369.json b/v1.49/v1/036yvb369.json new file mode 100644 index 000000000..acdc3cd83 --- /dev/null +++ b/v1.49/v1/036yvb369.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/036yvb369", + "name": "Toulouse School of Management Research", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Toulouse-I-Capitole", + "type": "Parent", + "id": "https://ror.org/0443n9e75" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tsm-education.fr/recherche" + ], + "aliases": [ + "Center for Research in Management", + "TSM Research Center", + "TSM-Research", + "Toulouse School of Management Research Center" + ], + "acronyms": [ + "CRM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de Recherche en Managment", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463849.4", + "preferred": "grid.463849.4" + }, + "ISNI": { + "all": [ + "0000 0001 1943 5205" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/036zswm25.json b/v1.49/v1/036zswm25.json new file mode 100644 index 000000000..5d4185d3d --- /dev/null +++ b/v1.49/v1/036zswm25.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/036zswm25", + "name": "Laboratoire des Technologies de la Microélectronique", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CEA Grenoble", + "type": "Parent", + "id": "https://ror.org/02mg6n827" + }, + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ltm.univ-grenoble-alpes.fr" + ], + "aliases": [], + "acronyms": [ + "LTM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463950.d", + "preferred": "grid.463950.d" + }, + "ISNI": { + "all": [ + "0000 0004 0382 8743" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0371hm317.json b/v1.49/v1/0371hm317.json new file mode 100644 index 000000000..77b02bae4 --- /dev/null +++ b/v1.49/v1/0371hm317.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/0371hm317", + "name": "Humanities West", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://humanitieswest.net/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446941.a", + "preferred": "grid.446941.a" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/037er0m96.json b/v1.49/v1/037er0m96.json new file mode 100644 index 000000000..0fbf6c22c --- /dev/null +++ b/v1.49/v1/037er0m96.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/037er0m96", + "name": "New Jersey Council for the Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 40.21705, + "lng": -74.74294, + "state": null, + "state_code": null, + "city": "Trenton", + "geonames_city": { + "id": 5105496, + "city": "Trenton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://njch.org/" + ], + "aliases": [], + "acronyms": [ + "NJCH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447471.5", + "preferred": "grid.447471.5" + }, + "ISNI": { + "all": [ + "0000 0001 0174 515X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/037f6g911.json b/v1.49/v1/037f6g911.json new file mode 100644 index 000000000..864fb96cb --- /dev/null +++ b/v1.49/v1/037f6g911.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/037f6g911", + "name": "Universidad Tecnológica de Tecamachalco", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 18.86102, + "lng": -97.74643, + "state": null, + "state_code": null, + "city": "Tecamachalco", + "geonames_city": { + "id": 8583200, + "city": "Tecamachalco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uttecam.edu.mx" + ], + "aliases": [ + "Technological University of Tecamachalco" + ], + "acronyms": [ + "UTTECAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/037kxc307.json b/v1.49/v1/037kxc307.json new file mode 100644 index 000000000..9a1032329 --- /dev/null +++ b/v1.49/v1/037kxc307.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/037kxc307", + "name": "Nickel Institute", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.70643, + "lng": -79.39864, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nickelinstitute.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.451125.6", + "preferred": "grid.451125.6" + }, + "ISNI": { + "all": [ + "0000 0004 5910 1404" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30295346" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/037p13h95.json b/v1.49/v1/037p13h95.json new file mode 100644 index 000000000..d43ef1c9b --- /dev/null +++ b/v1.49/v1/037p13h95.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/037p13h95", + "name": "Universidad CES", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.25184, + "lng": -75.56359, + "state": null, + "state_code": null, + "city": "Medellín", + "geonames_city": { + "id": 3674962, + "city": "Medellín", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ces.edu.co" + ], + "aliases": [ + "CES University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_CES", + "labels": [], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "GRID": { + "all": "grid.411140.1", + "preferred": "grid.411140.1" + }, + "ISNI": { + "all": [ + "0000 0001 0812 5789" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6156377" + ], + "preferred": "Q6156377" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/037wke960.json b/v1.49/v1/037wke960.json new file mode 100644 index 000000000..af0fc2279 --- /dev/null +++ b/v1.49/v1/037wke960.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/037wke960", + "name": "Foreign, Commonwealth & Development Office", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Foreign and Commonwealth Office", + "type": "Predecessor", + "id": "https://ror.org/02vtmh618" + }, + { + "label": "Department for International Development", + "type": "Predecessor", + "id": "https://ror.org/05rf29967" + }, + { + "label": "Government of the United Kingdom", + "type": "Parent", + "id": "https://ror.org/05wnh3t63" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gov.uk/government/organisations/foreign-commonwealth-development-office" + ], + "aliases": [ + "Foreign, Commonwealth and Development Office" + ], + "acronyms": [ + "FCDO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q358834" + ], + "preferred": "Q358834" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/038k8pw28.json b/v1.49/v1/038k8pw28.json new file mode 100644 index 000000000..566a4b633 --- /dev/null +++ b/v1.49/v1/038k8pw28.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/038k8pw28", + "name": "École des Ingénieurs de la Ville de Paris", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire en Sciences et Technologies de l'Information Géographique pour la ville intelligente et les territoires durables", + "type": "Child", + "id": "https://ror.org/00yczwp93" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.eivp-paris.fr/" + ], + "aliases": [], + "acronyms": [ + "EIVP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_des_ing%C3%A9nieurs_de_la_Ville_de_Paris", + "labels": [ + { + "label": "School of Engineering of the City of Paris", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.466417.6", + "preferred": "grid.466417.6" + }, + "ISNI": { + "all": [ + "0000 0001 0675 8793" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273515" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/038kp1442.json b/v1.49/v1/038kp1442.json new file mode 100644 index 000000000..3155b7477 --- /dev/null +++ b/v1.49/v1/038kp1442.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/038kp1442", + "name": "Minnesota Supercomputing Institute", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Minnesota System", + "type": "Parent", + "id": "https://ror.org/03grvy078" + } + ], + "addresses": [ + { + "lat": 39.12194, + "lng": -97.7067, + "state": null, + "state_code": null, + "city": "Minneapolis", + "geonames_city": { + "id": 4275586, + "city": "Minneapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://msi.umn.edu" + ], + "aliases": [ + "Minnesota Supercomputing Institute", + "The Minnesota Supercomputing Institute", + "University of Minnesota Supercomputing Institute" + ], + "acronyms": [ + "MSI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Minnesota_Supercomputing_Institute", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q7895812" + ], + "preferred": "Q7895812" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/038kxsm48.json b/v1.49/v1/038kxsm48.json new file mode 100644 index 000000000..210904a05 --- /dev/null +++ b/v1.49/v1/038kxsm48.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/038kxsm48", + "name": "Institut de Génétique, Environnement et Protection des Plantes", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Agro Rennes-Angers", + "type": "Parent", + "id": "https://ror.org/01s3fs709" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.1019, + "lng": -1.79565, + "state": null, + "state_code": null, + "city": "Le Rheu", + "geonames_city": { + "id": 3002351, + "city": "Le Rheu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.rennes.inrae.fr/igepp_eng/" + ], + "aliases": [], + "acronyms": [ + "IGEPP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute for Genetics, Environment and Plant Protection", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462490.d", + "preferred": "grid.462490.d" + }, + "ISNI": { + "all": [ + "0000 0004 0556 944X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261470" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/038sy2k93.json b/v1.49/v1/038sy2k93.json new file mode 100644 index 000000000..45f9eef7d --- /dev/null +++ b/v1.49/v1/038sy2k93.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/038sy2k93", + "name": "Laboratoire Génie et Matériaux Textiles", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "École Nationale Supérieure des Arts et Industries Textiles", + "type": "Parent", + "id": "https://ror.org/0002cnv45" + } + ], + "addresses": [ + { + "lat": 50.69421, + "lng": 3.17456, + "state": null, + "state_code": null, + "city": "Roubaix", + "geonames_city": { + "id": 2982681, + "city": "Roubaix", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://gemtex-lab.com/" + ], + "aliases": [ + "GEMTEX" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463989.9", + "preferred": "grid.463989.9" + }, + "ISNI": { + "all": [ + "0000 0004 0374 0899" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03949e763.json b/v1.49/v1/03949e763.json new file mode 100644 index 000000000..bf7815226 --- /dev/null +++ b/v1.49/v1/03949e763.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/03949e763", + "name": "Integrated Structural Biology Grenoble", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.isbg.fr" + ], + "aliases": [ + "Integrated structural biology" + ], + "acronyms": [ + "ISBG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781684" + ], + "preferred": "Q51781684" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0394www40.json b/v1.49/v1/0394www40.json new file mode 100644 index 000000000..9fffbf007 --- /dev/null +++ b/v1.49/v1/0394www40.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/0394www40", + "name": "UMR Ressources", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umr-ressources.fr" + ], + "aliases": [ + "RESSOURCES" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/039a53269.json b/v1.49/v1/039a53269.json new file mode 100644 index 000000000..1e3fe8db5 --- /dev/null +++ b/v1.49/v1/039a53269.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/039a53269", + "name": "Leibniz Institute on Aging - Fritz Lipmann Institute (FLI)", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "Parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "addresses": [ + { + "lat": 50.92878, + "lng": 11.5899, + "state": null, + "state_code": null, + "city": "Jena", + "geonames_city": { + "id": 2895044, + "city": "Jena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.leibniz-fli.de" + ], + "aliases": [ + "Leibniz Institute on Aging - Fritz Lipmann Institute", + "Leibniz-Institut für Alternsforschung - Fritz-Lipmann-Institut" + ], + "acronyms": [ + "FLI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Leibniz-Institut für Alternsforschung - Fritz-Lipmann-Institut (FLI)", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.418245.e", + "preferred": "grid.418245.e" + }, + "ISNI": { + "all": [ + "0000 0000 9999 5706" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/039j4x695.json b/v1.49/v1/039j4x695.json new file mode 100644 index 000000000..564e6c13e --- /dev/null +++ b/v1.49/v1/039j4x695.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/039j4x695", + "name": "Laboratoire Biosciences et bioingénierie pour la Santé", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bge-lab.fr" + ], + "aliases": [ + "Biosciences and Bioengineering for Health Laboratory" + ], + "acronyms": [ + "BGE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q126839579" + ], + "preferred": "Q126839579" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/039jywa41.json b/v1.49/v1/039jywa41.json new file mode 100644 index 000000000..15f32167d --- /dev/null +++ b/v1.49/v1/039jywa41.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/039jywa41", + "name": "École pour l'informatique et les nouvelles technologies", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.81471, + "lng": 2.36073, + "state": null, + "state_code": null, + "city": "Le Kremlin-Bicêtre", + "geonames_city": { + "id": 3003737, + "city": "Le Kremlin-Bicêtre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://international.epitech.eu/" + ], + "aliases": [], + "acronyms": [ + "EPITECH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_pour_l%27informatique_et_les_nouvelles_technologies", + "labels": [ + { + "label": "EPITECH European Institute of Information Technology", + "iso639": "oc" + }, + { + "label": "European Institute of Technology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.454222.7", + "preferred": "grid.454222.7" + }, + "Wikidata": { + "all": [ + "Q1756635" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/039ptg826.json b/v1.49/v1/039ptg826.json new file mode 100644 index 000000000..06f337af3 --- /dev/null +++ b/v1.49/v1/039ptg826.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/039ptg826", + "name": "Atebubu College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.75537, + "lng": -0.98085, + "state": null, + "state_code": null, + "city": "Atebubu", + "geonames_city": { + "id": 2303878, + "city": "Atebubu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://atecoe.edu.gh" + ], + "aliases": [], + "acronyms": [ + "ATECOE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Atebubu_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996958" + ], + "preferred": "Q46996958" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03a77cf20.json b/v1.49/v1/03a77cf20.json new file mode 100644 index 000000000..e8038a1ef --- /dev/null +++ b/v1.49/v1/03a77cf20.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03a77cf20", + "name": "Fasa University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.9383, + "lng": 53.6482, + "state": null, + "state_code": null, + "city": "Fasa", + "geonames_city": { + "id": 134721, + "city": "Fasa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fasau.ac.ir" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Fasa_University", + "labels": [], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q44176404" + ], + "preferred": "Q44176404" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ab0zs98.json b/v1.49/v1/03ab0zs98.json new file mode 100644 index 000000000..bc38ee5a1 --- /dev/null +++ b/v1.49/v1/03ab0zs98.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03ab0zs98", + "name": "Laboratoire de Mathématiques d'Orsay", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.imo.universite-paris-saclay.fr" + ], + "aliases": [ + "Laboratoire de Mathématiques d’Orsay" + ], + "acronyms": [ + "LMO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Mathematics Laboratory of Orsay", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463900.8", + "preferred": "grid.463900.8" + }, + "ISNI": { + "all": [ + "0000 0004 0368 9704" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03afwf105.json b/v1.49/v1/03afwf105.json new file mode 100644 index 000000000..3fa679b57 --- /dev/null +++ b/v1.49/v1/03afwf105.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03afwf105", + "name": "Alaska Humanities Forum", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 61.21806, + "lng": -149.90028, + "state": null, + "state_code": null, + "city": "Anchorage", + "geonames_city": { + "id": 5879400, + "city": "Anchorage", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.akhf.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446363.0", + "preferred": "grid.446363.0" + }, + "ISNI": { + "all": [ + "0000 0004 0484 5430" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ajk1m02.json b/v1.49/v1/03ajk1m02.json new file mode 100644 index 000000000..2d5efad2d --- /dev/null +++ b/v1.49/v1/03ajk1m02.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03ajk1m02", + "name": "Arheološki Institut", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ai.ac.rs" + ], + "aliases": [ + "Archaeological Institute" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Археолошки институт", + "iso639": "sr" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": { + "GRID": { + "all": "grid.511549.d", + "preferred": "grid.511549.d" + }, + "ISNI": { + "all": [ + "0000 0004 8398 4382" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16082891" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03atqv648.json b/v1.49/v1/03atqv648.json new file mode 100644 index 000000000..afdbfc665 --- /dev/null +++ b/v1.49/v1/03atqv648.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/03atqv648", + "name": "Physique et Physiologie Intégratives de l'Arbre en Environnement Fluctuant", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Département Environnement et Agronomie", + "type": "Parent", + "id": "https://ror.org/01e7wth34" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://piaf.clermont.hub.inrae.fr" + ], + "aliases": [ + "Integrative Physics and Physiology of Fruit and Forest Trees", + "Physique et physiologie Intégratives de l'Arbre fruitier et Forestier" + ], + "acronyms": [ + "PIAF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464154.6", + "preferred": "grid.464154.6" + }, + "ISNI": { + "all": [ + "0000 0004 0445 6945" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262506" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03bb0ht63.json b/v1.49/v1/03bb0ht63.json new file mode 100644 index 000000000..8e27da476 --- /dev/null +++ b/v1.49/v1/03bb0ht63.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03bb0ht63", + "name": "Association Futuribles International", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.futuribles.com" + ], + "aliases": [ + "Association Internationale Futurible" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Futuribles_International", + "labels": [ + { + "label": "Futuribles International", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.432654.2", + "preferred": "grid.432654.2" + }, + "ISNI": { + "all": [ + "0000 0001 1941 1334" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03bcdsr62.json b/v1.49/v1/03bcdsr62.json new file mode 100644 index 000000000..ac419799c --- /dev/null +++ b/v1.49/v1/03bcdsr62.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/03bcdsr62", + "name": "Sols, Solides, Structures, Risques", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17997, + "lng": 5.78935, + "state": null, + "state_code": null, + "city": "Gières", + "geonames_city": { + "id": 3016089, + "city": "Gières", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://3sr.univ-grenoble-alpes.fr" + ], + "aliases": [ + "Laboratoire 3SR" + ], + "acronyms": [ + "3SR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Soils, Solids, Structures, Risks", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464084.a", + "preferred": "grid.464084.a" + }, + "ISNI": { + "all": [ + "0000 0004 0384 3636" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03be9n013.json b/v1.49/v1/03be9n013.json new file mode 100644 index 000000000..2b6953ff6 --- /dev/null +++ b/v1.49/v1/03be9n013.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03be9n013", + "name": "University of the South Pacific", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of the South Pacific", + "type": "Parent", + "id": "https://ror.org/008stv805" + } + ], + "addresses": [ + { + "lat": -13.83333, + "lng": -171.76666, + "state": null, + "state_code": null, + "city": "Apia", + "geonames_city": { + "id": 4035413, + "city": "Apia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usp.ac.fj/index.php?id=5681" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Samoa", + "country_code": "WS" + }, + "external_ids": { + "GRID": { + "all": "grid.472440.1", + "preferred": "grid.472440.1" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03bkshf67.json b/v1.49/v1/03bkshf67.json new file mode 100644 index 000000000..53874a330 --- /dev/null +++ b/v1.49/v1/03bkshf67.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03bkshf67", + "name": "Florida Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 27.77086, + "lng": -82.67927, + "state": null, + "state_code": null, + "city": "St. Petersburg", + "geonames_city": { + "id": 4171563, + "city": "St. Petersburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://floridahumanities.org/" + ], + "aliases": [], + "acronyms": [ + "FHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446721.2", + "preferred": "grid.446721.2" + }, + "ISNI": { + "all": [ + "0000 0000 9092 395X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03bnma344.json b/v1.49/v1/03bnma344.json new file mode 100644 index 000000000..ec8c00ccc --- /dev/null +++ b/v1.49/v1/03bnma344.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/03bnma344", + "name": "Institut de Biologie Valrose", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/institut-de-biologie-valrose-ibv" + ], + "aliases": [], + "acronyms": [ + "IBV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Biology Valrose", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461605.0", + "preferred": "grid.461605.0" + }, + "ISNI": { + "all": [ + "0000 0004 0609 6787" + ], + "preferred": "0000 0004 0609 6787" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03c10r560.json b/v1.49/v1/03c10r560.json new file mode 100644 index 000000000..b04005908 --- /dev/null +++ b/v1.49/v1/03c10r560.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03c10r560", + "name": "Humanities Nebraska", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 40.8, + "lng": -96.66696, + "state": null, + "state_code": null, + "city": "Lincoln", + "geonames_city": { + "id": 5072006, + "city": "Lincoln", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://humanitiesnebraska.org/" + ], + "aliases": [ + "Nebraska Humanities Council" + ], + "acronyms": [ + "HN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Humanities_Nebraska", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446932.e", + "preferred": "grid.446932.e" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03c3m6m66.json b/v1.49/v1/03c3m6m66.json new file mode 100644 index 000000000..9f9eb5065 --- /dev/null +++ b/v1.49/v1/03c3m6m66.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/03c3m6m66", + "name": "Lille Inflammation Research International Center", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "Délégation Régionale Nord Ouest", + "type": "Parent", + "id": "https://ror.org/00jmxvy70" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lille-inflammation-research.org" + ], + "aliases": [], + "acronyms": [ + "LIRIC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503367.4", + "preferred": "grid.503367.4" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03capj968.json b/v1.49/v1/03capj968.json new file mode 100644 index 000000000..a983e9bee --- /dev/null +++ b/v1.49/v1/03capj968.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03capj968", + "name": "Institut de Recherche en Cancérologie de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Languedoc Roussillon", + "type": "Parent", + "id": "https://ror.org/04hrs9369" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ircm.fr/index.php?project=crcm_en" + ], + "aliases": [], + "acronyms": [ + "IRCM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Cancer Research of Montpellier", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.488845.d", + "preferred": "grid.488845.d" + }, + "ISNI": { + "all": [ + "0000 0004 0624 6108" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ccs9d57.json b/v1.49/v1/03ccs9d57.json new file mode 100644 index 000000000..eaa2be985 --- /dev/null +++ b/v1.49/v1/03ccs9d57.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03ccs9d57", + "name": "Wisconsin Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 43.07305, + "lng": -89.40123, + "state": null, + "state_code": null, + "city": "Madison", + "geonames_city": { + "id": 5261457, + "city": "Madison", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.wisconsinhumanities.org/" + ], + "aliases": [], + "acronyms": [ + "WHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447633.1", + "preferred": "grid.447633.1" + }, + "ISNI": { + "all": [ + "0000 0004 5907 0126" + ], + "preferred": "0000 0004 5907 0126" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03cvv1m29.json b/v1.49/v1/03cvv1m29.json new file mode 100644 index 000000000..64c2f340e --- /dev/null +++ b/v1.49/v1/03cvv1m29.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03cvv1m29", + "name": "Fundación Universitaria María Cano", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.25184, + "lng": -75.56359, + "state": null, + "state_code": null, + "city": "Medellín", + "geonames_city": { + "id": 3674962, + "city": "Medellín", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fumc.edu.co" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "GRID": { + "all": "grid.441812.a", + "preferred": "grid.441812.a" + }, + "ISNI": { + "all": [ + "0000 0004 0415 8286" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5871656" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03cwzta72.json b/v1.49/v1/03cwzta72.json new file mode 100644 index 000000000..d84c0cbd0 --- /dev/null +++ b/v1.49/v1/03cwzta72.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/03cwzta72", + "name": "Direction des énergies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "CEA Cadarache", + "type": "Child", + "id": "https://ror.org/01rs1gy10" + }, + { + "label": "CEA Marcoule", + "type": "Child", + "id": "https://ror.org/04140y156" + }, + { + "label": "CEA Saclay", + "type": "Child", + "id": "https://ror.org/03n15ch10" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cea.fr/Pages/domaines-recherche/energies.aspx" + ], + "aliases": [ + "Direction de L'Énergie Nucléaire" + ], + "acronyms": [ + "CEA DEN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457258.9", + "preferred": "grid.457258.9" + }, + "ISNI": { + "all": [ + "0000 0001 2180 4137" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30299415", + "Q121913443" + ], + "preferred": "Q121913443" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03d0rdy88.json b/v1.49/v1/03d0rdy88.json new file mode 100644 index 000000000..6507a0b5b --- /dev/null +++ b/v1.49/v1/03d0rdy88.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03d0rdy88", + "name": "Microbiologie Environnement Digestif Santé", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.72037, + "lng": 3.01883, + "state": null, + "state_code": null, + "city": "Saint-Genès-Champanelle", + "geonames_city": { + "id": 2980029, + "city": "Saint-Genès-Champanelle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.clermont.inrae.fr/microbiologie/" + ], + "aliases": [], + "acronyms": [ + "MEDIS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503254.5", + "preferred": "grid.503254.5" + }, + "Wikidata": { + "all": [ + "Q52557873" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03d78qr79.json b/v1.49/v1/03d78qr79.json new file mode 100644 index 000000000..e9b0d758b --- /dev/null +++ b/v1.49/v1/03d78qr79.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03d78qr79", + "name": "University of Minnesota Libraries Publishing", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "University of Minnesota", + "type": "Parent", + "id": "https://ror.org/017zqws13" + } + ], + "addresses": [ + { + "lat": 44.97997, + "lng": -93.26384, + "state": null, + "state_code": null, + "city": "Minneapolis", + "geonames_city": { + "id": 5037649, + "city": "Minneapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lib.umn.edu/services/publishing" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52637704" + ], + "preferred": "Q52637704" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03d7ypa48.json b/v1.49/v1/03d7ypa48.json new file mode 100644 index 000000000..6e82322da --- /dev/null +++ b/v1.49/v1/03d7ypa48.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/03d7ypa48", + "name": "Laboratoire Polytech'Lab", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/laboratoire-polytechlab" + ], + "aliases": [ + "Polytech'Lab Laboratory" + ], + "acronyms": [ + "POLYTECH'LAB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03dd7qj98.json b/v1.49/v1/03dd7qj98.json new file mode 100644 index 000000000..784976cae --- /dev/null +++ b/v1.49/v1/03dd7qj98.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03dd7qj98", + "name": "Wenzhou University of Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.99942, + "lng": 120.66682, + "state": null, + "state_code": null, + "city": "Wenzhou", + "geonames_city": { + "id": 1791388, + "city": "Wenzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.wzut.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1164 4044" + ], + "preferred": "0000 0005 1164 4044" + }, + "Wikidata": { + "all": [ + "Q17030006" + ], + "preferred": "Q17030006" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03dsd0g48.json b/v1.49/v1/03dsd0g48.json new file mode 100644 index 000000000..8751aeea1 --- /dev/null +++ b/v1.49/v1/03dsd0g48.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03dsd0g48", + "name": "Laboratoire des Sciences du Climat et de l'Environnement", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Direction de la Recherche Fondamentale", + "type": "Parent", + "id": "https://ror.org/01yvj5k91" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lsce.ipsl.fr" + ], + "aliases": [], + "acronyms": [ + "LSCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Laboratoire_des_sciences_du_climat_et_de_l%27environnement", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457340.1", + "preferred": "grid.457340.1" + }, + "ISNI": { + "all": [ + "0000 0001 0584 9722" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3214491" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03dw0bd08.json b/v1.49/v1/03dw0bd08.json new file mode 100644 index 000000000..6c745a7c9 --- /dev/null +++ b/v1.49/v1/03dw0bd08.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03dw0bd08", + "name": "Institute of Women Social Workers", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -17.82772, + "lng": 31.05337, + "state": null, + "state_code": null, + "city": "Harare", + "geonames_city": { + "id": 890299, + "city": "Harare", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iwsw.org.zw" + ], + "aliases": [], + "acronyms": [ + "IWSW" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03e044190.json b/v1.49/v1/03e044190.json new file mode 100644 index 000000000..1a79cd23f --- /dev/null +++ b/v1.49/v1/03e044190.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03e044190", + "name": "Spintronique et Technologie des Composants", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.spintec.fr/" + ], + "aliases": [], + "acronyms": [ + "SPINTEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464100.7", + "preferred": "grid.464100.7" + }, + "ISNI": { + "all": [ + "0000 0004 0369 6218" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262456" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03egfjv78.json b/v1.49/v1/03egfjv78.json new file mode 100644 index 000000000..61fa87f5e --- /dev/null +++ b/v1.49/v1/03egfjv78.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03egfjv78", + "name": "France Parkinson", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.franceparkinson.fr" + ], + "aliases": [ + "Association France Parkinson" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.478229.2", + "preferred": "grid.478229.2" + }, + "ISNI": { + "all": [ + "0000 0004 0455 6073" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03eq8fa86.json b/v1.49/v1/03eq8fa86.json new file mode 100644 index 000000000..981ffd8df --- /dev/null +++ b/v1.49/v1/03eq8fa86.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03eq8fa86", + "name": "Unité de Recherche Pluridisciplinaire Sport, Santé, Société", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université d'Artois", + "type": "Parent", + "id": "https://ror.org/053x9s498" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université du littoral côte d'opale", + "type": "Parent", + "id": "https://ror.org/02gdcg342" + } + ], + "addresses": [ + { + "lat": 50.59883, + "lng": 3.09056, + "state": null, + "state_code": null, + "city": "Ronchin", + "geonames_city": { + "id": 2982944, + "city": "Ronchin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://urepsss.com/" + ], + "aliases": [], + "acronyms": [ + "URePSSS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503425.5", + "preferred": "grid.503425.5" + }, + "Wikidata": { + "all": [ + "Q51784166" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03eqm6y13.json b/v1.49/v1/03eqm6y13.json new file mode 100644 index 000000000..b80f74f2c --- /dev/null +++ b/v1.49/v1/03eqm6y13.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/03eqm6y13", + "name": "LabEx PERSYVAL-Lab", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Délégation Alpes", + "type": "Parent", + "id": "https://ror.org/04px4e658" + }, + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + } + ], + "addresses": [ + { + "lat": 45.1787, + "lng": 5.76281, + "state": null, + "state_code": null, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 2978317, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://persyval-lab.org/en/" + ], + "aliases": [ + "Pervasive Systems and Algorithms" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.484414.9", + "preferred": "grid.484414.9" + }, + "Wikidata": { + "all": [ + "Q33122106" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03esxxd95.json b/v1.49/v1/03esxxd95.json new file mode 100644 index 000000000..09f94c974 --- /dev/null +++ b/v1.49/v1/03esxxd95.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03esxxd95", + "name": "Institute of Chartered Accountants of Nigeria", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.45407, + "lng": 3.39467, + "state": null, + "state_code": null, + "city": "Lagos", + "geonames_city": { + "id": 2332459, + "city": "Lagos", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://icanig.org" + ], + "aliases": [], + "acronyms": [ + "ICAN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9682 1436" + ], + "preferred": "0000 0000 9682 1436" + }, + "Wikidata": { + "all": [ + "Q6040058" + ], + "preferred": "Q6040058" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ew9k907.json b/v1.49/v1/03ew9k907.json new file mode 100644 index 000000000..504455184 --- /dev/null +++ b/v1.49/v1/03ew9k907.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03ew9k907", + "name": "New Mexico Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 35.08449, + "lng": -106.65114, + "state": null, + "state_code": null, + "city": "Albuquerque", + "geonames_city": { + "id": 5454711, + "city": "Albuquerque", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://nmhum.org/" + ], + "aliases": [], + "acronyms": [ + "NMHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447472.6", + "preferred": "grid.447472.6" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03f239z63.json b/v1.49/v1/03f239z63.json new file mode 100644 index 000000000..b94e72e25 --- /dev/null +++ b/v1.49/v1/03f239z63.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/03f239z63", + "name": "Moravian Library in Brno", + "email_address": null, + "ip_addresses": [], + "established": 1770, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.19522, + "lng": 16.60796, + "state": null, + "state_code": null, + "city": "Brno", + "geonames_city": { + "id": 3078610, + "city": "Brno", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mzk.cz" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Moravian_Library", + "labels": [ + { + "label": "Moravská zemská knihovna v Brně", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.447800.f", + "preferred": "grid.447800.f" + }, + "ISNI": { + "all": [ + "0000 0001 2314 9367" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03fd77x13.json b/v1.49/v1/03fd77x13.json new file mode 100644 index 000000000..3128a9cf7 --- /dev/null +++ b/v1.49/v1/03fd77x13.json @@ -0,0 +1,179 @@ +{ + "id": "https://ror.org/03fd77x13", + "name": "Institut National de Physique Nucléaire et de Physique des Particules", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire AstroParticule et Cosmologie", + "type": "Child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "Centre de physique des particules de Marseille", + "type": "Child", + "id": "https://ror.org/00fw8bp86" + }, + { + "label": "Laboratoire de Physique des deux infinis Bordeaux", + "type": "Child", + "id": "https://ror.org/034a4bk84" + }, + { + "label": "Centre de Calcul de l’Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Child", + "id": "https://ror.org/04dcc3438" + }, + { + "label": "Institut Pluridisciplinaire Hubert Curien", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "Laboratoire Univers et Particules de Montpellier", + "type": "Child", + "id": "https://ror.org/00nrbzg90" + }, + { + "label": "Laboratoire d’Annecy de Physique des Particules", + "type": "Child", + "id": "https://ror.org/049nhh297" + }, + { + "label": "Laboratoire de Physique Corpusculaire", + "type": "Child", + "id": "https://ror.org/0214k6v65" + }, + { + "label": "Laboratoire de Physique Corpusculaire de Caen", + "type": "Child", + "id": "https://ror.org/022txr781" + }, + { + "label": "Laboratoire de Physique Nucléaire et de Hautes Énergies", + "type": "Child", + "id": "https://ror.org/01hg8p552" + }, + { + "label": "Laboratoire de Physique Subatomique et des Technologies Associées", + "type": "Child", + "id": "https://ror.org/01kxesq83" + }, + { + "label": "Laboratoire de Physique des 2 Infinis Irène Joliot-Curie", + "type": "Child", + "id": "https://ror.org/03gc1p724" + }, + { + "label": "Laboratoire des Matériaux Avancés", + "type": "Child", + "id": "https://ror.org/00w1qvp54" + }, + { + "label": "Laboratoire de Physique Subatomique et de Cosmologie", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "GANIL", + "type": "Child", + "id": "https://ror.org/042dc0x18" + }, + { + "label": "Institut de Physique des 2 Infinis de Lyon", + "type": "Child", + "id": "https://ror.org/02avf8f85" + }, + { + "label": "Laboratoire des 2 Infinis Toulouse", + "type": "Child", + "id": "https://ror.org/00j50jx72" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.in2p3.fr/" + ], + "aliases": [ + "IN2P3" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_national_de_physique_nucl%C3%A9aire_et_de_physique_des_particules", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.433124.3", + "preferred": "grid.433124.3" + }, + "ISNI": { + "all": [ + "0000 0001 0664 3574" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q828518" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03fkjvy27.json b/v1.49/v1/03fkjvy27.json new file mode 100644 index 000000000..d7602f70c --- /dev/null +++ b/v1.49/v1/03fkjvy27.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03fkjvy27", + "name": "Institut Pasteur de Madagascar", + "email_address": null, + "ip_addresses": [], + "established": 1898, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": -18.91368, + "lng": 47.53613, + "state": null, + "state_code": null, + "city": "Antananarivo", + "geonames_city": { + "id": 1070940, + "city": "Antananarivo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur.mg/" + ], + "aliases": [], + "acronyms": [ + "IMP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Madagascar", + "country_code": "MG" + }, + "external_ids": { + "GRID": { + "all": "grid.418511.8", + "preferred": "grid.418511.8" + }, + "ISNI": { + "all": [ + "0000 0004 0552 7303" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03fte3n86.json b/v1.49/v1/03fte3n86.json new file mode 100644 index 000000000..40530146e --- /dev/null +++ b/v1.49/v1/03fte3n86.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03fte3n86", + "name": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Agence Nationale de la Recherche", + "type": "Parent", + "id": "https://ror.org/00rbzpz17" + }, + { + "label": "Centre Occitanie-Montpellier", + "type": "Parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.montpellier.inra.fr/lepse" + ], + "aliases": [], + "acronyms": [ + "LEPSE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503314.0", + "preferred": "grid.503314.0" + }, + "ISNI": { + "all": [ + "0000 0004 0445 8166" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51782228" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03g60bf21.json b/v1.49/v1/03g60bf21.json new file mode 100644 index 000000000..bdcff7e53 --- /dev/null +++ b/v1.49/v1/03g60bf21.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03g60bf21", + "name": "Children's Hospital Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Queensland Children’s Hospital", + "type": "Parent", + "id": "https://ror.org/02t3p7e85" + } + ], + "addresses": [ + { + "lat": -27.37434, + "lng": 152.60423, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 11523970, + "city": "Brisbane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://childrens.org.au" + ], + "aliases": [ + "Children's Hospital Foundation Queensland", + "Queensland Children's Hospital Foundation" + ], + "acronyms": [ + "CHF" + ], + "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.49/v1/03g8bss77.json b/v1.49/v1/03g8bss77.json new file mode 100644 index 000000000..55af6ccaa --- /dev/null +++ b/v1.49/v1/03g8bss77.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03g8bss77", + "name": "St. Francis College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.15181, + "lng": 0.47362, + "state": null, + "state_code": null, + "city": "Hohoe", + "geonames_city": { + "id": 2300372, + "city": "Hohoe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://franco.edu.gh" + ], + "aliases": [ + "Saint Francis College of Education", + "St. Francis COE", + "St. Francis' College of Education" + ], + "acronyms": [ + "FRANCO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Francis_College_of_Education", + "labels": [ + { + "label": "Kwalejin Ilimi ta St. Francis", + "iso639": "ha" + } + ], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996984" + ], + "preferred": "Q46996984" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03gc1p724.json b/v1.49/v1/03gc1p724.json new file mode 100644 index 000000000..46e55c93a --- /dev/null +++ b/v1.49/v1/03gc1p724.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/03gc1p724", + "name": "Laboratoire de Physique des 2 Infinis Irène Joliot-Curie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Parent", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ijclab.in2p3.fr/" + ], + "aliases": [ + "IJCLab" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of the Physics of the Two Infinities Irène Joliot-Curie", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.508754.b", + "preferred": "grid.508754.b" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03gdzfa52.json b/v1.49/v1/03gdzfa52.json new file mode 100644 index 000000000..8dde4e8e9 --- /dev/null +++ b/v1.49/v1/03gdzfa52.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03gdzfa52", + "name": "Seminario Arcivescovile di Milano", + "email_address": null, + "ip_addresses": [], + "established": 1564, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.73569, + "lng": 8.89545, + "state": null, + "state_code": null, + "city": "Venegono Inferiore", + "geonames_city": { + "id": 3164609, + "city": "Venegono Inferiore", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.seminario.milano.it" + ], + "aliases": [ + "Archiepiscopal Seminary of Milan", + "Seminario di Milano", + "Seminary of Milan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://it.wikipedia.org/wiki/Seminario_arcivescovile_di_Milano", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2156 1307" + ], + "preferred": "0000 0001 2156 1307" + }, + "Wikidata": { + "all": [ + "Q1470949" + ], + "preferred": "Q1470949" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03gmkya61.json b/v1.49/v1/03gmkya61.json new file mode 100644 index 000000000..6686ad89f --- /dev/null +++ b/v1.49/v1/03gmkya61.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03gmkya61", + "name": "SayFood - Food and Bioproduct Engineering", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + } + ], + "addresses": [ + { + "lat": 48.72692, + "lng": 2.28301, + "state": null, + "state_code": null, + "city": "Massy", + "geonames_city": { + "id": 2995206, + "city": "Massy", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.versailles-grignon.inrae.fr/umr-sayfood/UMR-SayFood" + ], + "aliases": [ + "Paris-saclay food and bioproduct engineering research unit", + "SayFood" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109621296" + ], + "preferred": "Q109621296" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03grvy078.json b/v1.49/v1/03grvy078.json new file mode 100644 index 000000000..a043b00d9 --- /dev/null +++ b/v1.49/v1/03grvy078.json @@ -0,0 +1,131 @@ +{ + "id": "https://ror.org/03grvy078", + "name": "University of Minnesota System", + "email_address": null, + "ip_addresses": [], + "established": 1851, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Minnesota", + "type": "Child", + "id": "https://ror.org/017zqws13" + }, + { + "label": "University of Minnesota Crookston", + "type": "Child", + "id": "https://ror.org/04w6xt508" + }, + { + "label": "University of Minnesota Morris", + "type": "Child", + "id": "https://ror.org/05vzqzh92" + }, + { + "label": "University of Minnesota Rochester", + "type": "Child", + "id": "https://ror.org/02rh4fw73" + }, + { + "label": "University of Minnesota, Duluth", + "type": "Child", + "id": "https://ror.org/01hy4qx27" + }, + { + "label": "University of Minnesota, Waseca", + "type": "Child", + "id": "https://ror.org/0241gfe92" + }, + { + "label": "Minnesota Supercomputing Institute", + "type": "Child", + "id": "https://ror.org/038kp1442" + } + ], + "addresses": [ + { + "lat": 44.97997, + "lng": -93.26384, + "state": null, + "state_code": null, + "city": "Minneapolis", + "geonames_city": { + "id": 5037649, + "city": "Minneapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://twin-cities.umn.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Minnesota_system", + "labels": [ + { + "label": "Universidad de Minnesota", + "iso639": "es" + }, + { + "label": "Université du Minnesota", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.437349.e", + "preferred": "grid.437349.e" + }, + "ISNI": { + "all": [ + "0000 0004 0519 9645" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q14552696" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03gvjya19.json b/v1.49/v1/03gvjya19.json new file mode 100644 index 000000000..74f23176c --- /dev/null +++ b/v1.49/v1/03gvjya19.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03gvjya19", + "name": "Eastern International University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.9804, + "lng": 106.6519, + "state": null, + "state_code": null, + "city": "Thu Dau Mot", + "geonames_city": { + "id": 1565022, + "city": "Thu Dau Mot", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://eiu.edu.vn" + ], + "aliases": [], + "acronyms": [ + "EIU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Đại học Quốc tế Miền Đông", + "iso639": "vi" + } + ], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": { + "GRID": { + "all": "grid.440767.6", + "preferred": "grid.440767.6" + }, + "Wikidata": { + "all": [ + "Q30293633" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03gvsr558.json b/v1.49/v1/03gvsr558.json new file mode 100644 index 000000000..27d94490c --- /dev/null +++ b/v1.49/v1/03gvsr558.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03gvsr558", + "name": "Maqsut Narikbayev University", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.1801, + "lng": 71.44598, + "state": null, + "state_code": null, + "city": "Astana", + "geonames_city": { + "id": 1526273, + "city": "Astana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kazguu.kz" + ], + "aliases": [ + "KAZGUU University", + "М.С.Нарықбаев атындағы КАЗГЮУ университеті", + "Университет КАЗГЮУ", + "Университет КАЗГЮУ имени М.С. Нарикбаева" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": { + "GRID": { + "all": "grid.443540.2", + "preferred": "grid.443540.2" + }, + "ISNI": { + "all": [ + "0000 0004 0462 9607" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4208090" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03gz4y884.json b/v1.49/v1/03gz4y884.json new file mode 100644 index 000000000..4c1f2c3bd --- /dev/null +++ b/v1.49/v1/03gz4y884.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03gz4y884", + "name": "Laboratoire de Météorologie Physique", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + }, + { + "label": "Observatoire de Physique du Globe de Clermont-Ferrand", + "type": "Parent", + "id": "https://ror.org/01bch8q67" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://wwwobs.univ-bpclermont.fr/atmos/#" + ], + "aliases": [], + "acronyms": [ + "LAMP", + "UMR LAMP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463921.b", + "preferred": "grid.463921.b" + }, + "ISNI": { + "all": [ + "0000 0001 0481 064X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ha87a98.json b/v1.49/v1/03ha87a98.json new file mode 100644 index 000000000..ed426e7a0 --- /dev/null +++ b/v1.49/v1/03ha87a98.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03ha87a98", + "name": "Laboratoire interdisciplinaire de recherche sur les transformations des pratiques éducatives et des pratiques sociales", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Est Créteil", + "type": "Parent", + "id": "https://ror.org/05ggc9x40" + }, + { + "label": "Paris-Est Sup", + "type": "Parent", + "id": "https://ror.org/0268ecp52" + } + ], + "addresses": [ + { + "lat": 48.79266, + "lng": 2.46569, + "state": null, + "state_code": null, + "city": "Créteil", + "geonames_city": { + "id": 3022530, + "city": "Créteil", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lirtes.u-pec.fr" + ], + "aliases": [ + "Laboratoire LIRTES" + ], + "acronyms": [ + "LIRTES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784298" + ], + "preferred": "Q51784298" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03hdf3w38.json b/v1.49/v1/03hdf3w38.json new file mode 100644 index 000000000..1c781cc30 --- /dev/null +++ b/v1.49/v1/03hdf3w38.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/03hdf3w38", + "name": "Northeastern University London", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Northeastern University", + "type": "Parent", + "id": "https://ror.org/04t5xt781" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nulondon.ac.uk" + ], + "aliases": [ + "New College of the Humanities" + ], + "acronyms": [ + "NCH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Northeastern_University_%E2%80%93_London", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.462656.5", + "preferred": "grid.462656.5" + }, + "ISNI": { + "all": [ + "0000 0004 0557 2948" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1982481" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ht2dx40.json b/v1.49/v1/03ht2dx40.json new file mode 100644 index 000000000..7982ce3a0 --- /dev/null +++ b/v1.49/v1/03ht2dx40.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03ht2dx40", + "name": "Institut Pasteur du Cambodge", + "email_address": null, + "ip_addresses": [], + "established": 1953, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 11.56245, + "lng": 104.91601, + "state": null, + "state_code": null, + "city": "Phnom Penh", + "geonames_city": { + "id": 1821306, + "city": "Phnom Penh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur-kh.org/" + ], + "aliases": [], + "acronyms": [ + "IPC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Cambodia", + "country_code": "KH" + }, + "external_ids": { + "GRID": { + "all": "grid.418537.c", + "preferred": "grid.418537.c" + }, + "ISNI": { + "all": [ + "0000 0004 7535 978X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30281766" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03jbcxj66.json b/v1.49/v1/03jbcxj66.json new file mode 100644 index 000000000..d3924ce01 --- /dev/null +++ b/v1.49/v1/03jbcxj66.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03jbcxj66", + "name": "Faculdade de Tecnologia de São Paulo", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -23.5475, + "lng": -46.63611, + "state": null, + "state_code": null, + "city": "São Paulo", + "geonames_city": { + "id": 3448439, + "city": "São Paulo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fatecsp.br" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q18477197" + ], + "preferred": "Q18477197" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03jk31721.json b/v1.49/v1/03jk31721.json new file mode 100644 index 000000000..187dce338 --- /dev/null +++ b/v1.49/v1/03jk31721.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03jk31721", + "name": "EyeSmart Technology Ltd. (China)", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.eyesmart.com.cn" + ], + "aliases": [ + "EyeSmart", + "EyeSmart Technology", + "北京释码大华科技有限公司" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "EyeSmart Technology Ltd.", + "iso639": "en" + }, + { + "label": "北京释码大华科技有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03jv6w209.json b/v1.49/v1/03jv6w209.json new file mode 100644 index 000000000..025198453 --- /dev/null +++ b/v1.49/v1/03jv6w209.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/03jv6w209", + "name": "Maison de la Simulation", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.7326, + "lng": 2.16923, + "state": null, + "state_code": null, + "city": "Saclay", + "geonames_city": { + "id": 2982043, + "city": "Saclay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mdls.fr" + ], + "aliases": [], + "acronyms": [ + "MdlS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503017.0", + "preferred": "grid.503017.0" + }, + "Wikidata": { + "all": [ + "Q51780617" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03k2z3e59.json b/v1.49/v1/03k2z3e59.json new file mode 100644 index 000000000..0d0f0c167 --- /dev/null +++ b/v1.49/v1/03k2z3e59.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03k2z3e59", + "name": "KolaDaisi University", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.37756, + "lng": 3.90591, + "state": null, + "state_code": null, + "city": "Ibadan", + "geonames_city": { + "id": 2339354, + "city": "Ibadan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.koladaisiuniversity.edu.ng" + ], + "aliases": [ + "KolaDaisi University, Ibadan" + ], + "acronyms": [ + "KDU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Koladaisi_University", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8341 0899" + ], + "preferred": "0000 0004 8341 0899" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03k37h274.json b/v1.49/v1/03k37h274.json new file mode 100644 index 000000000..3559b6385 --- /dev/null +++ b/v1.49/v1/03k37h274.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/03k37h274", + "name": "Chimie et Biologie de la Cellule", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://curie.fr/unite/umr3666-u1143" + ], + "aliases": [ + "Cellular and chemical biology" + ], + "acronyms": [ + "CBMCT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cellular and Chemical Biology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781882" + ], + "preferred": "Q51781882" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03k3t2d52.json b/v1.49/v1/03k3t2d52.json new file mode 100644 index 000000000..35c3d3d10 --- /dev/null +++ b/v1.49/v1/03k3t2d52.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03k3t2d52", + "name": "Tecnológico Nacional de México Campus San Martín Texmelucan", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.28431, + "lng": -98.43885, + "state": null, + "state_code": null, + "city": "San Martin Texmelucan", + "geonames_city": { + "id": 3518407, + "city": "San Martin Texmelucan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://smartin.tecnm.mx" + ], + "aliases": [ + "ITS de San Martín Texmelucan", + "Instituto Tecnológico Superior de San Martín Texmelucan", + "TecNM Campus San Martín Texmelucan" + ], + "acronyms": [ + "ITSSMT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5917797" + ], + "preferred": "Q5917797" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03k9wer31.json b/v1.49/v1/03k9wer31.json new file mode 100644 index 000000000..848ba860b --- /dev/null +++ b/v1.49/v1/03k9wer31.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03k9wer31", + "name": "PhysicoChimie des Processus de Combustion et de l'Atmosphère", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://pc2a.univ-lille1.fr/" + ], + "aliases": [], + "acronyms": [ + "PC2A" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464061.1", + "preferred": "grid.464061.1" + }, + "ISNI": { + "all": [ + "0000 0004 0368 3943" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ka94606.json b/v1.49/v1/03ka94606.json new file mode 100644 index 000000000..52fd6cee7 --- /dev/null +++ b/v1.49/v1/03ka94606.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03ka94606", + "name": "Hemostase Inflammation Thrombosis", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.81471, + "lng": 2.36073, + "state": null, + "state_code": null, + "city": "Le Kremlin-Bicêtre", + "geonames_city": { + "id": 3003737, + "city": "Le Kremlin-Bicêtre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umrs1176.universite-paris-saclay.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.511260.1", + "preferred": "grid.511260.1" + }, + "Wikidata": { + "all": [ + "Q51781994" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03kbarg82.json b/v1.49/v1/03kbarg82.json new file mode 100644 index 000000000..8d134d772 --- /dev/null +++ b/v1.49/v1/03kbarg82.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/03kbarg82", + "name": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École Nationale Supérieure de Formation de l’Enseignement Agricole", + "type": "Parent", + "id": "https://ror.org/03ac68784" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "Parent", + "id": "https://ror.org/00qhdy563" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lirdef.edu.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "LIRDEF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2191 6219" + ], + "preferred": "0000 0001 2191 6219" + }, + "Wikidata": { + "all": [ + "Q51780451" + ], + "preferred": "Q51780451" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03kf3ks42.json b/v1.49/v1/03kf3ks42.json new file mode 100644 index 000000000..08c06cd84 --- /dev/null +++ b/v1.49/v1/03kf3ks42.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03kf3ks42", + "name": "The Schwarzman Animal Medical Center", + "email_address": null, + "ip_addresses": [], + "established": 1910, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.amcny.org" + ], + "aliases": [ + "Animal Medical Center", + "Schwarzman Animal Medical Center" + ], + "acronyms": [ + "AMC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.413777.1", + "preferred": "grid.413777.1" + }, + "ISNI": { + "all": [ + "0000 0004 0604 2279" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4764852" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03kfkzp90.json b/v1.49/v1/03kfkzp90.json new file mode 100644 index 000000000..c9ddffa65 --- /dev/null +++ b/v1.49/v1/03kfkzp90.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03kfkzp90", + "name": "Institut Universitaire de Recherche Clinique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Related", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iurc.montp.inserm.fr/" + ], + "aliases": [], + "acronyms": [ + "IURC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.411720.1", + "preferred": "grid.411720.1" + }, + "ISNI": { + "all": [ + "0000 0004 0623 3948" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03m8vkq32.json b/v1.49/v1/03m8vkq32.json new file mode 100644 index 000000000..ed30e12c1 --- /dev/null +++ b/v1.49/v1/03m8vkq32.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03m8vkq32", + "name": "Institut National du Cancer", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Cancéropôle Est", + "type": "Child", + "id": "https://ror.org/0050w9p71" + } + ], + "addresses": [ + { + "lat": 48.83545, + "lng": 2.24128, + "state": null, + "state_code": null, + "city": "Boulogne-Billancourt", + "geonames_city": { + "id": 3031137, + "city": "Boulogne-Billancourt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://en.e-cancer.fr/" + ], + "aliases": [], + "acronyms": [ + "INCA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French National Cancer Institute", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.455095.8", + "preferred": "grid.455095.8" + }, + "ISNI": { + "all": [ + "0000 0001 2189 059X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3152443" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03mj9k259.json b/v1.49/v1/03mj9k259.json new file mode 100644 index 000000000..db455443d --- /dev/null +++ b/v1.49/v1/03mj9k259.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/03mj9k259", + "name": "K2", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.70584, + "lng": 13.19321, + "state": null, + "state_code": null, + "city": "Lund", + "geonames_city": { + "id": 2693678, + "city": "Lund", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.k2centrum.se" + ], + "aliases": [ + "K2 - Nationellt kunskapscentrum för kollektivtrafik" + ], + "acronyms": [ + "K2" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "The Swedish Knowledge Centre for Public Transport", + "iso639": "en" + } + ], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0354 5206" + ], + "preferred": "0000 0005 0354 5206" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03mkjjy25.json b/v1.49/v1/03mkjjy25.json new file mode 100644 index 000000000..60973af67 --- /dev/null +++ b/v1.49/v1/03mkjjy25.json @@ -0,0 +1,284 @@ +{ + "id": "https://ror.org/03mkjjy25", + "name": "Université de Versailles Saint-Quentin-en-Yvelines", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales", + "type": "Child", + "id": "https://ror.org/01qm1tk92" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "Child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Groupe d’Étude de la Matière Condensée", + "type": "Child", + "id": "https://ror.org/01wrng808" + }, + { + "label": "Handicap neuromusculaire : Physiopathologie, Biothérapie et Pharmacologie appliquées", + "type": "Child", + "id": "https://ror.org/02nxezb95" + }, + { + "label": "Institut Lavoisier de Versailles", + "type": "Child", + "id": "https://ror.org/05mzd8v39" + }, + { + "label": "Laboratoire Printemps", + "type": "Child", + "id": "https://ror.org/00mdx2x22" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "Child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Soutenabilité et Résilence", + "type": "Child", + "id": "https://ror.org/047rqcm40" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "Child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Laboratoire atmosphères, milieux, observations spatiales", + "type": "Child", + "id": "https://ror.org/05ppf7q77" + }, + { + "label": "Infection et inflammation", + "type": "Child", + "id": "https://ror.org/021sh3243" + }, + { + "label": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "type": "Child", + "id": "https://ror.org/05r0mw364" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "Child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Centre d’histoire culturelle des sociétés contemporaines", + "type": "Child", + "id": "https://ror.org/0087n5v55" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Laboratoire de Droit des affaires et nouvelles technologies", + "type": "Child", + "id": "https://ror.org/04ate5z57" + }, + { + "label": "Données et algorithmes pour une ville intelligente et durable", + "type": "Child", + "id": "https://ror.org/01xta2p78" + }, + { + "label": "Dynamiques patrimoniales et culturelles", + "type": "Child", + "id": "https://ror.org/00cw4qm30" + }, + { + "label": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "type": "Child", + "id": "https://ror.org/023bv6t84" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "Child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Institut de recherches arctiques Jean Malaurie", + "type": "Child", + "id": "https://ror.org/008hxwy89" + }, + { + "label": "Laboratoire Anthropologie, Archéologie, Biologie", + "type": "Child", + "id": "https://ror.org/023b2c435" + }, + { + "label": "Laboratoire de recherche en Management", + "type": "Child", + "id": "https://ror.org/00s4fex77" + }, + { + "label": "Laboratoire de génétique et biologie cellulaire", + "type": "Child", + "id": "https://ror.org/00edzht24" + }, + { + "label": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "type": "Child", + "id": "https://ror.org/01jdptv64" + }, + { + "label": "Laboratoire d’informatique Parallélisme Réseaux Algorithmes Distribués", + "type": "Child", + "id": "https://ror.org/00qyswv14" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes de Versailles", + "type": "Child", + "id": "https://ror.org/01hcc6p91" + }, + { + "label": "Laboratoire physiopathologie et pharmacologie clinique de la douleur", + "type": "Child", + "id": "https://ror.org/02k243t26" + }, + { + "label": "Risques cliniques et sécurité en santé des femmes et en santé périnatale", + "type": "Child", + "id": "https://ror.org/01wc6sh26" + }, + { + "label": "Centre de recherche Versailles Saint-Quentin Institutions Publiques", + "type": "Child", + "id": "https://ror.org/042j26x71" + }, + { + "label": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "type": "Child", + "id": "https://ror.org/05mfwtg94" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Hôpital Raymond-Poincaré", + "type": "Related", + "id": "https://ror.org/03pef0w96" + } + ], + "addresses": [ + { + "lat": 48.80359, + "lng": 2.13424, + "state": null, + "state_code": null, + "city": "Versailles", + "geonames_city": { + "id": 2969679, + "city": "Versailles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uvsq.fr" + ], + "aliases": [], + "acronyms": [ + "UVSQ" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Versailles_Saint-Quentin-en-Yvelines_University", + "labels": [ + { + "label": "Versailles Saint-Quentin-en-Yvelines University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.12832.3a", + "preferred": "grid.12832.3a" + }, + "ISNI": { + "all": [ + "0000 0001 2323 0229" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q186638" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03mw9hb85.json b/v1.49/v1/03mw9hb85.json new file mode 100644 index 000000000..c3bc87db7 --- /dev/null +++ b/v1.49/v1/03mw9hb85.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/03mw9hb85", + "name": "Policie České republiky - Kriminalistický ústav", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.policie.cz/kriminalisticky-ustav-praha.aspx" + ], + "aliases": [ + "Institute of Criminalistics Police of the Czech Republic" + ], + "acronyms": [ + "ICP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03n7grz74.json b/v1.49/v1/03n7grz74.json new file mode 100644 index 000000000..bb4ee30f8 --- /dev/null +++ b/v1.49/v1/03n7grz74.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/03n7grz74", + "name": "Universidad Tecnologica de Tijuana", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.5027, + "lng": -117.00371, + "state": null, + "state_code": null, + "city": "Tijuana", + "geonames_city": { + "id": 3981609, + "city": "Tijuana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uttijuana.edu.mx" + ], + "aliases": [ + "Technological University of Tijuana", + "UTT Tijuana" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03n91q085.json b/v1.49/v1/03n91q085.json new file mode 100644 index 000000000..7c6baca12 --- /dev/null +++ b/v1.49/v1/03n91q085.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03n91q085", + "name": "Centre d'Etudes et de Recherches Administratives, Politiques et Sociales", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ceraps.univ-lille2.fr/en/home.html" + ], + "aliases": [], + "acronyms": [ + "CERAPS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Lille Center for European Research on Administration, Politics and Society", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463825.e", + "preferred": "grid.463825.e" + }, + "ISNI": { + "all": [ + "0000 0001 2150 9779" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03pbmtd68.json b/v1.49/v1/03pbmtd68.json new file mode 100644 index 000000000..66161aec5 --- /dev/null +++ b/v1.49/v1/03pbmtd68.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/03pbmtd68", + "name": "Recherche translationnelle sur le diabète", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Parent", + "id": "https://ror.org/05k9skc85" + }, + { + "label": "European Genomic Institute for Diabetes", + "type": "Parent", + "id": "https://ror.org/05n2c8735" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://translational-research-diabetes.com" + ], + "aliases": [ + "Laboratoire de Recherche Translationnelle sur le Diabète", + "Translational Research Laboratory for Diabetes" + ], + "acronyms": [ + "RTD", + "TRD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783306" + ], + "preferred": "Q51783306" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ppaqb54.json b/v1.49/v1/03ppaqb54.json new file mode 100644 index 000000000..379b5b0d6 --- /dev/null +++ b/v1.49/v1/03ppaqb54.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/03ppaqb54", + "name": "FIR e. V. an der RWTH Aachen", + "email_address": null, + "ip_addresses": [], + "established": 1953, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "RWTH Aachen University", + "type": "Related", + "id": "https://ror.org/04xfq0f34" + } + ], + "addresses": [ + { + "lat": 50.77664, + "lng": 6.08342, + "state": null, + "state_code": null, + "city": "Aachen", + "geonames_city": { + "id": 3247449, + "city": "Aachen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fir.rwth-aachen.de" + ], + "aliases": [ + "FIR (Institute for Industrial Management) at RWTH Aachen University", + "FIR an der RWTH Aachen", + "FIR at RWTH Aachen University", + "FIR e. V. at RWTH Aachen University", + "Forschungsinstitut für Rationalisierung (FIR) e. V. an der RWTH Aachen", + "Forschungsinstitut für Rationalisierung e. V. an der RWTH Aachen" + ], + "acronyms": [ + "FIR" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/FIR_%28Verein%29", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 1087 1094" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1388638" + ], + "preferred": "Q1388638" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03pq2y959.json b/v1.49/v1/03pq2y959.json new file mode 100644 index 000000000..dacf84412 --- /dev/null +++ b/v1.49/v1/03pq2y959.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/03pq2y959", + "name": "Evangelical Presbyterian College of Education, Amedzofe", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Ghana", + "type": "Related", + "id": "https://ror.org/01r22mr83" + } + ], + "addresses": [ + { + "lat": 6.84531, + "lng": 0.4335, + "state": null, + "state_code": null, + "city": "Amedzofe", + "geonames_city": { + "id": 2304791, + "city": "Amedzofe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "E. P. College of Education, Amedzofe", + "Evangelical Presbyterian College of Education in Amedzofe" + ], + "acronyms": [ + "AMECO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Evangelical_Presbyterian_College_of_Education%2C_Amedzofe", + "labels": [ + { + "label": "Kwalejin Ilimi ta Presbyterian na Bishara, Amedzofe", + "iso639": "ha" + } + ], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996965" + ], + "preferred": "Q46996965" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03q1qx424.json b/v1.49/v1/03q1qx424.json new file mode 100644 index 000000000..63b885c8d --- /dev/null +++ b/v1.49/v1/03q1qx424.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03q1qx424", + "name": "Diversity, Genomes and Insects-Microorganisms Interactions", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.montpellier.inra.fr/dgimi_eng/" + ], + "aliases": [], + "acronyms": [ + "DGIMI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Diversité, génomes et interactions micro-organismes-insectes", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503158.a", + "preferred": "grid.503158.a" + }, + "Wikidata": { + "all": [ + "Q61933021" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03q20pc87.json b/v1.49/v1/03q20pc87.json new file mode 100644 index 000000000..5908f1754 --- /dev/null +++ b/v1.49/v1/03q20pc87.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/03q20pc87", + "name": "East of England Secure Data Environment", + "email_address": null, + "ip_addresses": [], + "established": 2024, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.eoe-securedataenvironment.nhs.uk" + ], + "aliases": [], + "acronyms": [ + "EoE SDE", + "EoE SNSDE" + ], + "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.49/v1/03q29s414.json b/v1.49/v1/03q29s414.json new file mode 100644 index 000000000..f9bd894da --- /dev/null +++ b/v1.49/v1/03q29s414.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03q29s414", + "name": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://mics.centralesupelec.fr" + ], + "aliases": [], + "acronyms": [ + "MICS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780222" + ], + "preferred": "Q51780222" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03q7tj736.json b/v1.49/v1/03q7tj736.json new file mode 100644 index 000000000..2889cbf65 --- /dev/null +++ b/v1.49/v1/03q7tj736.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03q7tj736", + "name": "St. Monica's College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1930, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Cape Coast", + "type": "Related", + "id": "https://ror.org/0492nfe34" + } + ], + "addresses": [ + { + "lat": 7.06273, + "lng": -1.4001, + "state": null, + "state_code": null, + "city": "Mampong", + "geonames_city": { + "id": 2298264, + "city": "Mampong", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://monico.edu.gh" + ], + "aliases": [ + "Saint Monica's College of Education", + "St. Monica College of Education" + ], + "acronyms": [ + "MONICO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Monica%27s_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q48780701" + ], + "preferred": "Q48780701" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03q99v794.json b/v1.49/v1/03q99v794.json new file mode 100644 index 000000000..a4c2ef4bb --- /dev/null +++ b/v1.49/v1/03q99v794.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03q99v794", + "name": "Unité Matériaux et Transformations", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "École Nationale Supérieure de Chimie de Lille", + "type": "Parent", + "id": "https://ror.org/041yg4h55" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://umet.univ-lille1.fr/index.php?lang=en" + ], + "aliases": [], + "acronyms": [ + "UMET" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462796.8", + "preferred": "grid.462796.8" + }, + "ISNI": { + "all": [ + "0000 0004 0374 2878" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16511692" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03qb6k992.json b/v1.49/v1/03qb6k992.json new file mode 100644 index 000000000..487acc335 --- /dev/null +++ b/v1.49/v1/03qb6k992.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03qb6k992", + "name": "Quantum Science Center of Guangdong-Hong Kong-Macao Greater Bay Area", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.54554, + "lng": 114.0683, + "state": null, + "state_code": null, + "city": "Shenzhen", + "geonames_city": { + "id": 1795565, + "city": "Shenzhen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.quantumsc.cn" + ], + "aliases": [ + "Guangdong, Hong Kong and Macao Quantum Science Center", + "Quantum Science Center of Guangdong-Hong Kong-Macao Greater Bay Area" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "粤港澳量子科学中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03qgfy688.json b/v1.49/v1/03qgfy688.json new file mode 100644 index 000000000..28f8219eb --- /dev/null +++ b/v1.49/v1/03qgfy688.json @@ -0,0 +1,139 @@ +{ + "id": "https://ror.org/03qgfy688", + "name": "Fédération Ile de France de recherche sur l'environnement", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + }, + { + "label": "Muséum national d'Histoire naturelle", + "type": "Parent", + "id": "https://ror.org/03wkt5x30" + }, + { + "label": "Université Paris-Est Créteil", + "type": "Parent", + "id": "https://ror.org/05ggc9x40" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Fédération FIRE" + ], + "acronyms": [ + "FIRE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783467" + ], + "preferred": "Q51783467" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03qvpys73.json b/v1.49/v1/03qvpys73.json new file mode 100644 index 000000000..1ebe9d1c6 --- /dev/null +++ b/v1.49/v1/03qvpys73.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/03qvpys73", + "name": "Instituto Tecnológico de Aguascalientes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.88234, + "lng": -102.28259, + "state": null, + "state_code": null, + "city": "Aguascalientes", + "geonames_city": { + "id": 4019233, + "city": "Aguascalientes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://aguascalientes.tecnm.mx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03qy9z186.json b/v1.49/v1/03qy9z186.json new file mode 100644 index 000000000..94648d4a4 --- /dev/null +++ b/v1.49/v1/03qy9z186.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03qy9z186", + "name": "Institute for Translational Research in Inflammation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lille-inflammation-research.org" + ], + "aliases": [], + "acronyms": [ + "INFINITE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03r7e7711.json b/v1.49/v1/03r7e7711.json new file mode 100644 index 000000000..e67f0a5f8 --- /dev/null +++ b/v1.49/v1/03r7e7711.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03r7e7711", + "name": "Musée du Louvre-Lens", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Louvre", + "type": "Parent", + "id": "https://ror.org/05k441034" + } + ], + "addresses": [ + { + "lat": 50.4315, + "lng": 2.8331, + "state": null, + "state_code": null, + "city": "Lens", + "geonames_city": { + "id": 6618371, + "city": "Lens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.louvrelens.fr" + ], + "aliases": [ + "Musée du Louvre-Lens" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Louvre-Lens", + "labels": [ + { + "label": "Louvre-Lens", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9470 3320" + ], + "preferred": "0000 0004 9470 3320" + }, + "Wikidata": { + "all": [ + "Q405543" + ], + "preferred": "Q405543" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03rfnpw37.json b/v1.49/v1/03rfnpw37.json new file mode 100644 index 000000000..ea634105d --- /dev/null +++ b/v1.49/v1/03rfnpw37.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03rfnpw37", + "name": "St. Vincent College of Education", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University for Development Studies", + "type": "Related", + "id": "https://ror.org/052nhnq73" + } + ], + "addresses": [ + { + "lat": 9.44272, + "lng": -0.00991, + "state": null, + "state_code": null, + "city": "Yendi", + "geonames_city": { + "id": 2293801, + "city": "Yendi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.stvinceyendi.edu.gh" + ], + "aliases": [ + "Saint Vincent College of Education" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Vincent_College_of_Education", + "labels": [ + { + "label": "Kwalejin Ilimi ta St. Vincent", + "iso639": "ha" + } + ], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q85847309" + ], + "preferred": "Q85847309" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03rvn2t89.json b/v1.49/v1/03rvn2t89.json new file mode 100644 index 000000000..1cdc5e7cc --- /dev/null +++ b/v1.49/v1/03rvn2t89.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/03rvn2t89", + "name": "Institut für Klimaschutz, Energie und Mobilität", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Universität Greifswald", + "type": "Parent", + "id": "https://ror.org/00r1edq15" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ikem.de" + ], + "aliases": [ + "Institute for Climate Protection, Energy and Mobility" + ], + "acronyms": [ + "IKEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.506558.b", + "preferred": "grid.506558.b" + }, + "Wikidata": { + "all": [ + "Q48755940" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03rvrjk28.json b/v1.49/v1/03rvrjk28.json new file mode 100644 index 000000000..4dd11eb98 --- /dev/null +++ b/v1.49/v1/03rvrjk28.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03rvrjk28", + "name": "Facteurs de risque et déterminants moléculaires des maladies liées au vieillissement", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Parent", + "id": "https://ror.org/05k9skc85" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pasteur-lille.fr/centre-de-recherche/unites-de-recherche/facteurs-de-risque-et-determinants-moleculaires-des-maladies-liees-au-vieillissement/" + ], + "aliases": [], + "acronyms": [ + "RID-AGE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03rxtdc22.json b/v1.49/v1/03rxtdc22.json new file mode 100644 index 000000000..35453dbd7 --- /dev/null +++ b/v1.49/v1/03rxtdc22.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03rxtdc22", + "name": "École Normale Supérieure de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Valeurs, Innovations, Politiques, Socialisations et Sports", + "type": "Child", + "id": "https://ror.org/026m1rk14" + }, + { + "label": "Laboratoire Mouvement Sport Santé", + "type": "Child", + "id": "https://ror.org/05b3p7p58" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "Child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.02459, + "lng": -1.74709, + "state": null, + "state_code": null, + "city": "Bruz", + "geonames_city": { + "id": 3029713, + "city": "Bruz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ens-rennes.fr" + ], + "aliases": [ + "ENS Rennes" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure_de_Rennes", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503194.a", + "preferred": "grid.503194.a" + }, + "ISNI": { + "all": [ + "0000 0000 9641 6801" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2852691" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03s61s823.json b/v1.49/v1/03s61s823.json new file mode 100644 index 000000000..3ecc28e03 --- /dev/null +++ b/v1.49/v1/03s61s823.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03s61s823", + "name": "Mitford Hospital, Dhaka", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Sir Salimullah Medical College", + "type": "Related", + "id": "https://ror.org/02kj5x347" + } + ], + "addresses": [ + { + "lat": 23.7104, + "lng": 90.40744, + "state": null, + "state_code": null, + "city": "Dhaka", + "geonames_city": { + "id": 1185241, + "city": "Dhaka", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ssmcmh.gov.bd" + ], + "aliases": [ + "Mitford Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mitford_Hospital%2C_Dhaka", + "labels": [], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q6881560" + ], + "preferred": "Q6881560" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03sbftg39.json b/v1.49/v1/03sbftg39.json new file mode 100644 index 000000000..37ddf99ff --- /dev/null +++ b/v1.49/v1/03sbftg39.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/03sbftg39", + "name": "Institut du Porc", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ifip.asso.fr" + ], + "aliases": [ + "Technical Institute for Pig" + ], + "acronyms": [ + "IFIP", + "ITP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French Pork and Pig Institute", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.435456.5", + "preferred": "grid.435456.5" + }, + "ISNI": { + "all": [ + "0000 0000 8891 6478" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03sbpja79.json b/v1.49/v1/03sbpja79.json new file mode 100644 index 000000000..6a0a179bf --- /dev/null +++ b/v1.49/v1/03sbpja79.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/03sbpja79", + "name": "Department of Health and Social Care", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Genomics England", + "type": "Child", + "id": "https://ror.org/04rxxfz69" + }, + { + "label": "Health Education England", + "type": "Child", + "id": "https://ror.org/00scx1h10" + }, + { + "label": "Human Fertilisation and Embryology Authority", + "type": "Child", + "id": "https://ror.org/023y2na82" + }, + { + "label": "UK Health Security Agency", + "type": "Child", + "id": "https://ror.org/018h10037" + }, + { + "label": "National Health Service", + "type": "Child", + "id": "https://ror.org/02wnqcb97" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gov.uk/government/organisations/department-of-health" + ], + "aliases": [], + "acronyms": [ + "DHSC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Department_of_Health_(United_Kingdom)", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.57981.32", + "preferred": "grid.57981.32" + }, + "Wikidata": { + "all": [ + "Q3044742" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03skccr46.json b/v1.49/v1/03skccr46.json new file mode 100644 index 000000000..91be22c82 --- /dev/null +++ b/v1.49/v1/03skccr46.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03skccr46", + "name": "Guam Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 13.47567, + "lng": 144.74886, + "state": null, + "state_code": null, + "city": "Hagåtña", + "geonames_city": { + "id": 4044012, + "city": "Hagåtña", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.guamhumanitiescouncil.org/" + ], + "aliases": [], + "acronyms": [ + "GHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Guam", + "country_code": "GU" + }, + "external_ids": { + "GRID": { + "all": "grid.465182.c", + "preferred": "grid.465182.c" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03st4jm89.json b/v1.49/v1/03st4jm89.json new file mode 100644 index 000000000..bcd4f7968 --- /dev/null +++ b/v1.49/v1/03st4jm89.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03st4jm89", + "name": "Moscow University of the Ministry of Internal Affairs of Russia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.75222, + "lng": 37.61556, + "state": null, + "state_code": null, + "city": "Moscow", + "geonames_city": { + "id": 524901, + "city": "Moscow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://xn--l1aeji.xn--b1aew.xn--p1ai" + ], + "aliases": [ + "Vladimir Kikot Moscow University of the Ministry of Internal Affairs of Russia", + "Московский университет МВД России" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Moscow_University_of_the_Ministry_of_Internal_Affairs_of_Russia#:~:text=The%20Vladimir%20Kikot%20Moscow%20University,Russian%20Federation%20located%20in%20Moscow.", + "labels": [ + { + "label": "Московский университет Министерства внутренних дел Российской Федерации имени В. Я. Кикотя", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03swgmm98.json b/v1.49/v1/03swgmm98.json new file mode 100644 index 000000000..d1b553259 --- /dev/null +++ b/v1.49/v1/03swgmm98.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/03swgmm98", + "name": "Regional Institute of Education, Mysuru", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.29791, + "lng": 76.63925, + "state": null, + "state_code": null, + "city": "Mysuru", + "geonames_city": { + "id": 1262321, + "city": "Mysuru", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.riemysore.ac.in" + ], + "aliases": [ + "क्षेत्रीय शिक्षा संस्थान, मैसूरु", + "ಪ್ರಾದೇಶಿಕ ಶಿಕ್ಷಣ ಸಂಸ್ಥೆ, ಮೈಸೂರು" + ], + "acronyms": [ + "RIEM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Regional_Institute_of_Education%2C_Mysore", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q65291964" + ], + "preferred": "Q65291964" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03sws5s65.json b/v1.49/v1/03sws5s65.json new file mode 100644 index 000000000..ad8e6034d --- /dev/null +++ b/v1.49/v1/03sws5s65.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03sws5s65", + "name": "Ministry of SMEs and Startups", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Korea Technology and Information Promotion Agency for SMEs", + "type": "Child", + "id": "https://ror.org/02kxx1z36" + } + ], + "addresses": [ + { + "lat": 36.59313, + "lng": 127.29661, + "state": null, + "state_code": null, + "city": "Sejong-Si", + "geonames_city": { + "id": 8659242, + "city": "Sejong-Si", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mss.go.kr" + ], + "aliases": [ + "Ministry of Small and Medium-sized Enterprises (SMEs) and Startups", + "Ministry of Small and Medium-sized Enterprises and Startups" + ], + "acronyms": [ + "MSS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_SMEs_and_Startups", + "labels": [ + { + "label": "중소벤처기업부", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7856 1326" + ], + "preferred": "0000 0004 7856 1326" + }, + "Wikidata": { + "all": [ + "Q33390102" + ], + "preferred": "Q33390102" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03sypqe31.json b/v1.49/v1/03sypqe31.json new file mode 100644 index 000000000..8bab66d63 --- /dev/null +++ b/v1.49/v1/03sypqe31.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/03sypqe31", + "name": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "SMPSD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464173.3", + "preferred": "grid.464173.3" + }, + "ISNI": { + "all": [ + "0000 0004 0369 495X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03t4pc386.json b/v1.49/v1/03t4pc386.json new file mode 100644 index 000000000..e1dea689b --- /dev/null +++ b/v1.49/v1/03t4pc386.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03t4pc386", + "name": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://curie.fr/unite/u830" + ], + "aliases": [ + "Cancer, heterogeneity, instability and plasticity", + "Cancer, hétérogénéité, instabilité et plasticité" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cancer, Heterogeneity, Instability and Plasticity", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783831" + ], + "preferred": "Q51783831" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03t9s7t87.json b/v1.49/v1/03t9s7t87.json new file mode 100644 index 000000000..36a1f6974 --- /dev/null +++ b/v1.49/v1/03t9s7t87.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/03t9s7t87", + "name": "Pathogénèse Bactérienne et Réponses Cellulaires", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ibs.fr/fr/recherche/microbiologie-infection-et-immunite/groupe-pathogenese-bacterienne-et-reponses-cellulaires-attree/?lang=fr" + ], + "aliases": [ + "Groupe Pathogenèse bactérienne et Réponses Cellulaires" + ], + "acronyms": [ + "PB&RC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780850" + ], + "preferred": "Q51780850" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03tap6r50.json b/v1.49/v1/03tap6r50.json new file mode 100644 index 000000000..d4ee73e11 --- /dev/null +++ b/v1.49/v1/03tap6r50.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03tap6r50", + "name": "Institute of Public Administration", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.68773, + "lng": 46.72185, + "state": null, + "state_code": null, + "city": "Riyadh", + "geonames_city": { + "id": 108410, + "city": "Riyadh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ipa.edu.sa" + ], + "aliases": [ + "Institute of Public Administration Saudi Arabia" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "لمعهد الإدارة العامة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Saudi Arabia", + "country_code": "SA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03tg3eb07.json b/v1.49/v1/03tg3eb07.json new file mode 100644 index 000000000..d3507edd3 --- /dev/null +++ b/v1.49/v1/03tg3eb07.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03tg3eb07", + "name": "Bursa Uludağ Üni̇versi̇tesi̇", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.19559, + "lng": 29.06013, + "state": null, + "state_code": null, + "city": "Bursa", + "geonames_city": { + "id": 750269, + "city": "Bursa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uludag.edu.tr" + ], + "aliases": [ + "Bursa Uludağ University", + "Uludağ Üniversites" + ], + "acronyms": [ + "BUÜ" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Uluda%C4%9F_University", + "labels": [], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "GRID": { + "all": "grid.34538.39", + "preferred": "grid.34538.39" + }, + "ISNI": { + "all": [ + "0000 0001 2182 4517" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3247377" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03tnjrr49.json b/v1.49/v1/03tnjrr49.json new file mode 100644 index 000000000..750009bac --- /dev/null +++ b/v1.49/v1/03tnjrr49.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/03tnjrr49", + "name": "Laboratoire AstroParticule et Cosmologie", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Centre National d'Études Spatiales", + "type": "Parent", + "id": "https://ror.org/04h1h0y33" + }, + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Parent", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Observatoire de Paris", + "type": "Parent", + "id": "https://ror.org/029nkcm90" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.apc.univ-paris7.fr/APC_CS/" + ], + "aliases": [], + "acronyms": [ + "APC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Astroparticle_and_Cosmology_Laboratory", + "labels": [ + { + "label": "Astroparticle and Cosmology Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462017.6", + "preferred": "grid.462017.6" + }, + "ISNI": { + "all": [ + "0000 0004 0385 0641" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2868555" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03tv49k22.json b/v1.49/v1/03tv49k22.json new file mode 100644 index 000000000..96871836f --- /dev/null +++ b/v1.49/v1/03tv49k22.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03tv49k22", + "name": "Union Internationale Pour la Conservation de la Nature, Comité Français", + "email_address": null, + "ip_addresses": [], + "established": 1901, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "International Union for Conservation of Nature", + "type": "Parent", + "id": "https://ror.org/04tehfn33" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uicn.fr" + ], + "aliases": [ + "IUCN French Committee", + "UICN Comité Français" + ], + "acronyms": [ + "IUCN FC", + "UICN CF" + ], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Comit%C3%A9_fran%C3%A7ais_de_l'UICN", + "labels": [ + { + "label": "International Union for Conservation of Nature, French Committee", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q74001573" + ], + "preferred": "Q74001573" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ty41p70.json b/v1.49/v1/03ty41p70.json new file mode 100644 index 000000000..8336afb9a --- /dev/null +++ b/v1.49/v1/03ty41p70.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/03ty41p70", + "name": "Corpus Christi College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.24966, + "lng": -123.11934, + "state": null, + "state_code": null, + "city": "Vancouver", + "geonames_city": { + "id": 6173331, + "city": "Vancouver", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://corpuschristi.ca" + ], + "aliases": [ + "Corpus Christi College Canada" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Corpus_Christi_College_%28Vancouver%29", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5172644" + ], + "preferred": "Q5172644" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03vam5b06.json b/v1.49/v1/03vam5b06.json new file mode 100644 index 000000000..f873cb3dc --- /dev/null +++ b/v1.49/v1/03vam5b06.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/03vam5b06", + "name": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CY Cergy Paris Université", + "type": "Parent", + "id": "https://ror.org/043htjv09" + }, + { + "label": "Conservatoire National des Arts et Métiers", + "type": "Parent", + "id": "https://ror.org/0175hh227" + }, + { + "label": "Université Gustave Eiffel", + "type": "Parent", + "id": "https://ror.org/03x42jk29" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.79632, + "lng": 2.33661, + "state": null, + "state_code": null, + "city": "Cachan", + "geonames_city": { + "id": 3029276, + "city": "Cachan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://satie.ens-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "SATIE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Systems and Applications of Information and Energy Technologies", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464043.1", + "preferred": "grid.464043.1" + }, + "ISNI": { + "all": [ + "0000 0004 0370 4273" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262402" + ], + "preferred": "Q30262402" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03vb88585.json b/v1.49/v1/03vb88585.json new file mode 100644 index 000000000..ab6b5add8 --- /dev/null +++ b/v1.49/v1/03vb88585.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03vb88585", + "name": "Abbott Diabetes Care (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Abbott (United States)", + "type": "Parent", + "id": "https://ror.org/0052svj16" + } + ], + "addresses": [ + { + "lat": 37.77099, + "lng": -122.26087, + "state": null, + "state_code": null, + "city": "Alameda", + "geonames_city": { + "id": 5322737, + "city": "Alameda", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.diabetescare.abbott" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Abbott Diabetes Care", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0395 4096" + ], + "preferred": "0000 0004 0395 4096" + }, + "Wikidata": { + "all": [ + "Q45135103" + ], + "preferred": "Q45135103" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03vgfxd91.json b/v1.49/v1/03vgfxd91.json new file mode 100644 index 000000000..e13aab544 --- /dev/null +++ b/v1.49/v1/03vgfxd91.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03vgfxd91", + "name": "Institut Pascal", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ip.univ-bpclermont.fr/index.php/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462221.1", + "preferred": "grid.462221.1" + }, + "ISNI": { + "all": [ + "0000 0004 0638 6434" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03vyv3y87.json b/v1.49/v1/03vyv3y87.json new file mode 100644 index 000000000..3848b8cb1 --- /dev/null +++ b/v1.49/v1/03vyv3y87.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03vyv3y87", + "name": "Haute Technologie Animale Grenobloise", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-grenoble-alpes.fr/recherche/laboratoires-de-recherche/le-pole-chimie-biologie-sante-cbs-/le-pole-chimie-biologie-sante-cbs--580962.kjsp" + ], + "aliases": [ + "High Technology for Animals Grenoble" + ], + "acronyms": [ + "hTAG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03wwjjr94.json b/v1.49/v1/03wwjjr94.json new file mode 100644 index 000000000..0cad8b895 --- /dev/null +++ b/v1.49/v1/03wwjjr94.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03wwjjr94", + "name": "HKU-Pasteur Research Pole", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Hong Kong", + "type": "Related", + "id": "https://ror.org/02zhqgq86" + }, + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 22.27832, + "lng": 114.17469, + "state": null, + "state_code": null, + "city": "Hong Kong", + "geonames_city": { + "id": 1819729, + "city": "Hong Kong", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.hkupasteur.hku.hk/" + ], + "aliases": [], + "acronyms": [ + "HKU-PRP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Hong Kong", + "country_code": "HK" + }, + "external_ids": { + "GRID": { + "all": "grid.482283.7", + "preferred": "grid.482283.7" + }, + "Wikidata": { + "all": [ + "Q30273934" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03x0g1010.json b/v1.49/v1/03x0g1010.json new file mode 100644 index 000000000..ba843d161 --- /dev/null +++ b/v1.49/v1/03x0g1010.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03x0g1010", + "name": "Laboratoire de génie civil et génie mécanique", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Institut National des Sciences Appliquées de Rennes", + "type": "Parent", + "id": "https://ror.org/04xaa4j22" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lgcgm.fr" + ], + "aliases": [], + "acronyms": [ + "LGCGM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783273" + ], + "preferred": "Q51783273" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03x1z2w73.json b/v1.49/v1/03x1z2w73.json new file mode 100644 index 000000000..0279b2529 --- /dev/null +++ b/v1.49/v1/03x1z2w73.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03x1z2w73", + "name": "Laboratoire d'Écologie Alpine", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Université Savoie Mont Blanc", + "type": "Parent", + "id": "https://ror.org/04gqg1a07" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://leca.osug.fr" + ], + "aliases": [], + "acronyms": [ + "LECA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462909.0", + "preferred": "grid.462909.0" + }, + "ISNI": { + "all": [ + "0000 0004 0609 8934" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03xahj211.json b/v1.49/v1/03xahj211.json new file mode 100644 index 000000000..6927bbf6d --- /dev/null +++ b/v1.49/v1/03xahj211.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03xahj211", + "name": "Centre Hospitalier des Pays de Morlaix", + "email_address": null, + "ip_addresses": [], + "established": 1733, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.57784, + "lng": -3.82792, + "state": null, + "state_code": null, + "city": "Morlaix", + "geonames_city": { + "id": 2991772, + "city": "Morlaix", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ch-morlaix.fr" + ], + "aliases": [ + "CH Morlaix", + "Hospital of the Pays de Morlaix" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.477589.0", + "preferred": "grid.477589.0" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03xjwb503.json b/v1.49/v1/03xjwb503.json new file mode 100644 index 000000000..ce358f069 --- /dev/null +++ b/v1.49/v1/03xjwb503.json @@ -0,0 +1,550 @@ +{ + "id": "https://ror.org/03xjwb503", + "name": "Université Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Child", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "type": "Child", + "id": "https://ror.org/05mfwtg94" + }, + { + "label": "CentraleSupélec", + "type": "Child", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Centre de Nanosciences et de Nanotechnologies", + "type": "Child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Informatique, Biologie Intégrative et Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/01aqxgr98" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "Child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Institut des Cellules Souches pour le Traitement et l'Étude des Maladies Monogéniques", + "type": "Child", + "id": "https://ror.org/04g9rt435" + }, + { + "label": "Institut d’Optique Graduate School", + "type": "Child", + "id": "https://ror.org/00d0rke27" + }, + { + "label": "Laboratoire Génie Industriel", + "type": "Child", + "id": "https://ror.org/0455wwj08" + }, + { + "label": "Laboratoire de Physique des 2 Infinis Irène Joliot-Curie", + "type": "Child", + "id": "https://ror.org/03gc1p724" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "Child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratoire de Photonique Quantique et Moléculaire", + "type": "Child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Interactions, Dynamiques et Lasers", + "type": "Child", + "id": "https://ror.org/04dy97z61" + }, + { + "label": "Centre CEA de Saclay", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Child", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Child", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "École Nationale de la Statistique et de l'Administration Économique", + "type": "Child", + "id": "https://ror.org/01fz7mn40" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Child", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "Child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "Child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "SADAPT Science Action Développement - Activités Produits Territoires", + "type": "Child", + "id": "https://ror.org/01cmdgj85" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "Child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "Child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "Child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "Child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "Child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "Child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "Child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "Child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "Centre de Recherche en Design", + "type": "Child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "Child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "Child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "Child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "Child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "Child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "INFRANALYTICS", + "type": "Child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "Child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "type": "Child", + "id": "https://ror.org/05r0mw364" + }, + { + "label": "Centre d’histoire culturelle des sociétés contemporaines", + "type": "Child", + "id": "https://ror.org/0087n5v55" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "type": "Child", + "id": "https://ror.org/023bv6t84" + }, + { + "label": "Institut de recherches arctiques Jean Malaurie", + "type": "Child", + "id": "https://ror.org/008hxwy89" + }, + { + "label": "Laboratoire Anthropologie, Archéologie, Biologie", + "type": "Child", + "id": "https://ror.org/023b2c435" + }, + { + "label": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "type": "Child", + "id": "https://ror.org/01jdptv64" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "Child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "Child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "Child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "Child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Intégrité du génome, ARN et cancer", + "type": "Child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "Child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "Child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "Child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "Child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "Child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "Child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut de Biologie Intégrative de la Cellule", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "Child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "Child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Complexité, Innovation et Activités Motrices et Sportives", + "type": "Child", + "id": "https://ror.org/00k3ph542" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "Child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "Child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratoire de Physique Théorique et Modèles Statistiques", + "type": "Child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "Child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "Child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "Child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "Child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/035gq6r08" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.universite-paris-saclay.fr/fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Paris-Saclay", + "labels": [ + { + "label": "Paris-Saclayko Unibertsitatea", + "iso639": "eu" + }, + { + "label": "Universitat París-Saclay", + "iso639": "ca" + }, + { + "label": "University of Paris-Saclay", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.460789.4", + "preferred": "grid.460789.4" + }, + "ISNI": { + "all": [ + "0000 0004 4910 6535" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q109409389" + ], + "preferred": "Q109409389" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03xkgc756.json b/v1.49/v1/03xkgc756.json new file mode 100644 index 000000000..15136b3cb --- /dev/null +++ b/v1.49/v1/03xkgc756.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03xkgc756", + "name": "Microbiologie Orale, Immunothérapie et Santé", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/microbiologie-orale-immunotherapie-et-sante-micoralis" + ], + "aliases": [], + "acronyms": [ + "MICORALIS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51786161" + ], + "preferred": "Q51786161" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03xvpbd79.json b/v1.49/v1/03xvpbd79.json new file mode 100644 index 000000000..40130a5f8 --- /dev/null +++ b/v1.49/v1/03xvpbd79.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03xvpbd79", + "name": "Robert Bosch (Hungary)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Robert Bosch (Germany)", + "type": "Parent", + "id": "https://ror.org/01fe0jt45" + } + ], + "addresses": [ + { + "lat": 47.49835, + "lng": 19.04045, + "state": null, + "state_code": null, + "city": "Budapest", + "geonames_city": { + "id": 3054643, + "city": "Budapest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bosch.hu" + ], + "aliases": [], + "acronyms": [ + "RBHU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Robert Bosch Kft.", + "iso639": null + } + ], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/03xzagw65.json b/v1.49/v1/03xzagw65.json new file mode 100644 index 000000000..58cacaa31 --- /dev/null +++ b/v1.49/v1/03xzagw65.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03xzagw65", + "name": "Hôpital Lapeyronie", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Centre Hospitalier Universitaire de Montpellier", + "type": "Parent", + "id": "https://ror.org/00mthsf17" + }, + { + "label": "Université de Montpellier", + "type": "Related", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://wwwold.chu-montpellier.fr/fr/presentation_lapeyronie.jsp" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.411572.4", + "preferred": "grid.411572.4" + }, + "ISNI": { + "all": [ + "0000 0004 0638 8990" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03y61y350.json b/v1.49/v1/03y61y350.json new file mode 100644 index 000000000..0e8ec072a --- /dev/null +++ b/v1.49/v1/03y61y350.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03y61y350", + "name": "Imagerie Moléculaire et Stratégies Théranostiques", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://imost.uca.fr" + ], + "aliases": [], + "acronyms": [ + "IMoST" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q111600920" + ], + "preferred": "Q111600920" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03y8mpv07.json b/v1.49/v1/03y8mpv07.json new file mode 100644 index 000000000..14ed671ad --- /dev/null +++ b/v1.49/v1/03y8mpv07.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03y8mpv07", + "name": "Centre de Recherche sur l'Hétéro-Epitaxie et ses Applications", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.63292, + "lng": 6.99911, + "state": null, + "state_code": null, + "city": "Valbonne", + "geonames_city": { + "id": 2971117, + "city": "Valbonne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.crhea.cnrs.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.450300.2", + "preferred": "grid.450300.2" + }, + "ISNI": { + "all": [ + "0000 0004 0369 1863" + ], + "preferred": "0000 0004 0369 1863" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ya3d516.json b/v1.49/v1/03ya3d516.json new file mode 100644 index 000000000..99ac1dca2 --- /dev/null +++ b/v1.49/v1/03ya3d516.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03ya3d516", + "name": "Unité de Taphonomie Médico-Légale", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://utmla.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "UTML&A" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785311" + ], + "preferred": "Q51785311" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03yksw654.json b/v1.49/v1/03yksw654.json new file mode 100644 index 000000000..5cd96a514 --- /dev/null +++ b/v1.49/v1/03yksw654.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/03yksw654", + "name": "Guangdong Technical College of Water Resources and Electric Engineering", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gdsdxy.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E5%B9%BF%E4%B8%9C%E6%B0%B4%E5%88%A9%E7%94%B5%E5%8A%9B%E8%81%8C%E4%B8%9A%E6%8A%80%E6%9C%AF%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "广东水利电力职业技术学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q20063259" + ], + "preferred": "Q20063259" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03yn94905.json b/v1.49/v1/03yn94905.json new file mode 100644 index 000000000..5eb79d9dc --- /dev/null +++ b/v1.49/v1/03yn94905.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03yn94905", + "name": "Fonctions Optiques pour les Technologies de l’information", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences Appliquées de Rennes", + "type": "Parent", + "id": "https://ror.org/04xaa4j22" + }, + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.73264, + "lng": -3.45657, + "state": null, + "state_code": null, + "city": "Lannion", + "geonames_city": { + "id": 3007609, + "city": "Lannion", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://foton.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "FOTON" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463854.8", + "preferred": "grid.463854.8" + }, + "ISNI": { + "all": [ + "0000 0004 0385 1011" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262239" + ], + "preferred": "Q30262239" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03yvemy54.json b/v1.49/v1/03yvemy54.json new file mode 100644 index 000000000..cd0a68f90 --- /dev/null +++ b/v1.49/v1/03yvemy54.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/03yvemy54", + "name": "Unité Mixte de Recherche sur les Herbivores", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + }, + { + "label": "VetAgro Sup", + "type": "Parent", + "id": "https://ror.org/01c7wz417" + } + ], + "addresses": [ + { + "lat": 45.72037, + "lng": 3.01883, + "state": null, + "state_code": null, + "city": "Saint-Genès-Champanelle", + "geonames_city": { + "id": 2980029, + "city": "Saint-Genès-Champanelle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://umrh-bioinfo.clermont.inrae.fr/Intranet/web/UMRH" + ], + "aliases": [ + "UMR1213 Herbivores" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.510767.2", + "preferred": "grid.510767.2" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ywn7d79.json b/v1.49/v1/03ywn7d79.json new file mode 100644 index 000000000..8f6b929e9 --- /dev/null +++ b/v1.49/v1/03ywn7d79.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03ywn7d79", + "name": "Institut de Chimie Organique et Analytique", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université d'Orléans", + "type": "Parent", + "id": "https://ror.org/014zrew76" + } + ], + "addresses": [ + { + "lat": 47.90289, + "lng": 1.90389, + "state": null, + "state_code": null, + "city": "Orléans", + "geonames_city": { + "id": 2989317, + "city": "Orléans", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.icoa.fr/en" + ], + "aliases": [], + "acronyms": [ + "ICOA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Organic and Analytical Chemistry", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462137.5", + "preferred": "grid.462137.5" + }, + "ISNI": { + "all": [ + "0000 0004 0384 8680" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261388" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03ywnpj79.json b/v1.49/v1/03ywnpj79.json new file mode 100644 index 000000000..04c8b9e55 --- /dev/null +++ b/v1.49/v1/03ywnpj79.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03ywnpj79", + "name": "Southern Baptist Theological Seminary", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.25424, + "lng": -85.75941, + "state": null, + "state_code": null, + "city": "Louisville", + "geonames_city": { + "id": 4299276, + "city": "Louisville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sbts.edu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Southern_Baptist_Theological_Seminary", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 8835 8613" + ], + "preferred": "0000 0000 8835 8613" + }, + "Wikidata": { + "all": [ + "Q7569667" + ], + "preferred": "Q7569667" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/03zb6nw87.json b/v1.49/v1/03zb6nw87.json new file mode 100644 index 000000000..28531f775 --- /dev/null +++ b/v1.49/v1/03zb6nw87.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03zb6nw87", + "name": "Nutrition, métabolismes et cancer", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://numecan.fr" + ], + "aliases": [ + "NUMECAN - Nutrition, Metabolisms, and Cancer", + "NUMECAN - Nutrition, métabolismes et cancer", + "Nutrition, Metabolisms, and Cancer" + ], + "acronyms": [ + "NUMECAN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52607118" + ], + "preferred": "Q52607118" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0409gk363.json b/v1.49/v1/0409gk363.json new file mode 100644 index 000000000..1cf3ffecd --- /dev/null +++ b/v1.49/v1/0409gk363.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/0409gk363", + "name": "LACTH - Laboratoire d'Architecture Conception Territoire Histoire Matérialité", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lille.archi.fr/recherche/le-lacth/" + ], + "aliases": [], + "acronyms": [ + "LACTH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/040pk9f39.json b/v1.49/v1/040pk9f39.json new file mode 100644 index 000000000..6bff8df4f --- /dev/null +++ b/v1.49/v1/040pk9f39.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/040pk9f39", + "name": "GHU Paris psychiatrie & neurosciences", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ghu-paris.fr" + ], + "aliases": [ + "GHU Paris psychiatrie and neurosciences", + "Groupe Hospitalier Universitaire Paris psychiatrie & neurosciences", + "Groupe Hospitalier Universitaire Paris psychiatrie and neurosciences" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Groupe_hospitalier_universitaire_Paris_psychiatrie_%26_neurosciences", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q88885968" + ], + "preferred": "Q88885968" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/042cesy50.json b/v1.49/v1/042cesy50.json new file mode 100644 index 000000000..75d57c841 --- /dev/null +++ b/v1.49/v1/042cesy50.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/042cesy50", + "name": "Institut de Physique de Nice", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/institut-de-physique-de-nice-inphyni" + ], + "aliases": [], + "acronyms": [ + "INPHYNI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.497397.7", + "preferred": "grid.497397.7" + }, + "ISNI": { + "all": [ + "0000 0000 9497 6864" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/042cxsy45.json b/v1.49/v1/042cxsy45.json new file mode 100644 index 000000000..02cff1313 --- /dev/null +++ b/v1.49/v1/042cxsy45.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/042cxsy45", + "name": "Institut Pasteur de la Guadeloupe", + "email_address": null, + "ip_addresses": [], + "established": 1924, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 16.273, + "lng": -61.50507, + "state": null, + "state_code": null, + "city": "Les Abymes", + "geonames_city": { + "id": 3578959, + "city": "Les Abymes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur-guadeloupe.fr/" + ], + "aliases": [], + "acronyms": [ + "IPGP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Guadeloupe", + "country_code": "GP" + }, + "external_ids": { + "GRID": { + "all": "grid.452920.8", + "preferred": "grid.452920.8" + }, + "ISNI": { + "all": [ + "0000 0004 5930 4500" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30296498" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/042vxj938.json b/v1.49/v1/042vxj938.json new file mode 100644 index 000000000..03143c27a --- /dev/null +++ b/v1.49/v1/042vxj938.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/042vxj938", + "name": "Karnavati University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.21667, + "lng": 72.68333, + "state": null, + "state_code": null, + "city": "Gandhinagar", + "geonames_city": { + "id": 1271715, + "city": "Gandhinagar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://karnavatiuniversity.edu.in" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Karnavati_University", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q41497702" + ], + "preferred": "Q41497702" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0431hh004.json b/v1.49/v1/0431hh004.json new file mode 100644 index 000000000..67e01df1f --- /dev/null +++ b/v1.49/v1/0431hh004.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0431hh004", + "name": "Institut d'Électronique et des Systèmes", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ies.univ-montp2.fr/" + ], + "aliases": [ + "Institut d’Électronique du Sud" + ], + "acronyms": [ + "IES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461998.b", + "preferred": "grid.461998.b" + }, + "ISNI": { + "all": [ + "0000 0004 0390 3782" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04397qy32.json b/v1.49/v1/04397qy32.json new file mode 100644 index 000000000..bcc163400 --- /dev/null +++ b/v1.49/v1/04397qy32.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/04397qy32", + "name": "Génétique, Diversité, Écophysiologie des Céréales", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Clermont-Auvergne-Rhône-Alpes", + "type": "Parent", + "id": "https://ror.org/04aqtsh50" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.clermont.inra.fr/umr1095_eng/" + ], + "aliases": [], + "acronyms": [ + "GDEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Genetics, Diversity and Ecophysiology of Cereals", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503180.f", + "preferred": "grid.503180.f" + }, + "ISNI": { + "all": [ + "0000 0004 0613 5360" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q52604651" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/043n4fm24.json b/v1.49/v1/043n4fm24.json new file mode 100644 index 000000000..d59ddc0c2 --- /dev/null +++ b/v1.49/v1/043n4fm24.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/043n4fm24", + "name": "Laboratoire Paul Painlevé", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://math.univ-lille1.fr/" + ], + "aliases": [], + "acronyms": [ + "LPP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464003.5", + "preferred": "grid.464003.5" + }, + "ISNI": { + "all": [ + "0000 0004 0368 4081" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/043pfpy19.json b/v1.49/v1/043pfpy19.json new file mode 100644 index 000000000..9e2f37744 --- /dev/null +++ b/v1.49/v1/043pfpy19.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/043pfpy19", + "name": "Laboratoire des Écoulements Géophysiques et Industriels", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.legi.grenoble-inp.fr" + ], + "aliases": [], + "acronyms": [ + "LEGI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Geophysical and Industrial Flows", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462436.1", + "preferred": "grid.462436.1" + }, + "ISNI": { + "all": [ + "0000 0000 8612 8494" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/043wmc583.json b/v1.49/v1/043wmc583.json new file mode 100644 index 000000000..8c218ea74 --- /dev/null +++ b/v1.49/v1/043wmc583.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/043wmc583", + "name": "Institut de Génomique Fonctionnelle", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Montpellier GenomiX", + "type": "Child", + "id": "https://ror.org/00ts9pr54" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.igf.cnrs.fr/index.php/en/" + ], + "aliases": [], + "acronyms": [ + "IGF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute for Functional Genomics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461890.2", + "preferred": "grid.461890.2" + }, + "ISNI": { + "all": [ + "0000 0004 0383 2080" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261344" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/043x6pn39.json b/v1.49/v1/043x6pn39.json new file mode 100644 index 000000000..12cdc3211 --- /dev/null +++ b/v1.49/v1/043x6pn39.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/043x6pn39", + "name": "Hôpital privé du Confluent", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.21725, + "lng": -1.55336, + "state": null, + "state_code": null, + "city": "Nantes", + "geonames_city": { + "id": 2990969, + "city": "Nantes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hopitalpriveconfluent.vivalto-sante.com" + ], + "aliases": [ + "Confluent Private Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.490056.e", + "preferred": "grid.490056.e" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0442rdt85.json b/v1.49/v1/0442rdt85.json new file mode 100644 index 000000000..66a0e2cdb --- /dev/null +++ b/v1.49/v1/0442rdt85.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/0442rdt85", + "name": "Kangda College of Nanjing Medical University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.59845, + "lng": 119.21556, + "state": null, + "state_code": null, + "city": "Lianyungang", + "geonames_city": { + "id": 10859300, + "city": "Lianyungang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kdc.njmu.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/zh-hans/%E5%8D%97%E4%BA%AC%E5%8C%BB%E7%A7%91%E5%A4%A7%E5%AD%A6%E5%BA%B7%E8%BE%BE%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "南京医科大学康达学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q10906664" + ], + "preferred": "Q10906664" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0443n9e75.json b/v1.49/v1/0443n9e75.json new file mode 100644 index 000000000..10c6c4220 --- /dev/null +++ b/v1.49/v1/0443n9e75.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/0443n9e75", + "name": "Université Toulouse-I-Capitole", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Toulouse School of Management Research", + "type": "Child", + "id": "https://ror.org/036yvb369" + }, + { + "label": "Laboratoire d'Économie des Ressources Naturelles", + "type": "Child", + "id": "https://ror.org/05ev54a13" + }, + { + "label": "Laboratoire d’Étude et de Recherche sur l’Économie, les Politiques et les Systèmes Sociaux", + "type": "Child", + "id": "https://ror.org/05tcnbj64" + }, + { + "label": "Institut de Mathématiques de Toulouse", + "type": "Child", + "id": "https://ror.org/014vp6c30" + }, + { + "label": "Université de Toulouse", + "type": "Parent", + "id": "https://ror.org/004raaa70" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ut-capitole.fr/" + ], + "aliases": [], + "acronyms": [ + "UT1" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Toulouse_1_University_Capitole", + "labels": [ + { + "label": "Toulouse 1 Capitole University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.22147.32", + "preferred": "grid.22147.32" + }, + "ISNI": { + "all": [ + "0000 0001 2190 2837" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q590201" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0449rap84.json b/v1.49/v1/0449rap84.json new file mode 100644 index 000000000..0a6a8bf33 --- /dev/null +++ b/v1.49/v1/0449rap84.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0449rap84", + "name": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Parent", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Ministère des Armées", + "type": "Parent", + "id": "https://ror.org/025er3q23" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.63389, + "lng": 2.44417, + "state": null, + "state_code": null, + "city": "Évry-Courcouronnes", + "geonames_city": { + "id": 6454878, + "city": "Évry-Courcouronnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-evry.fr/recherche/unites-de-recherche/sciences-du-vivant/laboratoire-de-biologie-de-lexercice-pour-la-performance-et-la-sante-lbeps.html" + ], + "aliases": [], + "acronyms": [ + "LBEPS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109620334" + ], + "preferred": "Q109620334" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/044g6d731.json b/v1.49/v1/044g6d731.json new file mode 100644 index 000000000..e1e3c681f --- /dev/null +++ b/v1.49/v1/044g6d731.json @@ -0,0 +1,142 @@ +{ + "id": "https://ror.org/044g6d731", + "name": "Savitribai Phule Pune University", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Abasaheb Garware College", + "type": "Related", + "id": "https://ror.org/027g2ne18" + }, + { + "label": "International Institute of Information Technology", + "type": "Related", + "id": "https://ror.org/02dernx73" + }, + { + "label": "King Edward Memorial Hospital Research Centre", + "type": "Related", + "id": "https://ror.org/056yyyw24" + }, + { + "label": "AISSMS Institute of Information Technology", + "type": "Related", + "id": "https://ror.org/01bg3pz19" + }, + { + "label": "Maulana Mukhtar Ahmad Nadvi Technical Campus", + "type": "Related", + "id": "https://ror.org/05yhzgv75" + }, + { + "label": "MIT Academy of Engineering", + "type": "Related", + "id": "https://ror.org/05sjf8653" + }, + { + "label": "Amrutvahini College of Engineering", + "type": "Related", + "id": "https://ror.org/05x2w9m74" + } + ], + "addresses": [ + { + "lat": 18.51957, + "lng": 73.85535, + "state": null, + "state_code": null, + "city": "Pune", + "geonames_city": { + "id": 1259229, + "city": "Pune", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unipune.ac.in/" + ], + "aliases": [ + "University of Poona", + "University of Pune" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Savitribai_Phule_Pune_University", + "labels": [ + { + "label": "Université de pune", + "iso639": "fr" + }, + { + "label": "पुणे विद्यापीठ", + "iso639": "hi" + }, + { + "label": "புனே பல்கலைக் கழகம்", + "iso639": "ta" + }, + { + "label": "ಪುಣೆ ವಿಶ್ವವಿದ್ಯಾಲಯ", + "iso639": "kn" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.32056.32", + "preferred": "grid.32056.32" + }, + "ISNI": { + "all": [ + "0000 0001 2190 9326" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3135913" + ], + "preferred": "Q3135913" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/044ggyg50.json b/v1.49/v1/044ggyg50.json new file mode 100644 index 000000000..d043e1d9d --- /dev/null +++ b/v1.49/v1/044ggyg50.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/044ggyg50", + "name": "Laboratoire Rhéologie et Procédés", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.1787, + "lng": 5.76281, + "state": null, + "state_code": null, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 2978317, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.laboratoire-rheologie-et-procedes.fr" + ], + "aliases": [], + "acronyms": [ + "LRP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503339.f", + "preferred": "grid.503339.f" + }, + "ISNI": { + "all": [ + "0000 0004 0384 3564" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51784373" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/044jxhp58.json b/v1.49/v1/044jxhp58.json new file mode 100644 index 000000000..7b4a70484 --- /dev/null +++ b/v1.49/v1/044jxhp58.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/044jxhp58", + "name": "Ifremer", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire des Sciences de l'Environnement Marin", + "type": "Child", + "id": "https://ror.org/05h929866" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Marine Biodiversity Exploitation and Conservation", + "type": "Child", + "id": "https://ror.org/049dk3691" + }, + { + "label": "Flotte Océanographique Française", + "type": "Child", + "id": "https://ror.org/031t90335" + } + ], + "addresses": [ + { + "lat": 48.39029, + "lng": -4.48628, + "state": null, + "state_code": null, + "city": "Brest", + "geonames_city": { + "id": 3030300, + "city": "Brest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ifremer.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/IFREMER", + "labels": [ + { + "label": "French Research Institute for Exploitation of the Sea", + "iso639": "en" + }, + { + "label": "Institut Français de Recherche pour l'Exploitation de la Mer", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.4825.b", + "preferred": "grid.4825.b" + }, + "ISNI": { + "all": [ + "0000 0004 0641 9240" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1657069" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/044jxv425.json b/v1.49/v1/044jxv425.json new file mode 100644 index 000000000..5ef4e0493 --- /dev/null +++ b/v1.49/v1/044jxv425.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/044jxv425", + "name": "Bacterial Virulence and Chronic Infections", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.83665, + "lng": 4.35788, + "state": null, + "state_code": null, + "city": "Nîmes", + "geonames_city": { + "id": 2990363, + "city": "Nîmes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://u1047.edu.umontpellier.fr/research/" + ], + "aliases": [ + "Bacterial virulence and infectious desease", + "Virulence Bacterienne et Infections Chroniques", + "Virulence bactérienne et maladies infectieuses" + ], + "acronyms": [ + "VBIC", + "VBMI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Virulence Bactérienne et Infections Chroniques", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781209" + ], + "preferred": "Q51781209" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/044kxby82.json b/v1.49/v1/044kxby82.json new file mode 100644 index 000000000..75b1d798d --- /dev/null +++ b/v1.49/v1/044kxby82.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/044kxby82", + "name": "Institut Montpelliérain Alexander Grothendieck", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Related", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://imag.umontpellier.fr" + ], + "aliases": [ + "Institut de Mathématique et de Modélisation de Montpellier" + ], + "acronyms": [ + "I3M", + "IMAG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462511.5", + "preferred": "grid.462511.5" + }, + "Wikidata": { + "all": [ + "Q30261477" + ], + "preferred": "Q30261477" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/044mrv955.json b/v1.49/v1/044mrv955.json new file mode 100644 index 000000000..70a488cd5 --- /dev/null +++ b/v1.49/v1/044mrv955.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/044mrv955", + "name": "Institut d'Études Scientifiques de Cargèse", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Université de Corse Pascal Paoli", + "type": "Parent", + "id": "https://ror.org/050ra0n32" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 42.13629, + "lng": 8.59586, + "state": null, + "state_code": null, + "city": "Cargèse", + "geonames_city": { + "id": 3028606, + "city": "Cargèse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iesc.universita.corsica" + ], + "aliases": [], + "acronyms": [ + "IESC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/044xe8e90.json b/v1.49/v1/044xe8e90.json new file mode 100644 index 000000000..7885ba02a --- /dev/null +++ b/v1.49/v1/044xe8e90.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/044xe8e90", + "name": "Psychologie : Interactions, Temps, Emotions, Cognition", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://psitec.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "PSITEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/0452y0518.json b/v1.49/v1/0452y0518.json new file mode 100644 index 000000000..2fe064649 --- /dev/null +++ b/v1.49/v1/0452y0518.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0452y0518", + "name": "Le réseau des Carnot", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Carnot Institute Qualiment", + "type": "Child", + "id": "https://ror.org/032k75171" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lereseaudescarnot.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "The Carnot Network", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.470811.b", + "preferred": "grid.470811.b" + }, + "Wikidata": { + "all": [ + "Q3214302" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0455vgw31.json b/v1.49/v1/0455vgw31.json new file mode 100644 index 000000000..856e1edf4 --- /dev/null +++ b/v1.49/v1/0455vgw31.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/0455vgw31", + "name": "IMPact de l'Environnement Chimique sur la Santé humaine", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Parent", + "id": "https://ror.org/05k9skc85" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://impecs.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "IMPECS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/0455wwj08.json b/v1.49/v1/0455wwj08.json new file mode 100644 index 000000000..28efa81b2 --- /dev/null +++ b/v1.49/v1/0455wwj08.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/0455wwj08", + "name": "Laboratoire Génie Industriel", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.76507, + "lng": 2.26655, + "state": null, + "state_code": null, + "city": "Châtenay-Malabry", + "geonames_city": { + "id": 3026108, + "city": "Châtenay-Malabry", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lgi.ecp.fr/" + ], + "aliases": [], + "acronyms": [ + "LGI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463993.2", + "preferred": "grid.463993.2" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0459fdx51.json b/v1.49/v1/0459fdx51.json new file mode 100644 index 000000000..b476c452f --- /dev/null +++ b/v1.49/v1/0459fdx51.json @@ -0,0 +1,304 @@ +{ + "id": "https://ror.org/0459fdx51", + "name": "Fédération de Recherche sur l'Energie Solaire", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Université de Bretagne Occidentale", + "type": "Parent", + "id": "https://ror.org/01b8h3982" + }, + { + "label": "Sciences Po Grenoble", + "type": "Parent", + "id": "https://ror.org/03c7zyj82" + }, + { + "label": "École Centrale de Nantes", + "type": "Parent", + "id": "https://ror.org/03nh7d505" + }, + { + "label": "École Centrale de Lyon", + "type": "Parent", + "id": "https://ror.org/05s6rge65" + }, + { + "label": "Institut National des Sciences Appliquées de Lyon", + "type": "Parent", + "id": "https://ror.org/050jn9y42" + }, + { + "label": "École d'Ingénieurs en Chimie et Sciences du Numérique", + "type": "Parent", + "id": "https://ror.org/01cbtr271" + }, + { + "label": "Université Savoie Mont Blanc", + "type": "Parent", + "id": "https://ror.org/04gqg1a07" + }, + { + "label": "École nationale supérieure d'arts et métiers", + "type": "Parent", + "id": "https://ror.org/018pp1107" + }, + { + "label": "Université de Limoges", + "type": "Parent", + "id": "https://ror.org/02cp04407" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Électricité de France (France)", + "type": "Parent", + "id": "https://ror.org/03wb8xz10" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Oniris", + "type": "Parent", + "id": "https://ror.org/05q0ncs32" + }, + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "École Nationale Supérieure d'Architecture de Normandie", + "type": "Parent", + "id": "https://ror.org/00a5dxw64" + }, + { + "label": "IMT Atlantique", + "type": "Parent", + "id": "https://ror.org/030hj3061" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Nantes Université", + "type": "Parent", + "id": "https://ror.org/03gnr7b55" + }, + { + "label": "Institut National Polytechnique de Toulouse", + "type": "Parent", + "id": "https://ror.org/033p9g875" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Université de Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Ecole Nationale du Génie de l'Eau et de l'Environnement de Strasbourg (ENGEES)", + "type": "Parent", + "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Institut National des Sciences Appliquées de Strasbourg", + "type": "Parent", + "id": "https://ror.org/001nta019" + }, + { + "label": "Chimie ParisTech", + "type": "Parent", + "id": "https://ror.org/05q65zh81" + }, + { + "label": "École Nationale Supérieure des Mines de Paris", + "type": "Parent", + "id": "https://ror.org/04y8cs423" + }, + { + "label": "École des Ponts ParisTech", + "type": "Parent", + "id": "https://ror.org/02nwvxz07" + }, + { + "label": "Télécom Paris", + "type": "Parent", + "id": "https://ror.org/01naq7912" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "IMT Mines Albi", + "type": "Parent", + "id": "https://ror.org/00bq8vv83" + }, + { + "label": "Université de Toulon", + "type": "Parent", + "id": "https://ror.org/02m9kbe37" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Institut Polytechnique de Bordeaux", + "type": "Parent", + "id": "https://ror.org/054qv7y42" + }, + { + "label": "Université de Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Aix-Marseille Université", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + }, + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Clermont Auvergne INP", + "type": "Parent", + "id": "https://ror.org/001f39w38" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Parent", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 45.65362, + "lng": 5.8549, + "state": null, + "state_code": null, + "city": "Le Bourget-du-Lac", + "geonames_city": { + "id": 3005081, + "city": "Le Bourget-du-Lac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fedesol.cnrs.fr" + ], + "aliases": [ + "FédESol" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780049" + ], + "preferred": "Q51780049" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0459x4g44.json b/v1.49/v1/0459x4g44.json new file mode 100644 index 000000000..39ae16b46 --- /dev/null +++ b/v1.49/v1/0459x4g44.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/0459x4g44", + "name": "Hypoxie et Physiopathologies cardiovasculaires et respiratoires", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hp2.univ-grenoble-alpes.fr" + ], + "aliases": [ + "Hypoxia and Cardiovascular and Respiratory Physiopathologies Laboratory" + ], + "acronyms": [ + "HP2" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/045ktmd28.json b/v1.49/v1/045ktmd28.json new file mode 100644 index 000000000..f85a2f14d --- /dev/null +++ b/v1.49/v1/045ktmd28.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/045ktmd28", + "name": "Laboratoire National des Champs Magnétiques Intenses", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences Appliquées de Toulouse", + "type": "Parent", + "id": "https://ror.org/01h8pf755" + }, + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Fédération de recherche Matière et Interactions", + "type": "Parent", + "id": "https://ror.org/02wq1s711" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lncmi.cnrs.fr" + ], + "aliases": [ + "French National High Magnetic Field Laboratory", + "National Laboratory for Intense Magnetic Fields" + ], + "acronyms": [ + "LNCMI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/LNCMI", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462694.b", + "preferred": "grid.462694.b" + }, + "ISNI": { + "all": [ + "0000 0004 0369 2620" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q13421865", + "Q39912770" + ], + "preferred": "Q13421865" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/045qszf23.json b/v1.49/v1/045qszf23.json new file mode 100644 index 000000000..c2dffd4aa --- /dev/null +++ b/v1.49/v1/045qszf23.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/045qszf23", + "name": "Institut de Chimie de Clermont-Ferrand", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://iccf.univ-bpclermont.fr" + ], + "aliases": [], + "acronyms": [ + "ICCF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Chemistry of Clermont-Ferrand", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461999.a", + "preferred": "grid.461999.a" + }, + "ISNI": { + "all": [ + "0000 0004 0582 827X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/046fcjp93.json b/v1.49/v1/046fcjp93.json new file mode 100644 index 000000000..383b91f31 --- /dev/null +++ b/v1.49/v1/046fcjp93.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/046fcjp93", + "name": "Instituto Pasteur", + "email_address": null, + "ip_addresses": [], + "established": 1903, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": -23.5475, + "lng": -46.63611, + "state": null, + "state_code": null, + "city": "São Paulo", + "geonames_city": { + "id": 3448439, + "city": "São Paulo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.saude.sp.gov.br/instituto-pasteur/" + ], + "aliases": [ + "Instituto Pasteur São Paulo", + "Pasteur Institute São Paulo" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Instituto_Pasteur_(S%C3%A3o_Paulo)", + "labels": [ + { + "label": "Pasteur Institute", + "iso639": "en" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0955 754X" + ], + "preferred": "0000 0005 0955 754X" + }, + "Wikidata": { + "all": [ + "Q4201403" + ], + "preferred": "Q4201403" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/046hjmc37.json b/v1.49/v1/046hjmc37.json new file mode 100644 index 000000000..64c80c227 --- /dev/null +++ b/v1.49/v1/046hjmc37.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/046hjmc37", + "name": "Laboratoire Charles Fabry", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut d’Optique Graduate School", + "type": "Parent", + "id": "https://ror.org/00d0rke27" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lcf.institutoptique.fr/" + ], + "aliases": [], + "acronyms": [ + "LCF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462674.5", + "preferred": "grid.462674.5" + }, + "ISNI": { + "all": [ + "0000 0001 2265 1734" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261524" + ], + "preferred": "Q30261524" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/046p4xa68.json b/v1.49/v1/046p4xa68.json new file mode 100644 index 000000000..191a0a2cb --- /dev/null +++ b/v1.49/v1/046p4xa68.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/046p4xa68", + "name": "Institut Pasteur de Côte d'Ivoire", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 5.35444, + "lng": -4.00167, + "state": null, + "state_code": null, + "city": "Abidjan", + "geonames_city": { + "id": 2293538, + "city": "Abidjan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur.ci/" + ], + "aliases": [], + "acronyms": [ + "IPCI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ivory Coast", + "country_code": "CI" + }, + "external_ids": { + "GRID": { + "all": "grid.418523.9", + "preferred": "grid.418523.9" + }, + "ISNI": { + "all": [ + "0000 0004 0475 3667" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/046p5eg67.json b/v1.49/v1/046p5eg67.json new file mode 100644 index 000000000..abaae66ed --- /dev/null +++ b/v1.49/v1/046p5eg67.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/046p5eg67", + "name": "Futurum - Akademin för Hälsa och Vård", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Region Jönköpings län", + "type": "Parent", + "id": "https://ror.org/01c98q459" + } + ], + "addresses": [ + { + "lat": 57.78145, + "lng": 14.15618, + "state": null, + "state_code": null, + "city": "Jönköping", + "geonames_city": { + "id": 2702979, + "city": "Jönköping", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rjl.se/om-oss/om-organisationen/Forskning-och-utveckling/forskning-och-larande-i-halso--och-sjukvarden" + ], + "aliases": [ + "Futurum", + "Futurum - Akademin för Hälsa och Vård, Region Jönköpings läns", + "Futurum Academy for Health and Care", + "Futurum Academy for Health and Care, Region Jönköping County" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q112085389" + ], + "preferred": "Q112085389" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/046rm7j60.json b/v1.49/v1/046rm7j60.json new file mode 100644 index 000000000..3fe5c49db --- /dev/null +++ b/v1.49/v1/046rm7j60.json @@ -0,0 +1,203 @@ +{ + "id": "https://ror.org/046rm7j60", + "name": "University of California, Los Angeles", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "California NanoSystems Institute", + "type": "Child", + "id": "https://ror.org/00q7fqf35" + }, + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Cedars-Sinai Medical Center", + "type": "Related", + "id": "https://ror.org/02pammg90" + }, + { + "label": "Education and Research Institute", + "type": "Related", + "id": "https://ror.org/03gkbdq83" + }, + { + "label": "Good Samaritan Hospital", + "type": "Related", + "id": "https://ror.org/05hm6ny55" + }, + { + "label": "Harbor–UCLA Medical Center", + "type": "Related", + "id": "https://ror.org/05h4zj272" + }, + { + "label": "Kern Medical Center", + "type": "Related", + "id": "https://ror.org/01eyb5f38" + }, + { + "label": "The Lundquist Institute", + "type": "Related", + "id": "https://ror.org/025j2nd68" + }, + { + "label": "Martin Luther King, Jr. Community Hospital", + "type": "Related", + "id": "https://ror.org/0253es752" + }, + { + "label": "Mattel Children's Hospital", + "type": "Related", + "id": "https://ror.org/04p5baq95" + }, + { + "label": "Olive View-UCLA Medical Center", + "type": "Related", + "id": "https://ror.org/03b66rp04" + }, + { + "label": "Ronald Reagan UCLA Medical Center", + "type": "Related", + "id": "https://ror.org/04k3jt835" + }, + { + "label": "St. Mary Medical Center", + "type": "Related", + "id": "https://ror.org/0466fwq98" + }, + { + "label": "UCLA Health", + "type": "Related", + "id": "https://ror.org/01d88se56" + }, + { + "label": "UCLA Medical Center", + "type": "Related", + "id": "https://ror.org/04vq5kb54" + }, + { + "label": "VA Long Beach Healthcare System", + "type": "Related", + "id": "https://ror.org/058p1kn93" + }, + { + "label": "VA West Los Angeles Medical Center", + "type": "Related", + "id": "https://ror.org/01xfgtq85" + }, + { + "label": "Jornada Basin Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/05976ta47" + }, + { + "label": "Santa Barbara Coastal Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/05hnkta08" + }, + { + "label": "UCLA Clinical and Translational Science Institute", + "type": "Child", + "id": "https://ror.org/04kpwcf85" + } + ], + "addresses": [ + { + "lat": 34.05223, + "lng": -118.24368, + "state": null, + "state_code": null, + "city": "Los Angeles", + "geonames_city": { + "id": 5368361, + "city": "Los Angeles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ucla.edu" + ], + "aliases": [ + "State Normal School at Los Angeles", + "University of California Southern Branch", + "University of California at Los Angeles" + ], + "acronyms": [ + "UCLA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_California,_Los_Angeles", + "labels": [ + { + "label": "Universidad de California en Los Ángeles", + "iso639": "es" + }, + { + "label": "Université de Californie à Los Angeles", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.19006.3e", + "preferred": "grid.19006.3e" + }, + "ISNI": { + "all": [ + "0000 0000 9632 6718", + "0000 0001 2167 8097" + ], + "preferred": "0000 0001 2167 8097" + }, + "Wikidata": { + "all": [ + "Q174710" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0479azd18.json b/v1.49/v1/0479azd18.json new file mode 100644 index 000000000..ebe1b332b --- /dev/null +++ b/v1.49/v1/0479azd18.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/0479azd18", + "name": "Université de Yaoundé II", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 3.98333, + "lng": 11.6, + "state": null, + "state_code": null, + "city": "Okoa", + "geonames_city": { + "id": 2223226, + "city": "Okoa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-yaounde2.org" + ], + "aliases": [ + "University of Yaoundé II" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Yaound%C3%A9_II", + "labels": [], + "country": { + "country_name": "Cameroon", + "country_code": "CM" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2193 4978" + ], + "preferred": "0000 0001 2193 4978" + }, + "Wikidata": { + "all": [ + "Q3551693" + ], + "preferred": "Q3551693" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/047egvh76.json b/v1.49/v1/047egvh76.json new file mode 100644 index 000000000..24c0beed9 --- /dev/null +++ b/v1.49/v1/047egvh76.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/047egvh76", + "name": "Équipe de Recherche sur l’Utilisation des Données Individuelles en Lien avec la Théorie Économique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Paris-Est Sup", + "type": "Parent", + "id": "https://ror.org/0268ecp52" + }, + { + "label": "Université Gustave Eiffel", + "type": "Parent", + "id": "https://ror.org/03x42jk29" + }, + { + "label": "Université Paris-Est Créteil", + "type": "Parent", + "id": "https://ror.org/05ggc9x40" + } + ], + "addresses": [ + { + "lat": 48.79266, + "lng": 2.46569, + "state": null, + "state_code": null, + "city": "Créteil", + "geonames_city": { + "id": 3022530, + "city": "Créteil", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://erudite.univ-paris-est.fr" + ], + "aliases": [], + "acronyms": [ + "ERUDITE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503225.3", + "preferred": "grid.503225.3" + }, + "Wikidata": { + "all": [ + "Q51784079" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/047y28a09.json b/v1.49/v1/047y28a09.json new file mode 100644 index 000000000..22b921296 --- /dev/null +++ b/v1.49/v1/047y28a09.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/047y28a09", + "name": "Centre de Recherche Droits et Perspectives du droit", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crdp.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "CRDP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781527" + ], + "preferred": "Q51781527" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/048d5xq24.json b/v1.49/v1/048d5xq24.json new file mode 100644 index 000000000..01dbc77e9 --- /dev/null +++ b/v1.49/v1/048d5xq24.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/048d5xq24", + "name": "Laboratoire Lumière, Matière et Interfaces", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lumin.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "LuMIn" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109620694" + ], + "preferred": "Q109620694" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/048t5xm56.json b/v1.49/v1/048t5xm56.json new file mode 100644 index 000000000..fd479c248 --- /dev/null +++ b/v1.49/v1/048t5xm56.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/048t5xm56", + "name": "Kentucky Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 37.98869, + "lng": -84.47772, + "state": null, + "state_code": null, + "city": "Lexington", + "geonames_city": { + "id": 4297983, + "city": "Lexington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kyhumanities.org/" + ], + "aliases": [], + "acronyms": [ + "KHC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kentucky_Humanities_Council", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446826.a", + "preferred": "grid.446826.a" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/048z62t22.json b/v1.49/v1/048z62t22.json new file mode 100644 index 000000000..bc2718ed8 --- /dev/null +++ b/v1.49/v1/048z62t22.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/048z62t22", + "name": "Laboratoire d'Innovation et Numérique pour l'Éducation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/laboratoire-dinnovation-et-numerique-pour-leducation-line" + ], + "aliases": [], + "acronyms": [ + "LINE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/049281z38.json b/v1.49/v1/049281z38.json new file mode 100644 index 000000000..0f1531684 --- /dev/null +++ b/v1.49/v1/049281z38.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/049281z38", + "name": "Ilocos Training and Regional Medical Center", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 16.61591, + "lng": 120.31663, + "state": null, + "state_code": null, + "city": "San Fernando", + "geonames_city": { + "id": 1690033, + "city": "San Fernando", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itrmc.doh.gov.ph" + ], + "aliases": [], + "acronyms": [ + "ITRMC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ilocos_Training_and_Regional_Medical_Center", + "labels": [], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q118868648" + ], + "preferred": "Q118868648" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0492nfe34.json b/v1.49/v1/0492nfe34.json new file mode 100644 index 000000000..f2e748a9d --- /dev/null +++ b/v1.49/v1/0492nfe34.json @@ -0,0 +1,129 @@ +{ + "id": "https://ror.org/0492nfe34", + "name": "University of Cape Coast", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Abetifi Presbyterian College of Education", + "type": "Related", + "id": "https://ror.org/01y434850" + }, + { + "label": "Kibi Presbyterian College of Education", + "type": "Related", + "id": "https://ror.org/01428y038" + }, + { + "label": "Our Lady of Apostles College of Education", + "type": "Related", + "id": "https://ror.org/04t59f227" + }, + { + "label": "Foso College of Education", + "type": "Related", + "id": "https://ror.org/05gedzg25" + }, + { + "label": "Holy Child College of Education", + "type": "Related", + "id": "https://ror.org/00etztf89" + }, + { + "label": "St. Ambrose College of Education", + "type": "Related", + "id": "https://ror.org/02z1r3k29" + }, + { + "label": "Offinso College of Education", + "type": "Related", + "id": "https://ror.org/04nx64s73" + }, + { + "label": "St. Monica's College of Education", + "type": "Related", + "id": "https://ror.org/03q7tj736" + } + ], + "addresses": [ + { + "lat": 5.10535, + "lng": -1.2466, + "state": null, + "state_code": null, + "city": "Cape Coast", + "geonames_city": { + "id": 2302357, + "city": "Cape Coast", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ucc.edu.gh/" + ], + "aliases": [], + "acronyms": [ + "UCC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Cape_Coast", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.413081.f", + "preferred": "grid.413081.f" + }, + "ISNI": { + "all": [ + "0000 0001 2322 8567" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q746079" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0494jpz02.json b/v1.49/v1/0494jpz02.json new file mode 100644 index 000000000..51364ad54 --- /dev/null +++ b/v1.49/v1/0494jpz02.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/0494jpz02", + "name": "Centre de Recherche en Cancérologie de Marseille", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Aix-Marseille Université", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut Paoli-Calmettes", + "type": "Parent", + "id": "https://ror.org/04s3t1g37" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://crcm.marseille.inserm.fr/en/" + ], + "aliases": [], + "acronyms": [ + "CRCM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463833.9", + "preferred": "grid.463833.9" + }, + "ISNI": { + "all": [ + "0000 0004 0572 0656" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0495fxg12.json b/v1.49/v1/0495fxg12.json new file mode 100644 index 000000000..4c7e3ae73 --- /dev/null +++ b/v1.49/v1/0495fxg12.json @@ -0,0 +1,316 @@ +{ + "id": "https://ror.org/0495fxg12", + "name": "Institut Pasteur", + "email_address": null, + "ip_addresses": [], + "established": 1887, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Biology of Infection", + "type": "Child", + "id": "https://ror.org/01x3ftb23" + }, + { + "label": "Department of Genomes & Genetics", + "type": "Child", + "id": "https://ror.org/05etkex69" + }, + { + "label": "Department of Virology", + "type": "Child", + "id": "https://ror.org/01xx2ne27" + }, + { + "label": "Gènes, synapses et cognition", + "type": "Child", + "id": "https://ror.org/027atwb90" + }, + { + "label": "Laboratoire des Systèmes Macromoléculaires et Signalisation", + "type": "Child", + "id": "https://ror.org/053qdb191" + }, + { + "label": "Biologie du Développement et Cellules Souches", + "type": "Child", + "id": "https://ror.org/02af93v77" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "Child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Génomique évolutive, modélisation et santé", + "type": "Child", + "id": "https://ror.org/026ddbz68" + }, + { + "label": "Chimie Biologique pour le Vivant", + "type": "Child", + "id": "https://ror.org/03cjyj977" + }, + { + "label": "Biologie Moléculaire Structurale et Processus Infectieux", + "type": "Child", + "id": "https://ror.org/009b91528" + }, + { + "label": "Organisation Nucléaire et Oncogenèse", + "type": "Child", + "id": "https://ror.org/05q8d3662" + }, + { + "label": "Pathogenèse des infections vasculaires", + "type": "Child", + "id": "https://ror.org/00gjnk018" + }, + { + "label": "InBio: Experimental and Computational Methods for Modeling Cellular Processes", + "type": "Child", + "id": "https://ror.org/01tnxwc41" + }, + { + "label": "Microfluidique Physique et Bio-ingénierie", + "type": "Child", + "id": "https://ror.org/05hvqzx20" + }, + { + "label": "Morphogenèse du coeur", + "type": "Child", + "id": "https://ror.org/0330gay09" + }, + { + "label": "Génomique fonctionnelle comparative", + "type": "Child", + "id": "https://ror.org/016nv8j08" + }, + { + "label": "Mécanismes de l'Hérédité épigénétique", + "type": "Child", + "id": "https://ror.org/00te8p082" + }, + { + "label": "Fondation Voir & Entendre", + "type": "Child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Pasteur Hellenic Institute", + "type": "Related", + "id": "https://ror.org/035cy3r13" + }, + { + "label": "Institut Pasteur de Bangui", + "type": "Related", + "id": "https://ror.org/01ee94y34" + }, + { + "label": "Institut Pasteur de Côte d'Ivoire", + "type": "Related", + "id": "https://ror.org/046p4xa68" + }, + { + "label": "Institut Pasteur de Dakar", + "type": "Related", + "id": "https://ror.org/02ysgwq33" + }, + { + "label": "Institut Pasteur du Maroc", + "type": "Related", + "id": "https://ror.org/04yb4j419" + }, + { + "label": "HKU-Pasteur Research Pole", + "type": "Related", + "id": "https://ror.org/03wwjjr94" + }, + { + "label": "Saint Petersburg Pasteur Institute", + "type": "Related", + "id": "https://ror.org/00kcctq66" + }, + { + "label": "Institut Pasteur in Ho Chi Minh City", + "type": "Related", + "id": "https://ror.org/00g2j5111" + }, + { + "label": "Pasteur Institute of Iran", + "type": "Related", + "id": "https://ror.org/00wqczk30" + }, + { + "label": "Institut Pasteur du Cambodge", + "type": "Related", + "id": "https://ror.org/03ht2dx40" + }, + { + "label": "Istituto Pasteur", + "type": "Related", + "id": "https://ror.org/051v7w268" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Related", + "id": "https://ror.org/05k9skc85" + }, + { + "label": "Sciensano (Belgium)", + "type": "Related", + "id": "https://ror.org/04ejags36" + }, + { + "label": "Stephan Angeloff Institute of Microbiology", + "type": "Related", + "id": "https://ror.org/01q8rrk81" + }, + { + "label": "Institut Pasteur de Nouvelle Calédonie", + "type": "Related", + "id": "https://ror.org/04sqtjj61" + }, + { + "label": "Institut Pasteur d'Algérie", + "type": "Related", + "id": "https://ror.org/052b46n78" + }, + { + "label": "Institut Pasteur Korea", + "type": "Related", + "id": "https://ror.org/04t0zhb48" + }, + { + "label": "Centre Pasteur du Cameroun", + "type": "Related", + "id": "https://ror.org/0259hk390" + }, + { + "label": "Institut Pasteur de Madagascar", + "type": "Related", + "id": "https://ror.org/03fkjvy27" + }, + { + "label": "Institut Pasteur de Tunis", + "type": "Related", + "id": "https://ror.org/04pwyer06" + }, + { + "label": "Institut Pasteur de la Guadeloupe", + "type": "Related", + "id": "https://ror.org/042cxsy45" + }, + { + "label": "Institut Pasteur de la Guyane", + "type": "Related", + "id": "https://ror.org/01fp8z436" + }, + { + "label": "Institut Pasteur de Montevideo", + "type": "Related", + "id": "https://ror.org/04dpm2z73" + }, + { + "label": "Instituto Pasteur", + "type": "Related", + "id": "https://ror.org/046fcjp93" + }, + { + "label": "Institut Pasteur du Laos", + "type": "Related", + "id": "https://ror.org/02qkn0e91" + }, + { + "label": "Institut Pasteur de Nha Trang", + "type": "Related", + "id": "https://ror.org/02m5qpk42" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pasteur.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pasteur_Institute", + "labels": [ + { + "label": "Pasteur Institute", + "iso639": "en" + }, + { + "label": "Pasteur Institutua", + "iso639": "eu" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.428999.7", + "preferred": "grid.428999.7" + }, + "ISNI": { + "all": [ + "0000 0001 2353 6535" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q391083" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/049dk3691.json b/v1.49/v1/049dk3691.json new file mode 100644 index 000000000..0cb244ddc --- /dev/null +++ b/v1.49/v1/049dk3691.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/049dk3691", + "name": "Marine Biodiversity Exploitation and Conservation", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ifremer", + "type": "Parent", + "id": "https://ror.org/044jxhp58" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.4028, + "lng": 3.69278, + "state": null, + "state_code": null, + "city": "Sète", + "geonames_city": { + "id": 2974733, + "city": "Sète", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umr-marbec.fr/en/?lang=fr" + ], + "aliases": [], + "acronyms": [ + "MARBEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503122.7", + "preferred": "grid.503122.7" + }, + "ISNI": { + "all": [ + "0000 0004 0382 8145" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/049s0ch10.json b/v1.49/v1/049s0ch10.json new file mode 100644 index 000000000..1a981e1fd --- /dev/null +++ b/v1.49/v1/049s0ch10.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/049s0ch10", + "name": "Rakon (France)", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Rakon (New Zealand)", + "type": "Parent", + "id": "https://ror.org/04g7xjj37" + } + ], + "addresses": [ + { + "lat": 48.93333, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Gennevilliers", + "geonames_city": { + "id": 3016321, + "city": "Gennevilliers", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rakon.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rakon", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.438622.9", + "preferred": "grid.438622.9" + }, + "Wikidata": { + "all": [ + "Q30292291" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04a6mjk91.json b/v1.49/v1/04a6mjk91.json new file mode 100644 index 000000000..bcbf11ef5 --- /dev/null +++ b/v1.49/v1/04a6mjk91.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/04a6mjk91", + "name": "Hochschuljubiläumsstiftung der Stadt Wien", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.wien.gv.at/amtshelfer/kultur/archiv/forschung/hochschuljubilaeumsfonds.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "University Jubilee Foundation of the City of Vienna", + "iso639": "en" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04abkkz03.json b/v1.49/v1/04abkkz03.json new file mode 100644 index 000000000..95a2110a2 --- /dev/null +++ b/v1.49/v1/04abkkz03.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/04abkkz03", + "name": "Centre International deHautes Etudes Agronomiques Méditerranéennes", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Institut Agronomique Méditerranéen de Montpellier", + "type": "Child", + "id": "https://ror.org/0005r2j17" + }, + { + "label": "ABSys", + "type": "Child", + "id": "https://ror.org/00n2c0309" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ciheam.org" + ], + "aliases": [ + "International Centre for Advanced Mediterranean Agronomic Studies" + ], + "acronyms": [ + "CIHEAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.433092.f", + "preferred": "grid.433092.f" + }, + "ISNI": { + "all": [ + "0000 0004 0411 8970" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2972371" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04abwvq32.json b/v1.49/v1/04abwvq32.json new file mode 100644 index 000000000..f3331663f --- /dev/null +++ b/v1.49/v1/04abwvq32.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04abwvq32", + "name": "Input Output (Singapore)", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 1.28967, + "lng": 103.85007, + "state": null, + "state_code": null, + "city": "Singapore", + "geonames_city": { + "id": 1880252, + "city": "Singapore", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iohk.io" + ], + "aliases": [ + "IOG Singapore Pte Ltd", + "Input Output Global", + "Input Output Hong Kong" + ], + "acronyms": [ + "IOG", + "IOHK" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Singapore", + "country_code": "SG" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04aeaje24.json b/v1.49/v1/04aeaje24.json new file mode 100644 index 000000000..0a3be6495 --- /dev/null +++ b/v1.49/v1/04aeaje24.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04aeaje24", + "name": "Hawai'i Council for the Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 21.30694, + "lng": -157.85833, + "state": null, + "state_code": null, + "city": "Honolulu", + "geonames_city": { + "id": 5856195, + "city": "Honolulu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hihumanities.org/" + ], + "aliases": [], + "acronyms": [ + "HCH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446720.3", + "preferred": "grid.446720.3" + }, + "ISNI": { + "all": [ + "0000 0004 5902 2562" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30258008" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04as3rk94.json b/v1.49/v1/04as3rk94.json new file mode 100644 index 000000000..f60478252 --- /dev/null +++ b/v1.49/v1/04as3rk94.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/04as3rk94", + "name": "Grenoble Institute of Neurosciences", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.20507, + "lng": 5.74629, + "state": null, + "state_code": null, + "city": "La Tronche", + "geonames_city": { + "id": 3006131, + "city": "La Tronche", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://neurosciences.univ-grenoble-alpes.fr/" + ], + "aliases": [], + "acronyms": [ + "GIN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut des Neurosciences de Grenoble", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462307.4", + "preferred": "grid.462307.4" + }, + "ISNI": { + "all": [ + "0000 0004 0429 3736" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3116487" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04axb9j69.json b/v1.49/v1/04axb9j69.json new file mode 100644 index 000000000..198d5fbe6 --- /dev/null +++ b/v1.49/v1/04axb9j69.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/04axb9j69", + "name": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Savoie Mont Blanc", + "type": "Parent", + "id": "https://ror.org/04gqg1a07" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.1787, + "lng": 5.76281, + "state": null, + "state_code": null, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 2978317, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lepmi.grenoble-inp.fr" + ], + "aliases": [ + "Electrochemistry and Physical-Chemistry of Materials and Interfaces" + ], + "acronyms": [ + "LEPMI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503316.2", + "preferred": "grid.503316.2" + }, + "ISNI": { + "all": [ + "0000 0004 0384 7215" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51780640" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04b7zk537.json b/v1.49/v1/04b7zk537.json new file mode 100644 index 000000000..44c183a4b --- /dev/null +++ b/v1.49/v1/04b7zk537.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/04b7zk537", + "name": "TÜV Nord (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1869, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "TÜV Nord (Germany)", + "type": "Parent", + "id": "https://ror.org/00rgfaj93" + } + ], + "addresses": [ + { + "lat": 44.9429, + "lng": -123.0351, + "state": null, + "state_code": null, + "city": "Salem", + "geonames_city": { + "id": 5750162, + "city": "Salem", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tuev-nord-group.com" + ], + "aliases": [ + "TÜV Nord US" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/T%C3%9CV_Nord", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04bgjpg77.json b/v1.49/v1/04bgjpg77.json new file mode 100644 index 000000000..7c1aa9411 --- /dev/null +++ b/v1.49/v1/04bgjpg77.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/04bgjpg77", + "name": "Laboratoire de Physique des Gaz et des Plasmas", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lpgp.universite-paris-saclay.fr" + ], + "aliases": [ + "Laboratory of Gas and Plasma Physics" + ], + "acronyms": [ + "LPGP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462744.7", + "preferred": "grid.462744.7" + }, + "ISNI": { + "all": [ + "0000 0000 9792 877X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261542" + ], + "preferred": "Q30261542" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04bwf3e34.json b/v1.49/v1/04bwf3e34.json new file mode 100644 index 000000000..f8a503b7e --- /dev/null +++ b/v1.49/v1/04bwf3e34.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/04bwf3e34", + "name": "Deutsches Zentrum für Luft- und Raumfahrt e. V. (DLR)", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Helmholtz Association of German Research Centres", + "type": "Parent", + "id": "https://ror.org/0281dp749" + } + ], + "addresses": [ + { + "lat": 50.93333, + "lng": 6.95, + "state": null, + "state_code": null, + "city": "Cologne", + "geonames_city": { + "id": 2886242, + "city": "Cologne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dlr.de" + ], + "aliases": [ + "Deutsches Zentrum für Luft- und Raumfahrt", + "Deutsches Zentrum für Luft- und Raumfahrt e.V", + "German Aerospace Center" + ], + "acronyms": [ + "DLR" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/German_Aerospace_Center", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.7551.6", + "preferred": "grid.7551.6" + }, + "ISNI": { + "all": [ + "0000 0000 8983 7915" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q157332", + "Q38825517" + ], + "preferred": "Q157332" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04c3cen15.json b/v1.49/v1/04c3cen15.json new file mode 100644 index 000000000..d59c6bf5e --- /dev/null +++ b/v1.49/v1/04c3cen15.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/04c3cen15", + "name": "Institut de Chimie et des Matériaux Paris-Est", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Paris-Est Créteil", + "type": "Parent", + "id": "https://ror.org/05ggc9x40" + } + ], + "addresses": [ + { + "lat": 48.76444, + "lng": 2.39139, + "state": null, + "state_code": null, + "city": "Thiais", + "geonames_city": { + "id": 6452035, + "city": "Thiais", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.icmpe.cnrs.fr" + ], + "aliases": [ + "East Paris Institute of Chemistry and Materials Science" + ], + "acronyms": [ + "ICMPE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462444.4", + "preferred": "grid.462444.4" + }, + "ISNI": { + "all": [ + "0000 0000 8626 1156" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q33121454", + "Q30261461" + ], + "preferred": "Q30261461" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04cfvp438.json b/v1.49/v1/04cfvp438.json new file mode 100644 index 000000000..a03db54b5 --- /dev/null +++ b/v1.49/v1/04cfvp438.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04cfvp438", + "name": "CGFNS International, Inc.", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.95238, + "lng": -75.16362, + "state": null, + "state_code": null, + "city": "Philadelphia", + "geonames_city": { + "id": 4560349, + "city": "Philadelphia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cgfns.org" + ], + "aliases": [ + "CGFNS International", + "Commission on Graduates of Foreign Nursing Schools", + "Commission on Graduates of Foreign Nursing Schools International", + "Commission on Graduates of Foreign Nursing Schools International, Inc." + ], + "acronyms": [ + "CGFNS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Commission_on_Graduates_of_Foreign_Nursing_Schools", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9001 9100" + ], + "preferred": "0000 0000 9001 9100" + }, + "Wikidata": { + "all": [ + "Q126888578" + ], + "preferred": "Q126888578" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04cn7g698.json b/v1.49/v1/04cn7g698.json new file mode 100644 index 000000000..ceac1f674 --- /dev/null +++ b/v1.49/v1/04cn7g698.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/04cn7g698", + "name": "Haryana State Council for Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.68287, + "lng": 76.86243, + "state": null, + "state_code": null, + "city": "Panchkula", + "geonames_city": { + "id": 12682393, + "city": "Panchkula", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dst.highereduhry.ac.in" + ], + "aliases": [ + "HSCST" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q45135086" + ], + "preferred": "Q45135086" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04czrrc08.json b/v1.49/v1/04czrrc08.json new file mode 100644 index 000000000..967edf124 --- /dev/null +++ b/v1.49/v1/04czrrc08.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/04czrrc08", + "name": "Bayan Islamic Graduate School", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.85003, + "lng": -87.65005, + "state": null, + "state_code": null, + "city": "Chicago", + "geonames_city": { + "id": 4887398, + "city": "Chicago", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bayanonline.org" + ], + "aliases": [ + "Bayan", + "Bayan Chicago" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bayan_Islamic_Graduate_School", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q23016649" + ], + "preferred": "Q23016649" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04d9hcc21.json b/v1.49/v1/04d9hcc21.json new file mode 100644 index 000000000..333f1547d --- /dev/null +++ b/v1.49/v1/04d9hcc21.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04d9hcc21", + "name": "Arizona Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 33.44838, + "lng": -112.07404, + "state": null, + "state_code": null, + "city": "Phoenix", + "geonames_city": { + "id": 5308655, + "city": "Phoenix", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.azhumanities.org/" + ], + "aliases": [ + "Arizona Humanities Council" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446414.7", + "preferred": "grid.446414.7" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04dese585.json b/v1.49/v1/04dese585.json new file mode 100644 index 000000000..df69efc38 --- /dev/null +++ b/v1.49/v1/04dese585.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/04dese585", + "name": "Indian Institute of Science Bangalore", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 13.021275, + "lng": 77.565769, + "state": null, + "state_code": null, + "city": "Bengaluru", + "geonames_city": { + "id": 1277333, + "city": "Bengaluru", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iisc.ernet.in/" + ], + "aliases": [], + "acronyms": [ + "IISc" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Indian_Institute_of_Science", + "labels": [ + { + "label": "भारतीय विज्ञान संस्थान", + "iso639": "hi" + }, + { + "label": "ভারতীয় বিজ্ঞান সংস্থা", + "iso639": "bn" + }, + { + "label": "ਭਾਰਤੀ ਵਿਗਿਆਨ ਅਦਾਰਾ", + "iso639": "pa" + }, + { + "label": "ભારતીય વિજ્ઞાન સંસ્થા", + "iso639": "gu" + }, + { + "label": "இந்திய அறிவியல் கழகம்", + "iso639": "ta" + }, + { + "label": "ఇండియన్ ఇన్ స్టిట్యూట్ ఆఫ్ సైన్స్", + "iso639": "te" + }, + { + "label": "ಭಾರತೀಯ ವಿಜ್ಞಾನ ಸಂಸ್ಥೆ", + "iso639": "kn" + }, + { + "label": "ഇന്ത്യൻ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് സയൻസ്", + "iso639": "ml" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.34980.36", + "preferred": "grid.34980.36" + }, + "ISNI": { + "all": [ + "0000 0001 0482 5067" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q948720" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04dpm2z73.json b/v1.49/v1/04dpm2z73.json new file mode 100644 index 000000000..8cf0f9521 --- /dev/null +++ b/v1.49/v1/04dpm2z73.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04dpm2z73", + "name": "Institut Pasteur de Montevideo", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": -34.90328, + "lng": -56.18816, + "state": null, + "state_code": null, + "city": "Montevideo", + "geonames_city": { + "id": 3441575, + "city": "Montevideo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur.edu.uy/" + ], + "aliases": [ + "IP Montevideo" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Uruguay", + "country_code": "UY" + }, + "external_ids": { + "GRID": { + "all": "grid.418532.9", + "preferred": "grid.418532.9" + }, + "ISNI": { + "all": [ + "0000 0004 0403 6035" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5917646" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04dse4f93.json b/v1.49/v1/04dse4f93.json new file mode 100644 index 000000000..e6deda982 --- /dev/null +++ b/v1.49/v1/04dse4f93.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04dse4f93", + "name": "Data & Society Research Institute", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://datasociety.net/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.475091.e", + "preferred": "grid.475091.e" + }, + "Wikidata": { + "all": [ + "Q30267905" + ], + "preferred": "Q30267905" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04dsjbp13.json b/v1.49/v1/04dsjbp13.json new file mode 100644 index 000000000..7e5330c07 --- /dev/null +++ b/v1.49/v1/04dsjbp13.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04dsjbp13", + "name": "Maladies RAres du DEveloppement embryonnaire et du MEtabolisme", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://recherche.univ-lille2.fr/fr/la-recherche/annuequipes/sciencesviesante/ea/ea-7364.html?tx_daimitabs_pi1%5Bpid%5D=1247" + ], + "aliases": [ + "Rare Diseases of Embryonic Development and Metabolism from Phenotype to Genotype and Function" + ], + "acronyms": [ + "RADEME" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1242 5863" + ], + "preferred": "0000 0005 1242 5863" + }, + "Wikidata": { + "all": [ + "Q119980821" + ], + "preferred": "Q119980821" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04dy97z61.json b/v1.49/v1/04dy97z61.json new file mode 100644 index 000000000..cf9e0a709 --- /dev/null +++ b/v1.49/v1/04dy97z61.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/04dy97z61", + "name": "Laboratoire Interactions, Dynamiques et Lasers", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CEA Saclay", + "type": "Parent", + "id": "https://ror.org/03n15ch10" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Institut Rayonnement-Matière de Saclay", + "type": "Parent", + "id": "https://ror.org/00cch2r34" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iramis.cea.fr/LIDYL/" + ], + "aliases": [ + "Laboratory Interactions, Dynamics and Lasers" + ], + "acronyms": [ + "LIDYL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "LIDYL, Lasers, Interactions, and Dynamics Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463977.8", + "preferred": "grid.463977.8" + }, + "ISNI": { + "all": [ + "0000 0004 0373 398X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262349" + ], + "preferred": "Q30262349" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04e71td73.json b/v1.49/v1/04e71td73.json new file mode 100644 index 000000000..982524c5f --- /dev/null +++ b/v1.49/v1/04e71td73.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04e71td73", + "name": "École Supérieure des Géomètres et Topographes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.0021, + "lng": 0.20251, + "state": null, + "state_code": null, + "city": "Le Mans", + "geonames_city": { + "id": 3003603, + "city": "Le Mans", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.esgt.cnam.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/%C3%89cole_sup%C3%A9rieure_des_g%C3%A9om%C3%A8tres_et_topographes", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q3578488" + ], + "preferred": "Q3578488" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04e89s906.json b/v1.49/v1/04e89s906.json new file mode 100644 index 000000000..94978472b --- /dev/null +++ b/v1.49/v1/04e89s906.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/04e89s906", + "name": "Laboratoire de Physique des Lasers, Atomes et Molécules", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.phlam.univ-lille1.fr/?lang=en" + ], + "aliases": [], + "acronyms": [ + "PhLAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462765.4", + "preferred": "grid.462765.4" + }, + "ISNI": { + "all": [ + "0000 0004 0368 4014" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04e9t3w40.json b/v1.49/v1/04e9t3w40.json new file mode 100644 index 000000000..c53b8fbf1 --- /dev/null +++ b/v1.49/v1/04e9t3w40.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04e9t3w40", + "name": "Arkansas Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 34.74648, + "lng": -92.28959, + "state": null, + "state_code": null, + "city": "Little Rock", + "geonames_city": { + "id": 4119403, + "city": "Little Rock", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.arkhums.org/" + ], + "aliases": [], + "acronyms": [ + "AHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446426.6", + "preferred": "grid.446426.6" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04ed7fw48.json b/v1.49/v1/04ed7fw48.json new file mode 100644 index 000000000..75eb6b376 --- /dev/null +++ b/v1.49/v1/04ed7fw48.json @@ -0,0 +1,162 @@ +{ + "id": "https://ror.org/04ed7fw48", + "name": "Université de Bretagne Sud", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut de Recherche Dupuy de Lôme", + "type": "Child", + "id": "https://ror.org/03011gg73" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "Child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire de Biotechnologie et Chimie Marines", + "type": "Child", + "id": "https://ror.org/00aytnh12" + }, + { + "label": "Laboratoire de Mathématiques de Bretagne Atlantique", + "type": "Child", + "id": "https://ror.org/02ght4n58" + }, + { + "label": "Laboratoire de Psychologie : Cognition, Comportement, Communication", + "type": "Child", + "id": "https://ror.org/03dgmxj03" + }, + { + "label": "Laboratoire des Sciences et Techniques de l’Information de la Communication et de la Connaissance", + "type": "Child", + "id": "https://ror.org/0266kfd37" + }, + { + "label": "Laboratoire de Génie des Procédés – Environnement – Agro-alimentaire", + "type": "Child", + "id": "https://ror.org/05ngxmx20" + }, + { + "label": "Pôle de Recherche Francophonies, Interculturel, Communication, Sociolinguistique", + "type": "Child", + "id": "https://ror.org/01pxcyx49" + }, + { + "label": "Laboratoire d'études et de recherche en sociologie", + "type": "Child", + "id": "https://ror.org/05ybd2c79" + }, + { + "label": "Héritage et Création dans le Texte et l'Image", + "type": "Child", + "id": "https://ror.org/05fa5kd53" + }, + { + "label": "Laboratoire d’Économie et de Gestion de l'Ouest", + "type": "Child", + "id": "https://ror.org/010rve435" + }, + { + "label": "Laboratoire de recherche en droit", + "type": "Child", + "id": "https://ror.org/036tyjs84" + }, + { + "label": "Temps, Mondes, Sociétés", + "type": "Child", + "id": "https://ror.org/01nhp3z94" + } + ], + "addresses": [ + { + "lat": 47.74817, + "lng": -3.37177, + "state": null, + "state_code": null, + "city": "Lorient", + "geonames_city": { + "id": 2997577, + "city": "Lorient", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-ubs.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Southern_Brittany", + "labels": [ + { + "label": "University of Southern Brittany", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.267180.a", + "preferred": "grid.267180.a" + }, + "ISNI": { + "all": [ + "0000 0001 2168 0285" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1125958" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04eeyfe07.json b/v1.49/v1/04eeyfe07.json new file mode 100644 index 000000000..06aed155c --- /dev/null +++ b/v1.49/v1/04eeyfe07.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04eeyfe07", + "name": "Centre Méditerranéen de l’Environnement et de la Biodiversité", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://labex-cemeb.org" + ], + "aliases": [ + "LabEx CeMEB", + "Mediterranean Centre for Environment and Biodiversity Laboratory of Excellence" + ], + "acronyms": [ + "CeMEB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04ef91678.json b/v1.49/v1/04ef91678.json new file mode 100644 index 000000000..e2d56080a --- /dev/null +++ b/v1.49/v1/04ef91678.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04ef91678", + "name": "Institut de Radiobiologie Cellulaire et Moléculaire", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 48.79325, + "lng": 2.29275, + "state": null, + "state_code": null, + "city": "Fontenay-aux-Roses", + "geonames_city": { + "id": 3017924, + "city": "Fontenay-aux-Roses", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://jacob.cea.fr/drf/ifrancoisjacob/Pages/Departements/IRCM/IRCM.aspx" + ], + "aliases": [], + "acronyms": [ + "IRCM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457291.c", + "preferred": "grid.457291.c" + }, + "ISNI": { + "all": [ + "0000 0004 0412 9127" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30299438" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04ejags36.json b/v1.49/v1/04ejags36.json new file mode 100644 index 000000000..0f7a454f7 --- /dev/null +++ b/v1.49/v1/04ejags36.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04ejags36", + "name": "Sciensano (Belgium)", + "email_address": null, + "ip_addresses": [], + "established": 1904, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sciensano.be/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "GRID": { + "all": "grid.508031.f", + "preferred": "grid.508031.f" + }, + "Wikidata": { + "all": [ + "Q55508919" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04f0j5d06.json b/v1.49/v1/04f0j5d06.json new file mode 100644 index 000000000..cdee1246b --- /dev/null +++ b/v1.49/v1/04f0j5d06.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04f0j5d06", + "name": "Guangzhou College of Commerce", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gcc.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "广州商学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q32180947" + ], + "preferred": "Q32180947" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04f1eek20.json b/v1.49/v1/04f1eek20.json new file mode 100644 index 000000000..728a18e0b --- /dev/null +++ b/v1.49/v1/04f1eek20.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/04f1eek20", + "name": "University of Cyberjaya", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 3.35, + "lng": 101.25, + "state": null, + "state_code": null, + "city": "Kuala Selangor", + "geonames_city": { + "id": 1732891, + "city": "Kuala Selangor", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cyberjaya.edu.my" + ], + "aliases": [ + "Cyberjaya University College of Medical Sciences", + "Kolej Universiti Sains Perubatan Cyberjaya" + ], + "acronyms": [ + "CUCMS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cyberjaya_University_College_of_Medical_Sciences", + "labels": [ + { + "label": "Universiti Cyberjaya", + "iso639": "ms" + } + ], + "country": { + "country_name": "Malaysia", + "country_code": "MY" + }, + "external_ids": { + "GRID": { + "all": "grid.444452.7", + "preferred": "grid.444452.7" + }, + "ISNI": { + "all": [ + "0000 0004 0366 8516" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q22344812" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04f5rw142.json b/v1.49/v1/04f5rw142.json new file mode 100644 index 000000000..4d4fe87ee --- /dev/null +++ b/v1.49/v1/04f5rw142.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04f5rw142", + "name": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "École Centrale de Lille", + "type": "Parent", + "id": "https://ror.org/01x441g73" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lamcube.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "LaMCUBE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7775 6949" + ], + "preferred": "0000 0004 7775 6949" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04fd4a013.json b/v1.49/v1/04fd4a013.json new file mode 100644 index 000000000..e2031e7b0 --- /dev/null +++ b/v1.49/v1/04fd4a013.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04fd4a013", + "name": "Center for Process Studies", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.52345, + "lng": -122.67621, + "state": null, + "state_code": null, + "city": "Portland", + "geonames_city": { + "id": 5746545, + "city": "Portland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ctr4process.org" + ], + "aliases": [ + "ctr4process" + ], + "acronyms": [ + "CPS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Center_for_Process_Studies", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2149 4677" + ], + "preferred": "0000 0001 2149 4677" + }, + "Wikidata": { + "all": [ + "Q5059829" + ], + "preferred": "Q5059829" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04fgntk96.json b/v1.49/v1/04fgntk96.json new file mode 100644 index 000000000..35d0759d0 --- /dev/null +++ b/v1.49/v1/04fgntk96.json @@ -0,0 +1,141 @@ +{ + "id": "https://ror.org/04fgntk96", + "name": "Tara Oceans Systems Ecology & Evolution", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "École Centrale de Nantes", + "type": "Parent", + "id": "https://ror.org/03nh7d505" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "Université de Toulon", + "type": "Parent", + "id": "https://ror.org/02m9kbe37" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "IMT Atlantique", + "type": "Parent", + "id": "https://ror.org/030hj3061" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Nantes Université", + "type": "Parent", + "id": "https://ror.org/03gnr7b55" + }, + { + "label": "Aix-Marseille Université", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fondationtaraocean.org/expedition/tara-oceans/" + ], + "aliases": [ + "Tara Oceans Systems Ecology and Evolution" + ], + "acronyms": [ + "TO-SEE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695136" + ], + "preferred": "Q123695136" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04fr7pd94.json b/v1.49/v1/04fr7pd94.json new file mode 100644 index 000000000..3bf30fc6c --- /dev/null +++ b/v1.49/v1/04fr7pd94.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/04fr7pd94", + "name": "Institut de Chimie Séparative de Marcoule", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "Parent", + "id": "https://ror.org/03sgyqj04" + } + ], + "addresses": [ + { + "lat": 44.16259, + "lng": 4.61974, + "state": null, + "state_code": null, + "city": "Bagnols-sur-Cèze", + "geonames_city": { + "id": 3035396, + "city": "Bagnols-sur-Cèze", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.icsm.fr/" + ], + "aliases": [], + "acronyms": [ + "ICSM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute for the Separation Chemistry in Marcoule", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462049.d", + "preferred": "grid.462049.d" + }, + "ISNI": { + "all": [ + "0000 0004 0384 1091" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261373" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04fsxy317.json b/v1.49/v1/04fsxy317.json new file mode 100644 index 000000000..352b04d02 --- /dev/null +++ b/v1.49/v1/04fsxy317.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/04fsxy317", + "name": "ScanMAT", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://scanmat.univ-rennes1.fr" + ], + "aliases": [ + "Plates-formes de Synthèse Caractérisation ANalyse de la MATière", + "Synthèse Caractérisation Analyse de la Matière" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52607152" + ], + "preferred": "Q52607152" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04g0ktq11.json b/v1.49/v1/04g0ktq11.json new file mode 100644 index 000000000..b616ae8a1 --- /dev/null +++ b/v1.49/v1/04g0ktq11.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/04g0ktq11", + "name": "Bibliothèque Jacques Hadamard", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Institut des Hautes Études Scientifiques", + "type": "Parent", + "id": "https://ror.org/05d5m2r55" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bibliotheque.imo.universite-paris-saclay.fr" + ], + "aliases": [ + "Bibliothèque mathématique Jacques Hadamard" + ], + "acronyms": [ + "BJH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780589" + ], + "preferred": "Q51780589" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04g7xjj37.json b/v1.49/v1/04g7xjj37.json new file mode 100644 index 000000000..6511b809b --- /dev/null +++ b/v1.49/v1/04g7xjj37.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04g7xjj37", + "name": "Rakon (New Zealand)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Rakon (France)", + "type": "Child", + "id": "https://ror.org/049s0ch10" + } + ], + "addresses": [ + { + "lat": -36.84853, + "lng": 174.76349, + "state": null, + "state_code": null, + "city": "Auckland", + "geonames_city": { + "id": 2193733, + "city": "Auckland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rakon.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Rakon", + "iso639": null + } + ], + "country": { + "country_name": "New Zealand", + "country_code": "NZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04g9rt435.json b/v1.49/v1/04g9rt435.json new file mode 100644 index 000000000..81bc9564a --- /dev/null +++ b/v1.49/v1/04g9rt435.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/04g9rt435", + "name": "Institut des Cellules Souches pour le Traitement et l'Étude des Maladies Monogéniques", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Paris 12", + "type": "Parent", + "id": "https://ror.org/00sbttv49" + }, + { + "label": "Association Francaise contre les Myopathies", + "type": "Parent", + "id": "https://ror.org/0162y2387" + }, + { + "label": "Genopole (France)", + "type": "Parent", + "id": "https://ror.org/0380k9k47" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.63389, + "lng": 2.44417, + "state": null, + "state_code": null, + "city": "Évry-Courcouronnes", + "geonames_city": { + "id": 6454878, + "city": "Évry-Courcouronnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.istem.eu/" + ], + "aliases": [], + "acronyms": [ + "I-STEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503216.3", + "preferred": "grid.503216.3" + }, + "ISNI": { + "all": [ + "0000 0004 0618 2124" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q52606886" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04gqg1a07.json b/v1.49/v1/04gqg1a07.json new file mode 100644 index 000000000..9550143c4 --- /dev/null +++ b/v1.49/v1/04gqg1a07.json @@ -0,0 +1,166 @@ +{ + "id": "https://ror.org/04gqg1a07", + "name": "Université Savoie Mont Blanc", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut National de l'Énergie Solaire", + "type": "Child", + "id": "https://ror.org/00qk0vr83" + }, + { + "label": "Institut de Microélectronique, Electromagnétisme et Photonique", + "type": "Child", + "id": "https://ror.org/03taa9n66" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Laboratoire Optimisation de la Conception et Ingénierie de l'Environnement", + "type": "Child", + "id": "https://ror.org/015gaxx73" + }, + { + "label": "Laboratoire d'Annecy-le-Vieux de Physique Théorique", + "type": "Child", + "id": "https://ror.org/010hz2d37" + }, + { + "label": "Laboratoire d'Écologie Alpine", + "type": "Child", + "id": "https://ror.org/03x1z2w73" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "Child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "Child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Langages, Littératures, Sociétés. Études Transfrontalières et Internationales", + "type": "Child", + "id": "https://ror.org/0157h5t87" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "Child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "Laboratoire Inter-universitaire de Psychologie: Personnalité, Cognition, Changement Social", + "type": "Child", + "id": "https://ror.org/03jrb0276" + }, + { + "label": "Laboratoire d’Annecy de Physique des Particules", + "type": "Child", + "id": "https://ror.org/049nhh297" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Laboratoire Interuniversitaire de Biologie de la Motricité", + "type": "Related", + "id": "https://ror.org/03sc1p174" + }, + { + "label": "Centre de Radiofréquences, Optique et Micro-nanoélectronique des Alpes", + "type": "Child", + "id": "https://ror.org/050rs7291" + } + ], + "addresses": [ + { + "lat": 45.56628, + "lng": 5.92079, + "state": null, + "state_code": null, + "city": "Chambéry", + "geonames_city": { + "id": 3027422, + "city": "Chambéry", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-smb.fr/" + ], + "aliases": [ + "Chambéry University", + "University of Savoy Mont Blanc", + "Université de Chambéry" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Savoy", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.5388.6", + "preferred": "grid.5388.6" + }, + "ISNI": { + "all": [ + "0000 0001 2193 5487" + ], + "preferred": "0000 0001 2193 5487" + }, + "Wikidata": { + "all": [ + "Q2496158" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04h1tgj82.json b/v1.49/v1/04h1tgj82.json new file mode 100644 index 000000000..a0b95d000 --- /dev/null +++ b/v1.49/v1/04h1tgj82.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04h1tgj82", + "name": "Humanities North Dakota", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 46.80833, + "lng": -100.78374, + "state": null, + "state_code": null, + "city": "Bismarck", + "geonames_city": { + "id": 5688025, + "city": "Bismarck", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.humanitiesnd.org" + ], + "aliases": [ + "North Dakota Humanities Council" + ], + "acronyms": [ + "HND", + "NDHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447202.7", + "preferred": "grid.447202.7" + }, + "ISNI": { + "all": [ + "0000 0004 5906 1967" + ], + "preferred": "0000 0004 5906 1967" + }, + "Wikidata": { + "all": [ + "Q30258200" + ], + "preferred": "Q30258200" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04h6azc67.json b/v1.49/v1/04h6azc67.json new file mode 100644 index 000000000..a2e05cb6c --- /dev/null +++ b/v1.49/v1/04h6azc67.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/04h6azc67", + "name": "Textron (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1923, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Textron Systems (Germany)", + "type": "Child", + "id": "https://ror.org/02fw8mx86" + }, + { + "label": "Textron Systems (United Kingdom)", + "type": "Child", + "id": "https://ror.org/04y75v050" + }, + { + "label": "Avco (United States)", + "type": "Predecessor", + "id": "https://ror.org/04neq5659" + } + ], + "addresses": [ + { + "lat": 41.82399, + "lng": -71.41283, + "state": null, + "state_code": null, + "city": "Providence", + "geonames_city": { + "id": 5224151, + "city": "Providence", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.textron.com" + ], + "aliases": [ + "Special Yarns" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Textron", + "labels": [ + { + "label": "Textron", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.431960.9", + "preferred": "grid.431960.9" + }, + "ISNI": { + "all": [ + "0000 0001 0625 6494" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2140315" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04hbmw205.json b/v1.49/v1/04hbmw205.json new file mode 100644 index 000000000..33b0e6efc --- /dev/null +++ b/v1.49/v1/04hbmw205.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/04hbmw205", + "name": "Abcerion Diagnostics GmbH (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.31529, + "lng": 8.15037, + "state": null, + "state_code": null, + "city": "Hünfelden", + "geonames_city": { + "id": 3208070, + "city": "Hünfelden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.abcerion-diagnostics.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Abcerion Diagnostics GmbH", + "iso639": null + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04hpfhh92.json b/v1.49/v1/04hpfhh92.json new file mode 100644 index 000000000..7c15a28ac --- /dev/null +++ b/v1.49/v1/04hpfhh92.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/04hpfhh92", + "name": "Hope for Communities and Children Initiative", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.52641, + "lng": 7.43879, + "state": null, + "state_code": null, + "city": "Kaduna", + "geonames_city": { + "id": 2335727, + "city": "Kaduna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.h4ccinitiative.org" + ], + "aliases": [], + "acronyms": [ + "H4CC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04hxnp039.json b/v1.49/v1/04hxnp039.json new file mode 100644 index 000000000..3436675e2 --- /dev/null +++ b/v1.49/v1/04hxnp039.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04hxnp039", + "name": "Danone Nutricia Research (Netherlands)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.09083, + "lng": 5.12222, + "state": null, + "state_code": null, + "city": "Utrecht", + "geonames_city": { + "id": 2745912, + "city": "Utrecht", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.danoneresearch.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Danone Nutricia Research", + "iso639": "en" + } + ], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q112085341" + ], + "preferred": "Q112085341" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04jbt2p93.json b/v1.49/v1/04jbt2p93.json new file mode 100644 index 000000000..cd4d6c9d1 --- /dev/null +++ b/v1.49/v1/04jbt2p93.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04jbt2p93", + "name": "LabEx Chimie des Systèmes Complexes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.58361, + "lng": 7.74806, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 6441375, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Laboratory of Excellence Chemistry of Complex Systems" + ], + "acronyms": [ + "LabEx CSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "LabEx-Chemistry of Complex Systems", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04k5h2q42.json b/v1.49/v1/04k5h2q42.json new file mode 100644 index 000000000..de4ac2617 --- /dev/null +++ b/v1.49/v1/04k5h2q42.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/04k5h2q42", + "name": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Parent", + "id": "https://ror.org/05k9skc85" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "European Genomic Institute for Diabetes", + "type": "Parent", + "id": "https://ror.org/05n2c8735" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.good.cnrs.fr" + ], + "aliases": [ + "Génomique fonctionnelle métabolique (epi) et mécanismes moléculaires impliqués dans le diabète de type 2 et les maladies apparentées", + "Metabolic functional (epi)genomics and their abnormalities in type 2 diabetes and related disorders" + ], + "acronyms": [ + "GI3M" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Metabolic Functional (epi)Genomics and Molecular Mechanisms Involved in type 2 Diabetes and Related Diseases", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04k6k8h87.json b/v1.49/v1/04k6k8h87.json new file mode 100644 index 000000000..c8e31c25b --- /dev/null +++ b/v1.49/v1/04k6k8h87.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/04k6k8h87", + "name": "Faculdade Anhanguera", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -23.02639, + "lng": -45.55528, + "state": null, + "state_code": null, + "city": "Taubaté", + "geonames_city": { + "id": 3446682, + "city": "Taubaté", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.anhanguera.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04k7dar27.json b/v1.49/v1/04k7dar27.json new file mode 100644 index 000000000..d2a16ef9c --- /dev/null +++ b/v1.49/v1/04k7dar27.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/04k7dar27", + "name": "United States Fish and Wildlife Service", + "email_address": null, + "ip_addresses": [], + "established": 1940, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Department of the Interior", + "type": "Parent", + "id": "https://ror.org/03v0pmy70" + }, + { + "label": "NOAA RESTORE Science Program", + "type": "Related", + "id": "https://ror.org/0042xzm63" + } + ], + "addresses": [ + { + "lat": 38.88233, + "lng": -77.17109, + "state": null, + "state_code": null, + "city": "Falls Church", + "geonames_city": { + "id": 4758390, + "city": "Falls Church", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.fws.gov/" + ], + "aliases": [], + "acronyms": [ + "FWS", + "USFWS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_States_Fish_and_Wildlife_Service", + "labels": [ + { + "label": "Servicio de Pesca y Vida Silvestre de los Estados Unidos", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.462979.7", + "preferred": "grid.462979.7" + }, + "ISNI": { + "all": [ + "0000 0001 2287 7477" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q674113" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04kdzy146.json b/v1.49/v1/04kdzy146.json new file mode 100644 index 000000000..6ceee9dd3 --- /dev/null +++ b/v1.49/v1/04kdzy146.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04kdzy146", + "name": "Institute for Humanities and Cultural Studies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ihcs.ac.ir" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "پژوهشگاه علوم انسانی و مطالعات فرهنگی", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5962529" + ], + "preferred": "Q5962529" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04kezy879.json b/v1.49/v1/04kezy879.json new file mode 100644 index 000000000..a8283de90 --- /dev/null +++ b/v1.49/v1/04kezy879.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/04kezy879", + "name": "Risques, Epidémiologie, Territoires, Informations, Education et Santé", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/risques-epidemiologie-territoires-informations-education-et-sante-ure-retines" + ], + "aliases": [], + "acronyms": [ + "RETINES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04kpwcf85.json b/v1.49/v1/04kpwcf85.json new file mode 100644 index 000000000..ffe2a219b --- /dev/null +++ b/v1.49/v1/04kpwcf85.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04kpwcf85", + "name": "UCLA Clinical and Translational Science Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of California, Los Angeles", + "type": "Parent", + "id": "https://ror.org/046rm7j60" + } + ], + "addresses": [ + { + "lat": 34.05223, + "lng": -118.24368, + "state": null, + "state_code": null, + "city": "Los Angeles", + "geonames_city": { + "id": 5368361, + "city": "Los Angeles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ctsi.ucla.edu/researcher-resources/ucla-clinical-and-translational-research-center" + ], + "aliases": [ + "University of California Los Angeles Clinical and Translational Science Institute" + ], + "acronyms": [ + "CTSI", + "UCLA CTSI" + ], + "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.49/v1/04kwqat20.json b/v1.49/v1/04kwqat20.json new file mode 100644 index 000000000..e1330732f --- /dev/null +++ b/v1.49/v1/04kwqat20.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04kwqat20", + "name": "Territoires, Villes, Environnement & Société", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire d'Économie Mathématique et de Microéconomie Appliquée", + "type": "Parent", + "id": "https://ror.org/003ckn545" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université du littoral côte d'opale", + "type": "Parent", + "id": "https://ror.org/02gdcg342" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://tves.univ-lille.fr/" + ], + "aliases": [], + "acronyms": [ + "TVES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503411.2", + "preferred": "grid.503411.2" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04m0m4503.json b/v1.49/v1/04m0m4503.json new file mode 100644 index 000000000..bc60d5839 --- /dev/null +++ b/v1.49/v1/04m0m4503.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/04m0m4503", + "name": "Centre for Nursing Studies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.56494, + "lng": -52.70931, + "state": null, + "state_code": null, + "city": "St. John's", + "geonames_city": { + "id": 6324733, + "city": "St. John's", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cns.easternhealth.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.49/v1/04mz2k452.json b/v1.49/v1/04mz2k452.json new file mode 100644 index 000000000..1434a4768 --- /dev/null +++ b/v1.49/v1/04mz2k452.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04mz2k452", + "name": "Oklahoma Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 35.46756, + "lng": -97.51643, + "state": null, + "state_code": null, + "city": "Oklahoma City", + "geonames_city": { + "id": 4544349, + "city": "Oklahoma City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.okhumanities.org/" + ], + "aliases": [], + "acronyms": [ + "OHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447258.8", + "preferred": "grid.447258.8" + }, + "ISNI": { + "all": [ + "0000 0004 5906 5298" + ], + "preferred": "0000 0004 5906 5298" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04n03q057.json b/v1.49/v1/04n03q057.json new file mode 100644 index 000000000..2d5183ad2 --- /dev/null +++ b/v1.49/v1/04n03q057.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/04n03q057", + "name": "Centre d'études et de recherches en droit des procédures", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/centre-detudes-et-de-recherche-en-droit-des-procedures-cerdp" + ], + "aliases": [], + "acronyms": [ + "CERDP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04n1pzr73.json b/v1.49/v1/04n1pzr73.json new file mode 100644 index 000000000..aa63d456b --- /dev/null +++ b/v1.49/v1/04n1pzr73.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04n1pzr73", + "name": "Mississippi Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 32.29876, + "lng": -90.18481, + "state": null, + "state_code": null, + "city": "Jackson", + "geonames_city": { + "id": 4431410, + "city": "Jackson", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.mshumanities.org/" + ], + "aliases": [], + "acronyms": [ + "MHC " + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447001.6", + "preferred": "grid.447001.6" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04neq5659.json b/v1.49/v1/04neq5659.json new file mode 100644 index 000000000..f0efc2d58 --- /dev/null +++ b/v1.49/v1/04neq5659.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04neq5659", + "name": "Avco (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1929, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Textron (United States)", + "type": "Successor", + "id": "https://ror.org/04h6azc67" + } + ], + "addresses": [ + { + "lat": 41.02649, + "lng": -73.62846, + "state": null, + "state_code": null, + "city": "Greenwich", + "geonames_city": { + "id": 4835395, + "city": "Greenwich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Avco", + "Aviation Corporation" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Avco", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9563 1913" + ], + "preferred": "0000 0000 9563 1913" + }, + "Wikidata": { + "all": [ + "Q16987718" + ], + "preferred": "Q16987718" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04nmj9827.json b/v1.49/v1/04nmj9827.json new file mode 100644 index 000000000..323b7b462 --- /dev/null +++ b/v1.49/v1/04nmj9827.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/04nmj9827", + "name": "Institut Européen des Membranes", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "Parent", + "id": "https://ror.org/03sgyqj04" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iemm.univ-montp2.fr/?lang=en" + ], + "aliases": [], + "acronyms": [ + "IEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461901.b", + "preferred": "grid.461901.b" + }, + "ISNI": { + "all": [ + "0000 0001 2194 0104" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04nqdwb39.json b/v1.49/v1/04nqdwb39.json new file mode 100644 index 000000000..54792b921 --- /dev/null +++ b/v1.49/v1/04nqdwb39.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04nqdwb39", + "name": "Mersin Üniversitesi", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.81196, + "lng": 34.63886, + "state": null, + "state_code": null, + "city": "Mersin", + "geonames_city": { + "id": 304531, + "city": "Mersin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mersin.edu.tr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Mersin_University", + "labels": [ + { + "label": "Mersin University", + "iso639": "en" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "GRID": { + "all": "grid.411691.a", + "preferred": "grid.411691.a" + }, + "ISNI": { + "all": [ + "0000 0001 0694 8546" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1922090" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04nx64s73.json b/v1.49/v1/04nx64s73.json new file mode 100644 index 000000000..5a3f62f51 --- /dev/null +++ b/v1.49/v1/04nx64s73.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/04nx64s73", + "name": "Offinso College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1955, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Cape Coast", + "type": "Related", + "id": "https://ror.org/0492nfe34" + } + ], + "addresses": [ + { + "lat": 6.90483, + "lng": -1.65575, + "state": null, + "state_code": null, + "city": "Offinso", + "geonames_city": { + "id": 2296441, + "city": "Offinso", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ofce.edu.gh" + ], + "aliases": [], + "acronyms": [ + "OFCE", + "OFFINCO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Offinso_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996979" + ], + "preferred": "Q46996979" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04p4jgt68.json b/v1.49/v1/04p4jgt68.json new file mode 100644 index 000000000..d2731cf9d --- /dev/null +++ b/v1.49/v1/04p4jgt68.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04p4jgt68", + "name": "Centre d'Investigation Clinique - Innovation Technologique de Lille", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cic-it-lille.com" + ], + "aliases": [ + "CIC Lille" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4681 4798" + ], + "preferred": "0000 0004 4681 4798" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04p94ax69.json b/v1.49/v1/04p94ax69.json new file mode 100644 index 000000000..66d5de745 --- /dev/null +++ b/v1.49/v1/04p94ax69.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04p94ax69", + "name": "Lille Neurosciences & Cognition", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lilncog.eu" + ], + "aliases": [ + "LilNCog", + "Lille Neurosciences and Cognition" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04p9p1r69.json b/v1.49/v1/04p9p1r69.json new file mode 100644 index 000000000..9e125936b --- /dev/null +++ b/v1.49/v1/04p9p1r69.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04p9p1r69", + "name": "Chengdu Neusoft University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.66667, + "lng": 104.06667, + "state": null, + "state_code": null, + "city": "Chengdu", + "geonames_city": { + "id": 1815286, + "city": "Chengdu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nsu.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Chengdu_Neusoft_University", + "labels": [ + { + "label": "成都东软学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q11074629" + ], + "preferred": "Q11074629" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04pfr1b11.json b/v1.49/v1/04pfr1b11.json new file mode 100644 index 000000000..401f16ea8 --- /dev/null +++ b/v1.49/v1/04pfr1b11.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04pfr1b11", + "name": "Institut Universitaire Européen de la Mer", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université de Bretagne Occidentale", + "type": "Parent", + "id": "https://ror.org/01b8h3982" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.38131, + "lng": -4.61805, + "state": null, + "state_code": null, + "city": "Plouzané", + "geonames_city": { + "id": 2986626, + "city": "Plouzané", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www-iuem.univ-brest.fr" + ], + "aliases": [], + "acronyms": [ + "IUEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "European Institute for Marine Studies", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.466785.e", + "preferred": "grid.466785.e" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04pwyer06.json b/v1.49/v1/04pwyer06.json new file mode 100644 index 000000000..05de9c37c --- /dev/null +++ b/v1.49/v1/04pwyer06.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04pwyer06", + "name": "Institut Pasteur de Tunis", + "email_address": null, + "ip_addresses": [], + "established": 1893, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 36.81897, + "lng": 10.16579, + "state": null, + "state_code": null, + "city": "Tunis", + "geonames_city": { + "id": 2464470, + "city": "Tunis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur.tn/" + ], + "aliases": [], + "acronyms": [ + "IPT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Tunisia", + "country_code": "TN" + }, + "external_ids": { + "GRID": { + "all": "grid.418517.e", + "preferred": "grid.418517.e" + }, + "ISNI": { + "all": [ + "0000 0001 2298 7385" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04pwyfk22.json b/v1.49/v1/04pwyfk22.json new file mode 100644 index 000000000..9563e494d --- /dev/null +++ b/v1.49/v1/04pwyfk22.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04pwyfk22", + "name": "Hôpital Saint Eloi", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Centre Hospitalier Universitaire de Montpellier", + "type": "Parent", + "id": "https://ror.org/00mthsf17" + }, + { + "label": "Université de Montpellier", + "type": "Related", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.chu-montpellier.fr/fr/recherche/?tx_indexedsearch%5Bsword%5D=H%C3%B4pital+Saint+Eloi" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.414352.5", + "preferred": "grid.414352.5" + }, + "ISNI": { + "all": [ + "0000 0001 0242 9378" + ], + "preferred": "0000 0001 0242 9378" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04px4e658.json b/v1.49/v1/04px4e658.json new file mode 100644 index 000000000..d7fb05e8a --- /dev/null +++ b/v1.49/v1/04px4e658.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/04px4e658", + "name": "Délégation Alpes", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire d'Economie Appliquée de Grenoble", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Institut pour l'avancée des biosciences", + "type": "Child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Institut des Géosciences de l'Environnement", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratory of Fundamental and Applied Bioenergetics", + "type": "Child", + "id": "https://ror.org/05514hp74" + }, + { + "label": "Laboratoire de Linguistique et Didactique des Langues Etrangères et Maternelles", + "type": "Child", + "id": "https://ror.org/05588ks88" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.alpes.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "DR11" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457026.2", + "preferred": "grid.457026.2" + }, + "Wikidata": { + "all": [ + "Q30299256" + ], + "preferred": "Q30299256" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04q29nn62.json b/v1.49/v1/04q29nn62.json new file mode 100644 index 000000000..ba4ee5872 --- /dev/null +++ b/v1.49/v1/04q29nn62.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/04q29nn62", + "name": "OncoThAI", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.oncothai.fr" + ], + "aliases": [ + "OncoThAI - Therapies Assistées par Lasers et Immunothérapies pour l’Oncologie", + "Therapies Assistées par Lasers et Immunothérapies pour l’Oncologie" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7780 8884" + ], + "preferred": "0000 0004 7780 8884" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04q35v833.json b/v1.49/v1/04q35v833.json new file mode 100644 index 000000000..d91a29c98 --- /dev/null +++ b/v1.49/v1/04q35v833.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04q35v833", + "name": "Maison de Sante Protestante de Bordeaux-Bagatelle", + "email_address": null, + "ip_addresses": [], + "established": 1863, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.80849, + "lng": -0.58915, + "state": null, + "state_code": null, + "city": "Talence", + "geonames_city": { + "id": 2973495, + "city": "Talence", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mspb.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.490642.d", + "preferred": "grid.490642.d" + }, + "ISNI": { + "all": [ + "0000 0001 0136 2140" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04qa46285.json b/v1.49/v1/04qa46285.json new file mode 100644 index 000000000..89224a671 --- /dev/null +++ b/v1.49/v1/04qa46285.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04qa46285", + "name": "Dietrich Bonhoeffer Klinikum", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Universität Greifswald", + "type": "Related", + "id": "https://ror.org/00r1edq15" + } + ], + "addresses": [ + { + "lat": 53.56414, + "lng": 13.27532, + "state": null, + "state_code": null, + "city": "Neubrandenburg", + "geonames_city": { + "id": 2866135, + "city": "Neubrandenburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://dbknb.de/" + ], + "aliases": [], + "acronyms": [ + "DBK" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.491786.5", + "preferred": "grid.491786.5" + }, + "ISNI": { + "all": [ + "0000 0001 0211 9062" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04qsamf92.json b/v1.49/v1/04qsamf92.json new file mode 100644 index 000000000..41dc453c5 --- /dev/null +++ b/v1.49/v1/04qsamf92.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04qsamf92", + "name": "United Nations Office for Outer Space Affairs", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "United Nations", + "type": "Parent", + "id": "https://ror.org/006kxhp52" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unoosa.org" + ], + "aliases": [], + "acronyms": [ + "UN-OOSA", + "UNOOSA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_Nations_Office_for_Outer_Space_Affairs", + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0450 2550" + ], + "preferred": "0000 0004 0450 2550" + }, + "Wikidata": { + "all": [ + "Q699152" + ], + "preferred": "Q699152" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04r56ky81.json b/v1.49/v1/04r56ky81.json new file mode 100644 index 000000000..198a9aef9 --- /dev/null +++ b/v1.49/v1/04r56ky81.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04r56ky81", + "name": "Capital College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.87111, + "lng": -79.43725, + "state": null, + "state_code": null, + "city": "Richmond Hill", + "geonames_city": { + "id": 6122091, + "city": "Richmond Hill", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.capitalcollege.ca" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1358 7581" + ], + "preferred": "0000 0005 1358 7581" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04r5ddq29.json b/v1.49/v1/04r5ddq29.json new file mode 100644 index 000000000..fe96ca602 --- /dev/null +++ b/v1.49/v1/04r5ddq29.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04r5ddq29", + "name": "École Pour l'Informatique et les Techniques Avancées", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.81471, + "lng": 2.36073, + "state": null, + "state_code": null, + "city": "Le Kremlin-Bicêtre", + "geonames_city": { + "id": 3003737, + "city": "Le Kremlin-Bicêtre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.epita.fr/international/" + ], + "aliases": [], + "acronyms": [ + "EPITA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_pour_l%27informatique_et_les_techniques_avanc%C3%A9es", + "labels": [ + { + "label": "Graduate School of Computer Science and Advanced Technologies", + "iso639": "en" + }, + { + "label": "École pour l'informatique et les techniques avancées", + "iso639": "oc" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.454219.f", + "preferred": "grid.454219.f" + }, + "Wikidata": { + "all": [ + "Q1702850" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04r8mt206.json b/v1.49/v1/04r8mt206.json new file mode 100644 index 000000000..316a54fb4 --- /dev/null +++ b/v1.49/v1/04r8mt206.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/04r8mt206", + "name": "Yamaguchi Heisei Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.16297, + "lng": 132.22, + "state": null, + "state_code": null, + "city": "Iwakuni", + "geonames_city": { + "id": 1861212, + "city": "Iwakuni", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://yamaguchihp.jp" + ], + "aliases": [ + "山口平成病院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04rz0sq59.json b/v1.49/v1/04rz0sq59.json new file mode 100644 index 000000000..c3d48ec13 --- /dev/null +++ b/v1.49/v1/04rz0sq59.json @@ -0,0 +1,65 @@ +{ + "id": "https://ror.org/04rz0sq59", + "name": "Candys Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [], + "addresses": [ + { + "lat": 47.14151, + "lng": 9.52154, + "state": null, + "state_code": null, + "city": "Vaduz", + "geonames_city": { + "id": 3042030, + "city": "Vaduz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Liechtenstein", + "country_code": "LI" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04s14fd24.json b/v1.49/v1/04s14fd24.json new file mode 100644 index 000000000..8d61ddaee --- /dev/null +++ b/v1.49/v1/04s14fd24.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04s14fd24", + "name": "Xingzhi College Zhejiang Normal University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.10678, + "lng": 119.64421, + "state": null, + "state_code": null, + "city": "Jinhua", + "geonames_city": { + "id": 1805528, + "city": "Jinhua", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.zjxz.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E6%B5%99%E6%B1%9F%E5%B8%88%E8%8C%83%E5%A4%A7%E5%AD%A6%E8%A1%8C%E7%9F%A5%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "浙江师范大学行知学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q60994106" + ], + "preferred": "Q60994106" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04s3t1g37.json b/v1.49/v1/04s3t1g37.json new file mode 100644 index 000000000..defc02aaa --- /dev/null +++ b/v1.49/v1/04s3t1g37.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04s3t1g37", + "name": "Institut Paoli-Calmettes", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "Child", + "id": "https://ror.org/0494jpz02" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.institutpaolicalmettes.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute Paoli-Calmettes", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418443.e", + "preferred": "grid.418443.e" + }, + "ISNI": { + "all": [ + "0000 0004 0598 4440" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04s6kmw55.json b/v1.49/v1/04s6kmw55.json new file mode 100644 index 000000000..befd08879 --- /dev/null +++ b/v1.49/v1/04s6kmw55.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04s6kmw55", + "name": "Arsi University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.95, + "lng": 39.13333, + "state": null, + "state_code": null, + "city": "Āsela", + "geonames_city": { + "id": 343370, + "city": "Āsela", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://arsiun.edu.et" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Arsi_University", + "labels": [], + "country": { + "country_name": "Ethiopia", + "country_code": "ET" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q25106087" + ], + "preferred": "Q25106087" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04s92nm86.json b/v1.49/v1/04s92nm86.json new file mode 100644 index 000000000..ba7745014 --- /dev/null +++ b/v1.49/v1/04s92nm86.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/04s92nm86", + "name": "Laboratoire de Recherche Translationnelle en Oncologie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.centreantoinelacassagne.org/recherche/le-laboratoire-recherche-translationnelle-en-oncologie-lrto/" + ], + "aliases": [], + "acronyms": [ + "LRTO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04sph8e12.json b/v1.49/v1/04sph8e12.json new file mode 100644 index 000000000..91111133b --- /dev/null +++ b/v1.49/v1/04sph8e12.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04sph8e12", + "name": "Xingtai Medical College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.06217, + "lng": 114.49272, + "state": null, + "state_code": null, + "city": "Xingtai", + "geonames_city": { + "id": 1788927, + "city": "Xingtai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.xtmc.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "邢台医学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q112676174" + ], + "preferred": "Q112676174" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04sqtjj61.json b/v1.49/v1/04sqtjj61.json new file mode 100644 index 000000000..41cb255f5 --- /dev/null +++ b/v1.49/v1/04sqtjj61.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04sqtjj61", + "name": "Institut Pasteur de Nouvelle Calédonie", + "email_address": null, + "ip_addresses": [], + "established": 1955, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": -22.27407, + "lng": 166.44884, + "state": null, + "state_code": null, + "city": "Noumea", + "geonames_city": { + "id": 2139521, + "city": "Noumea", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.institutpasteur.nc/" + ], + "aliases": [], + "acronyms": [ + "IPNC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "New Caledonia", + "country_code": "NC" + }, + "external_ids": { + "GRID": { + "all": "grid.418534.f", + "preferred": "grid.418534.f" + }, + "ISNI": { + "all": [ + "0000 0004 0443 0155" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30281765" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04szabx38.json b/v1.49/v1/04szabx38.json new file mode 100644 index 000000000..570fbcf53 --- /dev/null +++ b/v1.49/v1/04szabx38.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/04szabx38", + "name": "Institut de Biologie Structurale", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ibs.fr" + ], + "aliases": [ + "Institut de Biologie Structurale Jean-Pierre Ebel" + ], + "acronyms": [ + "IBS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418192.7", + "preferred": "grid.418192.7" + }, + "ISNI": { + "all": [ + "0000 0004 0641 5776" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q21619458" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04t0gwh46.json b/v1.49/v1/04t0gwh46.json new file mode 100644 index 000000000..0faee7a4a --- /dev/null +++ b/v1.49/v1/04t0gwh46.json @@ -0,0 +1,169 @@ +{ + "id": "https://ror.org/04t0gwh46", + "name": "Institut Curie", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "Child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Intégrité du génome, ARN et cancer", + "type": "Child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Immunité et Cancer", + "type": "Child", + "id": "https://ror.org/01zefvs55" + }, + { + "label": "Dynamique du noyau", + "type": "Child", + "id": "https://ror.org/04team556" + }, + { + "label": "Physique des Cellules et Cancers", + "type": "Child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "Child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Musée Curie", + "type": "Child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "Child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "Child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Laboratoire d'imagerie translationnelle en oncologie", + "type": "Child", + "id": "https://ror.org/05qy9ka59" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.institut-curie.org/" + ], + "aliases": [ + "Institut Curie" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Curie_Institute_(Paris)", + "labels": [ + { + "label": "Institute Curie", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418596.7", + "preferred": "grid.418596.7" + }, + "ISNI": { + "all": [ + "0000 0004 0639 6384" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2451973" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04t0zhb48.json b/v1.49/v1/04t0zhb48.json new file mode 100644 index 000000000..663cc60fc --- /dev/null +++ b/v1.49/v1/04t0zhb48.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04t0zhb48", + "name": "Institut Pasteur Korea", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 37.43861, + "lng": 127.13778, + "state": null, + "state_code": null, + "city": "Seongnam-si", + "geonames_city": { + "id": 1897000, + "city": "Seongnam-si", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ip-korea.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_Pasteur_Korea", + "labels": [], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "GRID": { + "all": "grid.418549.5", + "preferred": "grid.418549.5" + }, + "ISNI": { + "all": [ + "0000 0004 0494 4850" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q17152215" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04t5xt781.json b/v1.49/v1/04t5xt781.json new file mode 100644 index 000000000..5fe219f88 --- /dev/null +++ b/v1.49/v1/04t5xt781.json @@ -0,0 +1,125 @@ +{ + "id": "https://ror.org/04t5xt781", + "name": "Northeastern University", + "email_address": null, + "ip_addresses": [], + "established": 1898, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Theoretical Biological Physics", + "type": "Child", + "id": "https://ror.org/04hfg7v94" + }, + { + "label": "The NSF AI Institute for Artificial Intelligence and Fundamental Interactions", + "type": "Child", + "id": "https://ror.org/04pvzz946" + }, + { + "label": "Massachusetts Green High Performance Computing Center", + "type": "Related", + "id": "https://ror.org/05par7p11" + }, + { + "label": "School of the Museum of Fine Arts", + "type": "Related", + "id": "https://ror.org/01ja11s84" + }, + { + "label": "Plum Island Ecosystems Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/052tfzs89" + }, + { + "label": "Mills College", + "type": "Child", + "id": "https://ror.org/01ynb8e46" + }, + { + "label": "Northeastern University London", + "type": "Child", + "id": "https://ror.org/03hdf3w38" + } + ], + "addresses": [ + { + "lat": 42.35843, + "lng": -71.05977, + "state": null, + "state_code": null, + "city": "Boston", + "geonames_city": { + "id": 4930956, + "city": "Boston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.northeastern.edu/" + ], + "aliases": [], + "acronyms": [ + "NEU", + "NU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Northeastern_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.261112.7", + "preferred": "grid.261112.7" + }, + "ISNI": { + "all": [ + "0000 0001 2173 3359" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q37548" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04t8bw757.json b/v1.49/v1/04t8bw757.json new file mode 100644 index 000000000..f32967efb --- /dev/null +++ b/v1.49/v1/04t8bw757.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/04t8bw757", + "name": "Federal University Wukari", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.96327, + "lng": 9.84767, + "state": null, + "state_code": null, + "city": "Wukari", + "geonames_city": { + "id": 8659780, + "city": "Wukari", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fuwukari.edu.ng" + ], + "aliases": [ + "FU Wukari" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_University%2C_Wukari", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q100872718" + ], + "preferred": "Q100872718" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04team556.json b/v1.49/v1/04team556.json new file mode 100644 index 000000000..e9dc77295 --- /dev/null +++ b/v1.49/v1/04team556.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/04team556", + "name": "Dynamique du noyau", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://curie.fr/unite/umr3664" + ], + "aliases": [ + "Laboratoire Dynamique du noyau" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Nuclear Dynamics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462325.4", + "preferred": "grid.462325.4" + }, + "ISNI": { + "all": [ + "0000 0004 0382 2624" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261428" + ], + "preferred": "Q30261428" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04tehfn33.json b/v1.49/v1/04tehfn33.json new file mode 100644 index 000000000..d43f340f5 --- /dev/null +++ b/v1.49/v1/04tehfn33.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04tehfn33", + "name": "International Union for Conservation of Nature", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Union Internationale Pour la Conservation de la Nature, Comité Français", + "type": "Child", + "id": "https://ror.org/03tv49k22" + } + ], + "addresses": [ + { + "lat": 46.42082, + "lng": 6.2701, + "state": null, + "state_code": null, + "city": "Gland", + "geonames_city": { + "id": 2660600, + "city": "Gland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iucn.org/" + ], + "aliases": [], + "acronyms": [ + "IUCN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_Union_for_Conservation_of_Nature", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.426526.1", + "preferred": "grid.426526.1" + }, + "ISNI": { + "all": [ + "0000 0000 8486 2070" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q48268" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04vg26t07.json b/v1.49/v1/04vg26t07.json new file mode 100644 index 000000000..a8bb43c0d --- /dev/null +++ b/v1.49/v1/04vg26t07.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/04vg26t07", + "name": "Nanosciences et Innovation pour les Matériaux, la Biomédecine et l'Énergie", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire Archéomatériaux et Prévision de l'Altération", + "type": "Child", + "id": "https://ror.org/01xpreq28" + }, + { + "label": "Laboratoire Structure et Dynamique par Résonance Magnétique", + "type": "Child", + "id": "https://ror.org/0378sf364" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://iramis.cea.fr/nimbe/" + ], + "aliases": [], + "acronyms": [ + "NIMBE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463992.3", + "preferred": "grid.463992.3" + }, + "Wikidata": { + "all": [ + "Q30262362" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04vrpfw15.json b/v1.49/v1/04vrpfw15.json new file mode 100644 index 000000000..e60711a5a --- /dev/null +++ b/v1.49/v1/04vrpfw15.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/04vrpfw15", + "name": "Snowflake Inc. (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.67965, + "lng": -111.03856, + "state": null, + "state_code": null, + "city": "Bozeman", + "geonames_city": { + "id": 5641727, + "city": "Bozeman", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.snowflake.com" + ], + "aliases": [ + "Snowflake" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Snowflake_Inc.", + "labels": [ + { + "label": "Snowflake Inc.", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q550147" + ], + "preferred": "Q550147" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04vrqzz54.json b/v1.49/v1/04vrqzz54.json new file mode 100644 index 000000000..b13d2adab --- /dev/null +++ b/v1.49/v1/04vrqzz54.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/04vrqzz54", + "name": "Unité de catalyse et de chimie du solide de Lille", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université d'Artois", + "type": "Parent", + "id": "https://ror.org/053x9s498" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "École Centrale de Lille", + "type": "Parent", + "id": "https://ror.org/01x441g73" + }, + { + "label": "École Nationale Supérieure de Chimie de Lille", + "type": "Parent", + "id": "https://ror.org/041yg4h55" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://uccs.univ-lille1.fr/i" + ], + "aliases": [], + "acronyms": [ + "UCCS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Unit%C3%A9_de_catalyse_et_de_chimie_du_solide_de_Lille", + "labels": [ + { + "label": "Laboratory of Catalysis and Solid State Chemistry", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462791.f", + "preferred": "grid.462791.f" + }, + "ISNI": { + "all": [ + "0000 0004 0368 3038" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3214445" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04vrxqg89.json b/v1.49/v1/04vrxqg89.json new file mode 100644 index 000000000..7789f1b44 --- /dev/null +++ b/v1.49/v1/04vrxqg89.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/04vrxqg89", + "name": "Nanfang College Guangzhou", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nfu.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E5%B9%BF%E5%B7%9E%E5%8D%97%E6%96%B9%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "广州南方学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04w07sc25.json b/v1.49/v1/04w07sc25.json new file mode 100644 index 000000000..fb8e95577 --- /dev/null +++ b/v1.49/v1/04w07sc25.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/04w07sc25", + "name": "Sciences pour L’Œnologie", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "Parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.montpellier.inra.fr/spo/" + ], + "aliases": [], + "acronyms": [ + "SPO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503407.5", + "preferred": "grid.503407.5" + }, + "ISNI": { + "all": [ + "0000 0004 0445 8043" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51780435" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04w11tv37.json b/v1.49/v1/04w11tv37.json new file mode 100644 index 000000000..4f953dd8c --- /dev/null +++ b/v1.49/v1/04w11tv37.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/04w11tv37", + "name": "Biologie cellulaire et Cancer", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://curie.fr/unite/umr144" + ], + "aliases": [ + "Compartimentation et Dynamique Cellulaires", + "Subcellular Structure and Cellular Dynamics" + ], + "acronyms": [ + "CDC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cell Biology and Cancer", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462332.2", + "preferred": "grid.462332.2" + }, + "ISNI": { + "all": [ + "0000 0004 0382 1867" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261429" + ], + "preferred": "Q30261429" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04w66ad08.json b/v1.49/v1/04w66ad08.json new file mode 100644 index 000000000..bf9912541 --- /dev/null +++ b/v1.49/v1/04w66ad08.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/04w66ad08", + "name": "Agricultural Sciences and Natural Resources University of Khuzestan", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.5847, + "lng": 48.88587, + "state": null, + "state_code": null, + "city": "Mollās̄ānī", + "geonames_city": { + "id": 123389, + "city": "Mollās̄ānī", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://asnrukh.ac.ir" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04wbsq162.json b/v1.49/v1/04wbsq162.json new file mode 100644 index 000000000..65188dadb --- /dev/null +++ b/v1.49/v1/04wbsq162.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04wbsq162", + "name": "Institut thématique Santé Publique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inserm.fr/nous-connaitre/instituts-thematiques/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457361.2", + "preferred": "grid.457361.2" + }, + "Wikidata": { + "all": [ + "Q30299491" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04wez4p43.json b/v1.49/v1/04wez4p43.json new file mode 100644 index 000000000..078cee44b --- /dev/null +++ b/v1.49/v1/04wez4p43.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/04wez4p43", + "name": "Laboratoire d'Automatique, Génie Informatique et Signal", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Nord, Pas-de-Calais et Picardie", + "type": "Parent", + "id": "https://ror.org/04cxsn644" + }, + { + "label": "Ministère de l’Enseignement Supérieur et de la Recherche", + "type": "Parent", + "id": "https://ror.org/03sjk9a61" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "École Centrale de Lille", + "type": "Parent", + "id": "https://ror.org/01x441g73" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lagis.cnrs.fr/?lang=fr" + ], + "aliases": [], + "acronyms": [ + "LAGIS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Laboratoire_d%27Automatique,_G%C3%A9nie_Informatique_et_Signal", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503297.a", + "preferred": "grid.503297.a" + }, + "ISNI": { + "all": [ + "0000 0004 0371 0462" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3214416" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04wtce741.json b/v1.49/v1/04wtce741.json new file mode 100644 index 000000000..8cce97c62 --- /dev/null +++ b/v1.49/v1/04wtce741.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04wtce741", + "name": "Campus France", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.campusfrance.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.467848.1", + "preferred": "grid.467848.1" + }, + "ISNI": { + "all": [ + "0000 0001 2196 5010" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04wvj5008.json b/v1.49/v1/04wvj5008.json new file mode 100644 index 000000000..8c13b2b8a --- /dev/null +++ b/v1.49/v1/04wvj5008.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04wvj5008", + "name": "Institute of Public Administration", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.33306, + "lng": -6.24889, + "state": null, + "state_code": null, + "city": "Dublin", + "geonames_city": { + "id": 2964574, + "city": "Dublin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ipa.ie" + ], + "aliases": [ + "Institute of Public Administration Ireland" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_of_Public_Administration_%28Ireland%29", + "labels": [ + { + "label": "An Foras Riaracháin", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04x1xkh65.json b/v1.49/v1/04x1xkh65.json new file mode 100644 index 000000000..6f756fa9f --- /dev/null +++ b/v1.49/v1/04x1xkh65.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04x1xkh65", + "name": "State of Florida", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.43826, + "lng": -84.28073, + "state": null, + "state_code": null, + "city": "Tallahassee", + "geonames_city": { + "id": 4174715, + "city": "Tallahassee", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.myflorida.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0428 9964" + ], + "preferred": "0000 0004 0428 9964" + }, + "Wikidata": { + "all": [ + "Q812" + ], + "preferred": "Q812" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04x361v68.json b/v1.49/v1/04x361v68.json new file mode 100644 index 000000000..50abb8457 --- /dev/null +++ b/v1.49/v1/04x361v68.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04x361v68", + "name": "Virginia Foundation for the Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 38.02931, + "lng": -78.47668, + "state": null, + "state_code": null, + "city": "Charlottesville", + "geonames_city": { + "id": 4752031, + "city": "Charlottesville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://virginiahumanities.org/" + ], + "aliases": [], + "acronyms": [ + "VFH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Virginia_Foundation_for_the_Humanities", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447707.7", + "preferred": "grid.447707.7" + }, + "ISNI": { + "all": [ + "0000 0004 5904 1878" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7934268" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04xfq0f34.json b/v1.49/v1/04xfq0f34.json new file mode 100644 index 000000000..45f01b162 --- /dev/null +++ b/v1.49/v1/04xfq0f34.json @@ -0,0 +1,141 @@ +{ + "id": "https://ror.org/04xfq0f34", + "name": "RWTH Aachen University", + "email_address": null, + "ip_addresses": [], + "established": 1870, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Universitätsklinikum Aachen", + "type": "Related", + "id": "https://ror.org/02gm5zw39" + }, + { + "label": "Bonn Aachen International Center for Information Technology", + "type": "Related", + "id": "https://ror.org/054zhq066" + }, + { + "label": "Oel-Waerme-Institut", + "type": "Related", + "id": "https://ror.org/000p86k36" + }, + { + "label": "Jülich Aachen Research Alliance", + "type": "Related", + "id": "https://ror.org/02r0e4r58" + }, + { + "label": "Aachener Centrum für Technologietransfer in der Ophthalmologie", + "type": "Related", + "id": "https://ror.org/04gw0z407" + }, + { + "label": "TU9", + "type": "Related", + "id": "https://ror.org/02nx8n605" + }, + { + "label": "Ernst Ruska Centre", + "type": "Related", + "id": "https://ror.org/03hass884" + }, + { + "label": "Institut für Unternehmenskybernetik", + "type": "Related", + "id": "https://ror.org/001g2x261" + }, + { + "label": "FIR e. V. an der RWTH Aachen", + "type": "Related", + "id": "https://ror.org/03ppaqb54" + } + ], + "addresses": [ + { + "lat": 50.77664, + "lng": 6.08342, + "state": null, + "state_code": null, + "city": "Aachen", + "geonames_city": { + "id": 3247449, + "city": "Aachen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.rwth-aachen.de/cms/~a/root/lidx/1/" + ], + "aliases": [ + "RWTH Aachen" + ], + "acronyms": [ + "RWTH" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/RWTH_Aachen_University", + "labels": [ + { + "label": "Rheinisch-Westfälische Technische Hochschule Aachen", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.1957.a", + "preferred": "grid.1957.a" + }, + "ISNI": { + "all": [ + "0000 0001 0728 696X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273263" + ], + "preferred": "Q273263" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04xtaw673.json b/v1.49/v1/04xtaw673.json new file mode 100644 index 000000000..23d01bc20 --- /dev/null +++ b/v1.49/v1/04xtaw673.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/04xtaw673", + "name": "Fish Physiology and Genomics Institute", + "email_address": null, + "ip_addresses": [], + "established": 1978, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.rennes.inrae.fr/lpgp" + ], + "aliases": [], + "acronyms": [ + "LPGP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratoire de Physiologie et Génomique des Poissons", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462558.8", + "preferred": "grid.462558.8" + }, + "ISNI": { + "all": [ + "0000 0004 0450 5110" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261492" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04y53ne24.json b/v1.49/v1/04y53ne24.json new file mode 100644 index 000000000..bdb3c39fe --- /dev/null +++ b/v1.49/v1/04y53ne24.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/04y53ne24", + "name": "Universidad de las Artes", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.13302, + "lng": -82.38304, + "state": null, + "state_code": null, + "city": "Havana", + "geonames_city": { + "id": 3553478, + "city": "Havana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://isa.cult.cu" + ], + "aliases": [ + "Universidad de las Artes, ISA" + ], + "acronyms": [ + "ISA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Cuba", + "country_code": "CU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/04y75v050.json b/v1.49/v1/04y75v050.json new file mode 100644 index 000000000..c6b9fa85e --- /dev/null +++ b/v1.49/v1/04y75v050.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04y75v050", + "name": "Textron Systems (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1923, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Textron (United States)", + "type": "Parent", + "id": "https://ror.org/04h6azc67" + } + ], + "addresses": [ + { + "lat": 52.05917, + "lng": 1.15545, + "state": null, + "state_code": null, + "city": "Ipswich", + "geonames_city": { + "id": 2646057, + "city": "Ipswich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.textron.com/" + ], + "aliases": [ + "Special Yarns Company" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Textron", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.474722.0", + "preferred": "grid.474722.0" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04y7h3604.json b/v1.49/v1/04y7h3604.json new file mode 100644 index 000000000..c82c0f872 --- /dev/null +++ b/v1.49/v1/04y7h3604.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04y7h3604", + "name": "Alfried Krupp von Bohlen und Halbach Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Stiftung Alfried Krupp Kolleg Greifswald", + "type": "Related", + "id": "https://ror.org/036b8pc68" + } + ], + "addresses": [ + { + "lat": 51.45657, + "lng": 7.01228, + "state": null, + "state_code": null, + "city": "Essen", + "geonames_city": { + "id": 2928810, + "city": "Essen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.krupp-stiftung.de/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Alfried_Krupp_von_Bohlen_und_Halbach_Foundation", + "labels": [ + { + "label": "Alfried Krupp von Bohlen und Halbach-Stiftung", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.454205.2", + "preferred": "grid.454205.2" + }, + "ISNI": { + "all": [ + "0000 0001 0174 8238" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04y91dy23.json b/v1.49/v1/04y91dy23.json new file mode 100644 index 000000000..7f2cb702b --- /dev/null +++ b/v1.49/v1/04y91dy23.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/04y91dy23", + "name": "Unité Évolution, Écologie et Paléontologie", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Nord, Pas-de-Calais et Picardie", + "type": "Parent", + "id": "https://ror.org/04cxsn644" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://eep.univ-lille.fr/en/" + ], + "aliases": [ + "Evo-Eco-Paléo" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503370.2", + "preferred": "grid.503370.2" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04yb4j419.json b/v1.49/v1/04yb4j419.json new file mode 100644 index 000000000..5a40b9af0 --- /dev/null +++ b/v1.49/v1/04yb4j419.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04yb4j419", + "name": "Institut Pasteur du Maroc", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 33.58831, + "lng": -7.61138, + "state": null, + "state_code": null, + "city": "Casablanca", + "geonames_city": { + "id": 2553604, + "city": "Casablanca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur.ma/" + ], + "aliases": [], + "acronyms": [ + "IPM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Morocco", + "country_code": "MA" + }, + "external_ids": { + "GRID": { + "all": "grid.418539.2", + "preferred": "grid.418539.2" + }, + "ISNI": { + "all": [ + "0000 0000 9089 1740" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30281767" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04yem5s35.json b/v1.49/v1/04yem5s35.json new file mode 100644 index 000000000..c7308c0d1 --- /dev/null +++ b/v1.49/v1/04yem5s35.json @@ -0,0 +1,159 @@ +{ + "id": "https://ror.org/04yem5s35", + "name": "INFRANALYTICS", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Université Claude Bernard Lyon 1", + "type": "Parent", + "id": "https://ror.org/029brtt94" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "Institut National des Sciences Appliquées Rouen Normandie", + "type": "Parent", + "id": "https://ror.org/020ws7586" + }, + { + "label": "Université de Rouen Normandie", + "type": "Parent", + "id": "https://ror.org/03nhjew95" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Université de Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Aix-Marseille Université", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 47.90289, + "lng": 1.90389, + "state": null, + "state_code": null, + "city": "Orléans", + "geonames_city": { + "id": 2989317, + "city": "Orléans", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://infranalytics.fr" + ], + "aliases": [ + "FR 2054" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695012" + ], + "preferred": "Q123695012" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04ytecw04.json b/v1.49/v1/04ytecw04.json new file mode 100644 index 000000000..2b1f617eb --- /dev/null +++ b/v1.49/v1/04ytecw04.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04ytecw04", + "name": "KLS Gogte Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 15.85212, + "lng": 74.50447, + "state": null, + "state_code": null, + "city": "Belagavi", + "geonames_city": { + "id": 1276533, + "city": "Belagavi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://git.edu" + ], + "aliases": [ + "Gogte Institute of Technology", + "KLS Gogte Institute of Technology, Belgaum", + "KLS Gogte Institute of Technology, Belgavi" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gogte_Institute_of_Technology", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1792 2888" + ], + "preferred": "0000 0004 1792 2888" + }, + "Wikidata": { + "all": [ + "Q5577487" + ], + "preferred": "Q5577487" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04z066j96.json b/v1.49/v1/04z066j96.json new file mode 100644 index 000000000..8d1ee6693 --- /dev/null +++ b/v1.49/v1/04z066j96.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04z066j96", + "name": "Judson College", + "email_address": null, + "ip_addresses": [], + "established": 1838, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.63235, + "lng": -87.31917, + "state": null, + "state_code": null, + "city": "Marion", + "geonames_city": { + "id": 4074673, + "city": "Marion", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.judson.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Judson_College_(Alabama)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.431175.5", + "preferred": "grid.431175.5" + }, + "ISNI": { + "all": [ + "0000 0004 0431 3522" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6304221" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04zdwr798.json b/v1.49/v1/04zdwr798.json new file mode 100644 index 000000000..268516cfc --- /dev/null +++ b/v1.49/v1/04zdwr798.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/04zdwr798", + "name": "Institut Thématique Cancer", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inserm.fr/gouvernance-organisation/institut-cancer" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cancer Thematics Institute", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457358.8", + "preferred": "grid.457358.8" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/04znxe670.json b/v1.49/v1/04znxe670.json new file mode 100644 index 000000000..22393f8c5 --- /dev/null +++ b/v1.49/v1/04znxe670.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/04znxe670", + "name": "Universidad de Colima", + "email_address": null, + "ip_addresses": [], + "established": 1940, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.24997, + "lng": -103.72714, + "state": null, + "state_code": null, + "city": "Colima", + "geonames_city": { + "id": 4013516, + "city": "Colima", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ucol.mx" + ], + "aliases": [ + "People's University of Colima" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Colima", + "labels": [ + { + "label": "University of Colima", + "iso639": "en" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.412887.0", + "preferred": "grid.412887.0" + }, + "ISNI": { + "all": [ + "0000 0001 2375 8971" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2495731" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0503y1475.json b/v1.49/v1/0503y1475.json new file mode 100644 index 000000000..15f8f6a19 --- /dev/null +++ b/v1.49/v1/0503y1475.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/0503y1475", + "name": "Evangelical Presbyterian College of Education, Bimbilla", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 8.85488, + "lng": 0.05922, + "state": null, + "state_code": null, + "city": "Bimbilla", + "geonames_city": { + "id": 2303026, + "city": "Bimbilla", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://epcoebimbilla.edu.gh" + ], + "aliases": [ + "E. P. College of Education, Bimbilla", + "Evangelical Presbyterian College of Education in Bimbilla" + ], + "acronyms": [ + "BIMBICO", + "EPCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Evangelical_Presbyterian_College_of_Education%2C_Bimbilla", + "labels": [ + { + "label": "Kwalejin Ilimi ta Presbyterian, Bimbilla", + "iso639": "ha" + } + ], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996966" + ], + "preferred": "Q46996966" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/050cf7q30.json b/v1.49/v1/050cf7q30.json new file mode 100644 index 000000000..aacd198e9 --- /dev/null +++ b/v1.49/v1/050cf7q30.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/050cf7q30", + "name": "Mampong Technical College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.06273, + "lng": -1.4001, + "state": null, + "state_code": null, + "city": "Mampong", + "geonames_city": { + "id": 2298264, + "city": "Mampong", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mtce.edu.gh" + ], + "aliases": [ + "Mampong Technical Teachers College of Education" + ], + "acronyms": [ + "MAMTECH", + "MTCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mampong_Technical_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996975" + ], + "preferred": "Q46996975" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/050ra0n32.json b/v1.49/v1/050ra0n32.json new file mode 100644 index 000000000..8721d20bc --- /dev/null +++ b/v1.49/v1/050ra0n32.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/050ra0n32", + "name": "Université de Corse Pascal Paoli", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Sciences pour l'Environnement", + "type": "Child", + "id": "https://ror.org/016nwev19" + }, + { + "label": "Lieux, Identités, eSpaces, Activités", + "type": "Child", + "id": "https://ror.org/00nbhg292" + }, + { + "label": "STELLA MARE", + "type": "Child", + "id": "https://ror.org/040r8ry56" + }, + { + "label": "Institut d'Études Scientifiques de Cargèse", + "type": "Child", + "id": "https://ror.org/044mrv955" + } + ], + "addresses": [ + { + "lat": 42.30956, + "lng": 9.14917, + "state": null, + "state_code": null, + "city": "Corte", + "geonames_city": { + "id": 3023506, + "city": "Corte", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-corse.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Corsica_Pasquale_Paoli", + "labels": [ + { + "label": "Universitat de Còrsega Pasquale Paoli", + "iso639": "ca" + }, + { + "label": "University of Corsica Pascal Paoli", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.412058.a", + "preferred": "grid.412058.a" + }, + "ISNI": { + "all": [ + "0000 0001 2177 0037" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q335841" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/050rs7291.json b/v1.49/v1/050rs7291.json new file mode 100644 index 000000000..5a169be79 --- /dev/null +++ b/v1.49/v1/050rs7291.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/050rs7291", + "name": "Centre de Radiofréquences, Optique et Micro-nanoélectronique des Alpes", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Savoie Mont Blanc", + "type": "Parent", + "id": "https://ror.org/04gqg1a07" + }, + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://croma.grenoble-inp.fr" + ], + "aliases": [ + "Centre for Radiofrequencies, Optic and Micro-nanoelectronics in the Alps" + ], + "acronyms": [ + "CROMA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/051635438.json b/v1.49/v1/051635438.json new file mode 100644 index 000000000..61f31795d --- /dev/null +++ b/v1.49/v1/051635438.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/051635438", + "name": "Yakult Bio-Science Foundation (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://yakult-bioscience.or.jp" + ], + "aliases": [ + "ヤクルト・バイオサイエンス研究財団" + ], + "acronyms": [ + "YBSF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "公益財団法人ヤクルト・バイオサイエンス研究財団", + "iso639": "ja" + }, + { + "label": "Yakult Bio-Science Foundation", + "iso639": "en" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7690 2000" + ], + "preferred": "0000 0004 7690 2000" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/051c1vb08.json b/v1.49/v1/051c1vb08.json new file mode 100644 index 000000000..0c045eda6 --- /dev/null +++ b/v1.49/v1/051c1vb08.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/051c1vb08", + "name": "Transporteurs, Imagerie et Radiothérapie en Oncologie - Mécanismes Biologiques des Altérations du Tissu Osseux", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/tiro-matos" + ], + "aliases": [], + "acronyms": [ + "TIRO-MATOs" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51786145" + ], + "preferred": "Q51786145" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/051escj72.json b/v1.49/v1/051escj72.json new file mode 100644 index 000000000..494efbe82 --- /dev/null +++ b/v1.49/v1/051escj72.json @@ -0,0 +1,407 @@ +{ + "id": "https://ror.org/051escj72", + "name": "Université de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1289, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "UMR Botanique et Modélisation de l’Architecture des Plantes et des végétations", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Recherche de Biochimie Macromoléculaire", + "type": "Child", + "id": "https://ror.org/01xpc6869" + }, + { + "label": "Diversité, adaptation, développement des plantes", + "type": "Child", + "id": "https://ror.org/02banhz78" + }, + { + "label": "Diversity, Genomes and Insects-Microorganisms Interactions", + "type": "Child", + "id": "https://ror.org/03q1qx424" + }, + { + "label": "Forests and Societies", + "type": "Child", + "id": "https://ror.org/02pzyz439" + }, + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Institut Charles Gerhardt", + "type": "Child", + "id": "https://ror.org/028wq3277" + }, + { + "label": "Institut Européen des Membranes", + "type": "Child", + "id": "https://ror.org/04nmj9827" + }, + { + "label": "Institut d'Électronique et des Systèmes", + "type": "Child", + "id": "https://ror.org/0431hh004" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Génétique Moléculaire de Montpellier", + "type": "Child", + "id": "https://ror.org/02785qs39" + }, + { + "label": "Institut Montpelliérain Alexander Grothendieck", + "type": "Child", + "id": "https://ror.org/044kxby82" + }, + { + "label": "Institut de Recherche en Infectiologie de Montpellier", + "type": "Child", + "id": "https://ror.org/036eg1q44" + }, + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "Child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "Child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institut de Chimie Séparative de Marcoule", + "type": "Child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institut de Recherche en Cancérologie de Montpellier", + "type": "Child", + "id": "https://ror.org/03capj968" + }, + { + "label": "Institut de Génétique Humaine", + "type": "Child", + "id": "https://ror.org/05ee10k25" + }, + { + "label": "Laboratoire Charles Coulomb", + "type": "Child", + "id": "https://ror.org/02ftce284" + }, + { + "label": "Laboratoire Univers et Particules de Montpellier", + "type": "Child", + "id": "https://ror.org/00nrbzg90" + }, + { + "label": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "type": "Child", + "id": "https://ror.org/03fte3n86" + }, + { + "label": "Laboratoire de Mécanique et Génie Civil", + "type": "Child", + "id": "https://ror.org/02fke9256" + }, + { + "label": "Laboratoire HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "Child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Marine Biodiversity Exploitation and Conservation", + "type": "Child", + "id": "https://ror.org/049dk3691" + }, + { + "label": "Laboratoire d'Informatique, de Robotique et de Microélectronique de Montpellier", + "type": "Child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Physiologie et Médecine Expérimentale du Coeur et des Muscles", + "type": "Child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Sciences pour L’Œnologie", + "type": "Child", + "id": "https://ror.org/04w07sc25" + }, + { + "label": "Centre d’Etudes Politiques Et sociaLes", + "type": "Child", + "id": "https://ror.org/02wzg8t73" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "Child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "Child", + "id": "https://ror.org/03kbarg82" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "Child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "Child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "Child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Centre Méditerranéen de l’Environnement et de la Biodiversité", + "type": "Child", + "id": "https://ror.org/04eeyfe07" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "Université Montpellier 1", + "type": "Predecessor", + "id": "https://ror.org/0227fbx80" + }, + { + "label": "Université Montpellier 2", + "type": "Predecessor", + "id": "https://ror.org/00wh4bp03" + }, + { + "label": "Hôpital Lapeyronie", + "type": "Related", + "id": "https://ror.org/03xzagw65" + }, + { + "label": "Hôpital Saint Eloi", + "type": "Related", + "id": "https://ror.org/04pwyfk22" + }, + { + "label": "Institut Universitaire de Recherche Clinique", + "type": "Related", + "id": "https://ror.org/03kfkzp90" + }, + { + "label": "Centre Hospitalier Universitaire de Montpellier", + "type": "Related", + "id": "https://ror.org/00mthsf17" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umontpellier.fr/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Montpellier", + "labels": [ + { + "label": "University of Montpellier", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.121334.6", + "preferred": "grid.121334.6" + }, + "ISNI": { + "all": [ + "0000 0001 2097 0141" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q776223" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/051v7w268.json b/v1.49/v1/051v7w268.json new file mode 100644 index 000000000..041c0742d --- /dev/null +++ b/v1.49/v1/051v7w268.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/051v7w268", + "name": "Istituto Pasteur", + "email_address": null, + "ip_addresses": [], + "established": 1887, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.istitutopasteur.it/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.452606.3", + "preferred": "grid.452606.3" + }, + "ISNI": { + "all": [ + "0000 0004 1764 2528" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/051yxp643.json b/v1.49/v1/051yxp643.json new file mode 100644 index 000000000..86a2dfc36 --- /dev/null +++ b/v1.49/v1/051yxp643.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/051yxp643", + "name": "Max Planck Institute for Biogeochemistry", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Society", + "type": "Parent", + "id": "https://ror.org/01hhn8329" + } + ], + "addresses": [ + { + "lat": 50.92878, + "lng": 11.5899, + "state": null, + "state_code": null, + "city": "Jena", + "geonames_city": { + "id": 2895044, + "city": "Jena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bgc-jena.mpg.de" + ], + "aliases": [ + "MPI Biogeochemistry" + ], + "acronyms": [ + "MPI-BGC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Max_Planck_Institute_for_Biogeochemistry", + "labels": [ + { + "label": "Max-Planck-Institut für Biogeochemie", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.419500.9", + "preferred": "grid.419500.9" + }, + "ISNI": { + "all": [ + "0000 0004 0491 7318" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1912063" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/052b46n78.json b/v1.49/v1/052b46n78.json new file mode 100644 index 000000000..91e93ab90 --- /dev/null +++ b/v1.49/v1/052b46n78.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/052b46n78", + "name": "Institut Pasteur d'Algérie", + "email_address": null, + "ip_addresses": [], + "established": 1894, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 36.73225, + "lng": 3.08746, + "state": null, + "state_code": null, + "city": "Algiers", + "geonames_city": { + "id": 2507480, + "city": "Algiers", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur.dz/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": { + "GRID": { + "all": "grid.418520.a", + "preferred": "grid.418520.a" + }, + "ISNI": { + "all": [ + "0000 0001 2163 7615" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/052d1cv78.json b/v1.49/v1/052d1cv78.json new file mode 100644 index 000000000..7612236c1 --- /dev/null +++ b/v1.49/v1/052d1cv78.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/052d1cv78", + "name": "Genetique Reproduction and Developpement", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gred-clermont.fr/" + ], + "aliases": [], + "acronyms": [ + "GReD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Génétique Reproduction et Développement", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463855.9", + "preferred": "grid.463855.9" + }, + "ISNI": { + "all": [ + "0000 0004 0385 8889" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/052nhnq73.json b/v1.49/v1/052nhnq73.json new file mode 100644 index 000000000..501ca7c37 --- /dev/null +++ b/v1.49/v1/052nhnq73.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/052nhnq73", + "name": "University for Development Studies", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tamale Teaching Hospital", + "type": "Related", + "id": "https://ror.org/00f9jfw45" + }, + { + "label": "Gambaga College of Education", + "type": "Related", + "id": "https://ror.org/028sfha37" + }, + { + "label": "Al-Faruq College of Education", + "type": "Related", + "id": "https://ror.org/02z1xqy79" + }, + { + "label": "St. Vincent College of Education", + "type": "Related", + "id": "https://ror.org/03rfnpw37" + } + ], + "addresses": [ + { + "lat": 9.40079, + "lng": -0.8393, + "state": null, + "state_code": null, + "city": "Tamale", + "geonames_city": { + "id": 2294877, + "city": "Tamale", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uds.edu.gh/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_for_Development_Studies", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.442305.4", + "preferred": "grid.442305.4" + }, + "ISNI": { + "all": [ + "0000 0004 0441 5393" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1766573" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0535cbn94.json b/v1.49/v1/0535cbn94.json new file mode 100644 index 000000000..a1b902f31 --- /dev/null +++ b/v1.49/v1/0535cbn94.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/0535cbn94", + "name": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.symmes.fr" + ], + "aliases": [ + "Molecular Systems and nanoMaterials for Energy and Health" + ], + "acronyms": [ + "SyMMES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q30262431" + ], + "preferred": "Q30262431" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/053gv2m95.json b/v1.49/v1/053gv2m95.json new file mode 100644 index 000000000..70b2a85dd --- /dev/null +++ b/v1.49/v1/053gv2m95.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/053gv2m95", + "name": "Novartis Institutes for BioMedical Research", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [], + "relationships": [ + { + "label": "Novartis (Switzerland)", + "type": "Parent", + "id": "https://ror.org/02f9zrr09" + } + ], + "addresses": [ + { + "lat": 47.55773, + "lng": 7.59361, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 7285161, + "city": "Basel", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.novartis.com" + ], + "aliases": [], + "acronyms": [ + "NIBR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0612 3554" + ], + "preferred": "0000 0004 0612 3554" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/053jqyp97.json b/v1.49/v1/053jqyp97.json new file mode 100644 index 000000000..13f7f7447 --- /dev/null +++ b/v1.49/v1/053jqyp97.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/053jqyp97", + "name": "Rangpur Medical College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 25.74664, + "lng": 89.25166, + "state": null, + "state_code": null, + "city": "Rangpur City", + "geonames_city": { + "id": 1185188, + "city": "Rangpur City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rpmc.edu.bd" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rangpur_Medical_College", + "labels": [], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q7292909" + ], + "preferred": "Q7292909" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/053p8kg34.json b/v1.49/v1/053p8kg34.json new file mode 100644 index 000000000..15bf59e0e --- /dev/null +++ b/v1.49/v1/053p8kg34.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/053p8kg34", + "name": "Laboratoire de Didactique André Revuz", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CY Cergy Paris Université", + "type": "Parent", + "id": "https://ror.org/043htjv09" + }, + { + "label": "Université Paris-Est Créteil", + "type": "Parent", + "id": "https://ror.org/05ggc9x40" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université de Rouen Normandie", + "type": "Parent", + "id": "https://ror.org/03nhjew95" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ldar.website" + ], + "aliases": [], + "acronyms": [ + "LDAR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "André Revuz Didactics Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463933.8", + "preferred": "grid.463933.8" + }, + "ISNI": { + "all": [ + "0000 0000 8965 4086" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262310" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/053ppfe96.json b/v1.49/v1/053ppfe96.json new file mode 100644 index 000000000..71f3a43ae --- /dev/null +++ b/v1.49/v1/053ppfe96.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/053ppfe96", + "name": "Systèmes avancés de délivrance de principes actifs", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://u1008.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "ADDS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Advanced Drug Delivery Systems", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/053rhfn23.json b/v1.49/v1/053rhfn23.json new file mode 100644 index 000000000..5bcd33901 --- /dev/null +++ b/v1.49/v1/053rhfn23.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/053rhfn23", + "name": "Ministry of Power", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.6177, + "lng": 77.20685, + "state": null, + "state_code": null, + "city": "New Delhi", + "geonames_city": { + "id": 8347332, + "city": "New Delhi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://powermin.gov.in" + ], + "aliases": [ + "Indian Ministry of Power", + "Ministry of Power India" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Power_%28India%29", + "labels": [ + { + "label": "विद्युत मंत्रालय", + "iso639": "hi" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0635 546X" + ], + "preferred": "0000 0004 0635 546X" + }, + "Wikidata": { + "all": [ + "Q4294844" + ], + "preferred": "Q4294844" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0546x0d08.json b/v1.49/v1/0546x0d08.json new file mode 100644 index 000000000..da576e475 --- /dev/null +++ b/v1.49/v1/0546x0d08.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/0546x0d08", + "name": "Guangzhou Huashang College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gdhsc.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/zh-hans/%E5%B9%BF%E5%B7%9E%E5%8D%8E%E5%95%86%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "广州华商学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q112676958" + ], + "preferred": "Q112676958" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/054962n91.json b/v1.49/v1/054962n91.json new file mode 100644 index 000000000..b7b85f1df --- /dev/null +++ b/v1.49/v1/054962n91.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/054962n91", + "name": "Siemens Healthcare (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1847, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.03622, + "lng": -75.51381, + "state": null, + "state_code": null, + "city": "Malvern", + "geonames_city": { + "id": 5199600, + "city": "Malvern", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.siemens-healthineers.com" + ], + "aliases": [ + "Siemens Healthineers", + "Siemens Healthineers USA", + "Siemens Medical Solutions USA", + "Siemens Medical Solutions USA, Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Siemens_Healthineers", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.415886.6", + "preferred": "grid.415886.6" + }, + "ISNI": { + "all": [ + "0000 0004 0546 1113" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30338475" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/054bwsx29.json b/v1.49/v1/054bwsx29.json new file mode 100644 index 000000000..5074c8ee3 --- /dev/null +++ b/v1.49/v1/054bwsx29.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/054bwsx29", + "name": "New Hampshire Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 43.20814, + "lng": -71.53757, + "state": null, + "state_code": null, + "city": "Concord", + "geonames_city": { + "id": 5084868, + "city": "Concord", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nhhc.org/" + ], + "aliases": [], + "acronyms": [ + "NHHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447284.9", + "preferred": "grid.447284.9" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05514hp74.json b/v1.49/v1/05514hp74.json new file mode 100644 index 000000000..28288b43d --- /dev/null +++ b/v1.49/v1/05514hp74.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05514hp74", + "name": "Laboratory of Fundamental and Applied Bioenergetics", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Alpes", + "type": "Parent", + "id": "https://ror.org/04px4e658" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lbfa.univ-grenoble-alpes.fr" + ], + "aliases": [ + "Laboratoire Bioénergétique Fondamentale et Appliquée" + ], + "acronyms": [ + "LBFA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.488484.c", + "preferred": "grid.488484.c" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0554d9k40.json b/v1.49/v1/0554d9k40.json new file mode 100644 index 000000000..152d94a36 --- /dev/null +++ b/v1.49/v1/0554d9k40.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/0554d9k40", + "name": "National University \"Yuri Kondratyuk Poltava Polytechnic\"", + "email_address": null, + "ip_addresses": [], + "established": 1930, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.58925, + "lng": 34.55367, + "state": null, + "state_code": null, + "city": "Poltava", + "geonames_city": { + "id": 696643, + "city": "Poltava", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nupp.edu.ua/" + ], + "aliases": [ + "National University «Yuri Kondratyuk Poltava Polytechnic»", + "Poltava Engineering and Construction Institute", + "Poltava National Technical University", + "Poltava Technical University", + "Yuriy Kondratyuk Poltava National Technical University", + "Yuriy Kondratyuk Poltava Technical University", + "Національний унівеситет \"Полтавська політехніка імені Юрія Кондратюка\"", + "Полтавский инженерно-строительный институт", + "Полтавський національний технічний університет імені Юрія Кондратюка", + "Полтавський технічний університет", + "Полтавський технічний університет імені Юрія Кондратюка", + "Полтавський інженерно-будівельний інститут", + "Полтавський інститут сільськогосподарського будівництва" + ], + "acronyms": [ + "NUPP", + "НУПП", + "ПолНТУ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Poltava_National_Technical_University", + "labels": [ + { + "label": "Національний університет «Полтавська політехніка імені Юрія Кондратюка»", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "GRID": { + "all": "grid.446268.a", + "preferred": "grid.446268.a" + }, + "Wikidata": { + "all": [ + "Q15008084" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/0557vhy43.json b/v1.49/v1/0557vhy43.json new file mode 100644 index 000000000..782285073 --- /dev/null +++ b/v1.49/v1/0557vhy43.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/0557vhy43", + "name": "Laboratoire Biologie et Biotechnologie pour la Santé", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://biosante-lab.fr" + ], + "aliases": [ + "Biology and Biotechnology for Health Laboratory", + "Laboratoire BioSanté" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/0558j5q12.json b/v1.49/v1/0558j5q12.json new file mode 100644 index 000000000..566a4425a --- /dev/null +++ b/v1.49/v1/0558j5q12.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0558j5q12", + "name": "Universitatea Națională de Știință și Tehnologie Politehnica București", + "email_address": null, + "ip_addresses": [], + "established": 1864, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.43225, + "lng": 26.10626, + "state": null, + "state_code": null, + "city": "Bucharest", + "geonames_city": { + "id": 683506, + "city": "Bucharest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://upb.ro" + ], + "aliases": [ + "Polytechnic University of Bucharest", + "Polytehnica University of Bucharest", + "Universitatea Politehnica din București" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Politehnica_University_of_Bucharest", + "labels": [ + { + "label": "POLITEHNICA București", + "iso639": "ro" + } + ], + "country": { + "country_name": "Romania", + "country_code": "RO" + }, + "external_ids": { + "GRID": { + "all": "grid.4551.5", + "preferred": "grid.4551.5" + }, + "ISNI": { + "all": [ + "0000 0001 2109 901X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1465448" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/055a4rj94.json b/v1.49/v1/055a4rj94.json new file mode 100644 index 000000000..1a82c3434 --- /dev/null +++ b/v1.49/v1/055a4rj94.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/055a4rj94", + "name": "Kashi University", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.47066, + "lng": 75.98951, + "state": null, + "state_code": null, + "city": "Kashgar", + "geonames_city": { + "id": 1280849, + "city": "Kashgar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ksu.edu.cn" + ], + "aliases": [ + "Kashgar Normal College", + "Kashgar Teachers College", + "喀什师范学院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kashgar_University", + "labels": [ + { + "label": "喀什大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.443440.3", + "preferred": "grid.443440.3" + }, + "ISNI": { + "all": [ + "0000 0001 2157 5573" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6840044" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/055hnsm41.json b/v1.49/v1/055hnsm41.json new file mode 100644 index 000000000..cdee59701 --- /dev/null +++ b/v1.49/v1/055hnsm41.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/055hnsm41", + "name": "Vemu Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 13.63551, + "lng": 79.41989, + "state": null, + "state_code": null, + "city": "Tirupati", + "geonames_city": { + "id": 1254360, + "city": "Tirupati", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://vemu.org" + ], + "aliases": [], + "acronyms": [ + "VEMUIT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/055ss7a31.json b/v1.49/v1/055ss7a31.json new file mode 100644 index 000000000..aa06a6722 --- /dev/null +++ b/v1.49/v1/055ss7a31.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/055ss7a31", + "name": "Physique des Cellules et Cancers", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://institut-curie.org/unit/umr168" + ], + "aliases": [ + "Laboratoire Physico-chimie Curie", + "Physico-chimie Curie" + ], + "acronyms": [ + "PCC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Physics of Cells and Cancer", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.465542.4", + "preferred": "grid.465542.4" + }, + "ISNI": { + "all": [ + "0000 0004 1759 735X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30263349" + ], + "preferred": "Q30263349" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/055zp1089.json b/v1.49/v1/055zp1089.json new file mode 100644 index 000000000..fffa2794c --- /dev/null +++ b/v1.49/v1/055zp1089.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/055zp1089", + "name": "EU-OPENSCREEN", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.eu-openscreen.eu" + ], + "aliases": [ + "EU OPENSCREEN" + ], + "acronyms": [ + "EU-OS" + ], + "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.49/v1/0566a8c54.json b/v1.49/v1/0566a8c54.json new file mode 100644 index 000000000..19b25396d --- /dev/null +++ b/v1.49/v1/0566a8c54.json @@ -0,0 +1,184 @@ +{ + "id": "https://ror.org/0566a8c54", + "name": "University of North Carolina System", + "email_address": null, + "ip_addresses": [], + "established": 1789, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Appalachian State University", + "type": "Child", + "id": "https://ror.org/051m4vc48" + }, + { + "label": "East Carolina University", + "type": "Child", + "id": "https://ror.org/01vx35703" + }, + { + "label": "Elizabeth City State University", + "type": "Child", + "id": "https://ror.org/02n5cs023" + }, + { + "label": "Fayetteville State University", + "type": "Child", + "id": "https://ror.org/03rj92e31" + }, + { + "label": "North Carolina Agricultural and Technical State University", + "type": "Child", + "id": "https://ror.org/02aze4h65" + }, + { + "label": "North Carolina Central University", + "type": "Child", + "id": "https://ror.org/051r3tx83" + }, + { + "label": "North Carolina School of Science and Mathematics", + "type": "Child", + "id": "https://ror.org/03zbydc22" + }, + { + "label": "North Carolina State University", + "type": "Child", + "id": "https://ror.org/04tj63d06" + }, + { + "label": "Pisgah Astronomical Research Institute", + "type": "Child", + "id": "https://ror.org/01fqs5523" + }, + { + "label": "University of North Carolina School of the Arts", + "type": "Child", + "id": "https://ror.org/01vfsab41" + }, + { + "label": "University of North Carolina Wilmington", + "type": "Child", + "id": "https://ror.org/02t0qr014" + }, + { + "label": "University of North Carolina at Asheville", + "type": "Child", + "id": "https://ror.org/017c6at71" + }, + { + "label": "University of North Carolina at Chapel Hill", + "type": "Child", + "id": "https://ror.org/0130frc33" + }, + { + "label": "University of North Carolina at Charlotte", + "type": "Child", + "id": "https://ror.org/04dawnj30" + }, + { + "label": "University of North Carolina at Greensboro", + "type": "Child", + "id": "https://ror.org/04fnxsj42" + }, + { + "label": "University of North Carolina at Pembroke", + "type": "Child", + "id": "https://ror.org/05pckj715" + }, + { + "label": "Western Carolina University", + "type": "Child", + "id": "https://ror.org/010h78f45" + }, + { + "label": "Winston-Salem State University", + "type": "Child", + "id": "https://ror.org/049yc0897" + } + ], + "addresses": [ + { + "lat": 35.7721, + "lng": -78.63861, + "state": null, + "state_code": null, + "city": "Raleigh", + "geonames_city": { + "id": 4487042, + "city": "Raleigh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.northcarolina.edu/" + ], + "aliases": [ + "UNC System" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_North_Carolina", + "labels": [ + { + "label": "Université de caroline du nord", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.410711.2", + "preferred": "grid.410711.2" + }, + "ISNI": { + "all": [ + "0000 0001 1034 1720" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1191202" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/056hav897.json b/v1.49/v1/056hav897.json new file mode 100644 index 000000000..4a8cab502 --- /dev/null +++ b/v1.49/v1/056hav897.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/056hav897", + "name": "Plateformes Lilloises en Biologie et Santé", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Parent", + "id": "https://ror.org/05k9skc85" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ums-plbs.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "PLBS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/056k6mn31.json b/v1.49/v1/056k6mn31.json new file mode 100644 index 000000000..3da03b792 --- /dev/null +++ b/v1.49/v1/056k6mn31.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/056k6mn31", + "name": "Instituto Madrileño de Antropología", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://antropologiamadrid.org" + ], + "aliases": [ + "Madrid Institute of Anthropology" + ], + "acronyms": [ + "IMA" + ], + "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.49/v1/056mb6a70.json b/v1.49/v1/056mb6a70.json new file mode 100644 index 000000000..7a22e7489 --- /dev/null +++ b/v1.49/v1/056mb6a70.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/056mb6a70", + "name": "Institut Agama Islam Negeri Parepare", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -4.0135, + "lng": 119.6255, + "state": null, + "state_code": null, + "city": "Parepare", + "geonames_city": { + "id": 1632353, + "city": "Parepare", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iainpare.ac.id" + ], + "aliases": [ + "IAIN Parepare" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Institut_Agama_Islam_Negeri_Parepare", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109912252" + ], + "preferred": "Q109912252" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/056qzgq67.json b/v1.49/v1/056qzgq67.json new file mode 100644 index 000000000..a41f4384b --- /dev/null +++ b/v1.49/v1/056qzgq67.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/056qzgq67", + "name": "Georgia Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.georgiahumanities.org/" + ], + "aliases": [], + "acronyms": [ + "GHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446885.3", + "preferred": "grid.446885.3" + }, + "ISNI": { + "all": [ + "0000 0000 8914 9995" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/056rync30.json b/v1.49/v1/056rync30.json new file mode 100644 index 000000000..c4755e70f --- /dev/null +++ b/v1.49/v1/056rync30.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/056rync30", + "name": "Utah Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 40.76078, + "lng": -111.89105, + "state": null, + "state_code": null, + "city": "Salt Lake City", + "geonames_city": { + "id": 5780993, + "city": "Salt Lake City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.utahhumanities.org/" + ], + "aliases": [], + "acronyms": [ + "UHC " + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447553.4", + "preferred": "grid.447553.4" + }, + "ISNI": { + "all": [ + "0000 0001 0298 9228" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/056wdpc91.json b/v1.49/v1/056wdpc91.json new file mode 100644 index 000000000..b79d4ed09 --- /dev/null +++ b/v1.49/v1/056wdpc91.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/056wdpc91", + "name": "Cognitive Neuroimaging Lab", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unicog.org/" + ], + "aliases": [ + "UNICOG" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462692.d", + "preferred": "grid.462692.d" + }, + "Wikidata": { + "all": [ + "Q30261530" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/057cydn08.json b/v1.49/v1/057cydn08.json new file mode 100644 index 000000000..5eac49cdd --- /dev/null +++ b/v1.49/v1/057cydn08.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/057cydn08", + "name": "Hunan University of Technology and Business", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.19874, + "lng": 112.97087, + "state": null, + "state_code": null, + "city": "Changsha", + "geonames_city": { + "id": 1815577, + "city": "Changsha", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hutb.edu.cn" + ], + "aliases": [ + "Hunan University of Commerce", + "Hunan University of Technology and Commerce", + "湖南商学院" + ], + "acronyms": [ + "HUC", + "HUTB", + "HUTC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hunan_University_of_Technology_and_Commerce", + "labels": [ + { + "label": "湖南工商大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.443321.3", + "preferred": "grid.443321.3" + }, + "Wikidata": { + "all": [ + "Q11174571" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/057ff4y42.json b/v1.49/v1/057ff4y42.json new file mode 100644 index 000000000..6d0644f21 --- /dev/null +++ b/v1.49/v1/057ff4y42.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/057ff4y42", + "name": "BOKU University", + "email_address": null, + "ip_addresses": [], + "established": 1872, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Global Change and Sustainability", + "type": "Child", + "id": "https://ror.org/01zec9695" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://boku.ac.at" + ], + "aliases": [ + "University of Natural Resources and Life Sciences, Vienna", + "Universität für Bodenkultur Wien" + ], + "acronyms": [ + "BOKU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Natural_Resources_and_Life_Sciences,_Vienna", + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "GRID": { + "all": "grid.5173.0", + "preferred": "grid.5173.0" + }, + "ISNI": { + "all": [ + "0000 0001 2298 5320" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q876520" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/057qyqy03.json b/v1.49/v1/057qyqy03.json new file mode 100644 index 000000000..ebd59a642 --- /dev/null +++ b/v1.49/v1/057qyqy03.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/057qyqy03", + "name": "Anna University Regional Campus, Coimbatore", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 11.00555, + "lng": 76.96612, + "state": null, + "state_code": null, + "city": "Coimbatore", + "geonames_city": { + "id": 1273865, + "city": "Coimbatore", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.aurcc.ac.in" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Anna_University_Regional_Campus%2C_Coimbatore", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/058q57q63.json b/v1.49/v1/058q57q63.json new file mode 100644 index 000000000..245346894 --- /dev/null +++ b/v1.49/v1/058q57q63.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/058q57q63", + "name": "University College South Denmark", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.47028, + "lng": 8.45187, + "state": null, + "state_code": null, + "city": "Esbjerg", + "geonames_city": { + "id": 2622447, + "city": "Esbjerg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ucsyd.dk/" + ], + "aliases": [ + "UC Syddanmark", + "University College South", + "University College Syd" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_College_South_Denmark", + "labels": [ + { + "label": "University College Syddanmark", + "iso639": "da" + } + ], + "country": { + "country_name": "Denmark", + "country_code": "DK" + }, + "external_ids": { + "GRID": { + "all": "grid.470076.2", + "preferred": "grid.470076.2" + }, + "ISNI": { + "all": [ + "0000 0004 0607 7033" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7894638" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/059bp8k51.json b/v1.49/v1/059bp8k51.json new file mode 100644 index 000000000..0182b3020 --- /dev/null +++ b/v1.49/v1/059bp8k51.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/059bp8k51", + "name": "The Slovenian Research and Innovation Agency", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aris-rs.si" + ], + "aliases": [ + "Javna agencija za znanstvenoraziskovalno in inovacijsko dejavnost Republike Slovenije", + "Slovenian Research Agency", + "Slovenian Research and Innovation Agency" + ], + "acronyms": [ + "ARIS", + "ARRS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Javna agencija za znanstvenoraziskovalno in inovacijsko dejavnost", + "iso639": "sl" + } + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "external_ids": { + "GRID": { + "all": "grid.436050.4", + "preferred": "grid.436050.4" + }, + "ISNI": { + "all": [ + "0000 0004 0452 9403" + ], + "preferred": "0000 0004 0452 9403" + }, + "Wikidata": { + "all": [ + "Q12792240" + ], + "preferred": "Q12792240" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/059h57z85.json b/v1.49/v1/059h57z85.json new file mode 100644 index 000000000..115d4d132 --- /dev/null +++ b/v1.49/v1/059h57z85.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/059h57z85", + "name": "Guangzhou City Polytechnic", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gcp.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E5%B9%BF%E5%B7%9E%E5%9F%8E%E5%B8%82%E8%81%8C%E4%B8%9A%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "广州城市职业学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q10283681" + ], + "preferred": "Q10283681" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/059h7s745.json b/v1.49/v1/059h7s745.json new file mode 100644 index 000000000..0c3960e84 --- /dev/null +++ b/v1.49/v1/059h7s745.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/059h7s745", + "name": "Unité de Recherche Clinique Côte d'Azur", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/ur2ca" + ], + "aliases": [], + "acronyms": [ + "UR2CA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/059ynac98.json b/v1.49/v1/059ynac98.json new file mode 100644 index 000000000..e21c672d9 --- /dev/null +++ b/v1.49/v1/059ynac98.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/059ynac98", + "name": "Centre Atlantique de Philosophie", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Nantes Université", + "type": "Parent", + "id": "https://ror.org/03gnr7b55" + }, + { + "label": "Université de Bretagne Occidentale", + "type": "Parent", + "id": "https://ror.org/01b8h3982" + } + ], + "addresses": [ + { + "lat": 47.21725, + "lng": -1.55336, + "state": null, + "state_code": null, + "city": "Nantes", + "geonames_city": { + "id": 2990969, + "city": "Nantes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://caphi.univ-nantes.fr" + ], + "aliases": [], + "acronyms": [ + "CAPHI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52607254" + ], + "preferred": "Q52607254" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05ajmm513.json b/v1.49/v1/05ajmm513.json new file mode 100644 index 000000000..e4ef7320d --- /dev/null +++ b/v1.49/v1/05ajmm513.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05ajmm513", + "name": "Humanities Washington", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 47.60621, + "lng": -122.33207, + "state": null, + "state_code": null, + "city": "Seattle", + "geonames_city": { + "id": 5809844, + "city": "Seattle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.humanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446938.4", + "preferred": "grid.446938.4" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05ayzqh10.json b/v1.49/v1/05ayzqh10.json new file mode 100644 index 000000000..b5f64e8c5 --- /dev/null +++ b/v1.49/v1/05ayzqh10.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/05ayzqh10", + "name": "Holy Family Red Crescent Medical College", + "email_address": null, + "ip_addresses": [], + "established": null, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hfrcmc.edu.bd" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q97253946" + ], + "preferred": "Q97253946" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05b3p7p58.json b/v1.49/v1/05b3p7p58.json new file mode 100644 index 000000000..9a79ab83d --- /dev/null +++ b/v1.49/v1/05b3p7p58.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/05b3p7p58", + "name": "Laboratoire Mouvement Sport Santé", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Rennes 2", + "type": "Parent", + "id": "https://ror.org/01m84wm78" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "École Normale Supérieure de Rennes", + "type": "Parent", + "id": "https://ror.org/03rxtdc22" + } + ], + "addresses": [ + { + "lat": 48.02459, + "lng": -1.74709, + "state": null, + "state_code": null, + "city": "Bruz", + "geonames_city": { + "id": 3029713, + "city": "Bruz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://m2slab.com/" + ], + "aliases": [], + "acronyms": [ + "M2S" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Movement, Sport and health Sciences Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463984.4", + "preferred": "grid.463984.4" + }, + "Wikidata": { + "all": [ + "Q30262354" + ], + "preferred": "Q30262354" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05ba43f71.json b/v1.49/v1/05ba43f71.json new file mode 100644 index 000000000..8ce71ab3e --- /dev/null +++ b/v1.49/v1/05ba43f71.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/05ba43f71", + "name": "NOAA National Centers for Coastal Ocean Science", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "NOAA National Ocean Service", + "type": "Parent", + "id": "https://ror.org/02k4h0334" + }, + { + "label": "NOAA RESTORE Science Program", + "type": "Child", + "id": "https://ror.org/0042xzm63" + } + ], + "addresses": [ + { + "lat": 38.99067, + "lng": -77.02609, + "state": null, + "state_code": null, + "city": "Silver Spring", + "geonames_city": { + "id": 4369596, + "city": "Silver Spring", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://coastalscience.noaa.gov" + ], + "aliases": [ + "Centers for Coastal Ocean Science", + "NOAA NOS National Centers for Coastal Ocean Science", + "National Centers for Coastal Ocean Science", + "National Ocean Service National Centers for Coastal Ocean Science National Ocean Service", + "National Oceanic and Atmospheric Administration National Ocean Service National Centers for Coastal Ocean Science", + "U.S. National Oceanic and Atmospheric Administration National Centers for Coastal Ocean Science", + "United States National Centers for Coastal Ocean Science", + "United States National Oceanic and Atmospheric Administration National Centers for Coastal Ocean Science" + ], + "acronyms": [ + "CSCOR", + "NCCOS", + "NOAA NCCOS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.423033.5", + "preferred": "grid.423033.5" + }, + "ISNI": { + "all": [ + "0000 0001 2287 6896" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30284069" + ], + "preferred": "Q30284069" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05ba8sq03.json b/v1.49/v1/05ba8sq03.json new file mode 100644 index 000000000..9be450786 --- /dev/null +++ b/v1.49/v1/05ba8sq03.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05ba8sq03", + "name": "St. Joseph's College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Kwame Nkrumah University of Science and Technology", + "type": "Related", + "id": "https://ror.org/00cb23x68" + } + ], + "addresses": [ + { + "lat": 7.09034, + "lng": -2.02498, + "state": null, + "state_code": null, + "city": "Bechem", + "geonames_city": { + "id": 2303258, + "city": "Bechem", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.joscobechem.edu.gh" + ], + "aliases": [ + "Saint Joseph's College of Education", + "St. Joseph College of Education" + ], + "acronyms": [ + "JosCo", + "SJCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Joseph%27s_College_of_Education", + "labels": [ + { + "label": "Kwalejin Ilimi ta St. Joseph", + "iso639": "ha" + } + ], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996986" + ], + "preferred": "Q46996986" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05bab7f08.json b/v1.49/v1/05bab7f08.json new file mode 100644 index 000000000..1730927e1 --- /dev/null +++ b/v1.49/v1/05bab7f08.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05bab7f08", + "name": "Humanities Tennessee", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 36.16589, + "lng": -86.78444, + "state": null, + "state_code": null, + "city": "Nashville", + "geonames_city": { + "id": 4644585, + "city": "Nashville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.humanitiestennessee.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446934.8", + "preferred": "grid.446934.8" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05be9p317.json b/v1.49/v1/05be9p317.json new file mode 100644 index 000000000..eeb285681 --- /dev/null +++ b/v1.49/v1/05be9p317.json @@ -0,0 +1,152 @@ +{ + "id": "https://ror.org/05be9p317", + "name": "Micropesanteur Fondamentale et Appliquée", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "École Nationale Supérieure de Mécanique et d'Aérotechnique", + "type": "Parent", + "id": "https://ror.org/04jx68594" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Centre National d'Études Spatiales", + "type": "Parent", + "id": "https://ror.org/04h1h0y33" + }, + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "ESPCI Paris", + "type": "Parent", + "id": "https://ror.org/03zx86w41" + }, + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Fundamental and Applied Microgravity", + "GDR Micropesanteur Fondamentale et Appliquée", + "Groupement de Recherche Fundamental and Applied Microgravity", + "Groupement de Recherche Micropesanteur Fondamentale et Appliquée" + ], + "acronyms": [ + "MFA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782480" + ], + "preferred": "Q51782480" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05bea9918.json b/v1.49/v1/05bea9918.json new file mode 100644 index 000000000..791c42718 --- /dev/null +++ b/v1.49/v1/05bea9918.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05bea9918", + "name": "Institut Franco-Allemand de Recherches de Saint-Louis", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + } + ], + "addresses": [ + { + "lat": 47.59206, + "lng": 7.55923, + "state": null, + "state_code": null, + "city": "Saint-Louis", + "geonames_city": { + "id": 2978742, + "city": "Saint-Louis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.isl.eu/index.php/en/" + ], + "aliases": [], + "acronyms": [ + "ISL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French-German Research Institute of Saint-Louis", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.435509.e", + "preferred": "grid.435509.e" + }, + "ISNI": { + "all": [ + "0000 0004 0609 4394" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05bz47575.json b/v1.49/v1/05bz47575.json new file mode 100644 index 000000000..2c2c7004d --- /dev/null +++ b/v1.49/v1/05bz47575.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/05bz47575", + "name": "Lille Économie Management", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université d'Artois", + "type": "Parent", + "id": "https://ror.org/053x9s498" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université Catholique de Lille", + "type": "Parent", + "id": "https://ror.org/025s1b152" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lem.univ-lille.fr/" + ], + "aliases": [], + "acronyms": [ + "LEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503365.6", + "preferred": "grid.503365.6" + }, + "ISNI": { + "all": [ + "0000 0000 9099 1370" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05c602238.json b/v1.49/v1/05c602238.json new file mode 100644 index 000000000..3a38423a9 --- /dev/null +++ b/v1.49/v1/05c602238.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05c602238", + "name": "Vermont Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 44.26006, + "lng": -72.57539, + "state": null, + "state_code": null, + "city": "Montpelier", + "geonames_city": { + "id": 5238685, + "city": "Montpelier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vermonthumanities.org" + ], + "aliases": [ + "Vermont Humanities Council" + ], + "acronyms": [ + "VHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447573.6", + "preferred": "grid.447573.6" + }, + "ISNI": { + "all": [ + "0000 0000 9362 0292" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05c95bg36.json b/v1.49/v1/05c95bg36.json new file mode 100644 index 000000000..6a5b5cf21 --- /dev/null +++ b/v1.49/v1/05c95bg36.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/05c95bg36", + "name": "Laboratoire de Physique des Plasmas", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Observatoire de Paris", + "type": "Parent", + "id": "https://ror.org/029nkcm90" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lpp.polytechnique.fr" + ], + "aliases": [ + "Laboratory of Plasma Physics" + ], + "acronyms": [ + "LPP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463932.9", + "preferred": "grid.463932.9" + }, + "ISNI": { + "all": [ + "0000 0004 0370 2526" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16652997" + ], + "preferred": "Q16652997" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05cx7ek10.json b/v1.49/v1/05cx7ek10.json new file mode 100644 index 000000000..c37deaa31 --- /dev/null +++ b/v1.49/v1/05cx7ek10.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05cx7ek10", + "name": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://biosit.univ-rennes1.fr/?q=presentation" + ], + "aliases": [ + "Biosit" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462699.6", + "preferred": "grid.462699.6" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05d1e6v30.json b/v1.49/v1/05d1e6v30.json new file mode 100644 index 000000000..3b2aec1be --- /dev/null +++ b/v1.49/v1/05d1e6v30.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/05d1e6v30", + "name": "Institut des Biomolécules Max Mousseron", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Hospitalier Universitaire de Nîmes", + "type": "Parent", + "id": "https://ror.org/0275ye937" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université d'Avignon et des Pays de Vaucluse", + "type": "Parent", + "id": "https://ror.org/00mfpxb84" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Nîmes", + "type": "Parent", + "id": "https://ror.org/044t4x544" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "Parent", + "id": "https://ror.org/03sgyqj04" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ibmm.univ-montp1.fr/?lang=en" + ], + "aliases": [], + "acronyms": [ + "IBMM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462008.8", + "preferred": "grid.462008.8" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05d362832.json b/v1.49/v1/05d362832.json new file mode 100644 index 000000000..235e8c307 --- /dev/null +++ b/v1.49/v1/05d362832.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05d362832", + "name": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.648, + "lng": 3.80144, + "state": null, + "state_code": null, + "city": "Grabels", + "geonames_city": { + "id": 3015424, + "city": "Grabels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.chimeco-lab.com" + ], + "aliases": [ + "ChimEco", + "Chimie Bio-Inspirée et Innovations Ecologiques" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52607140" + ], + "preferred": "Q52607140" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05d6q6m27.json b/v1.49/v1/05d6q6m27.json new file mode 100644 index 000000000..42f5fcc49 --- /dev/null +++ b/v1.49/v1/05d6q6m27.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/05d6q6m27", + "name": "Beijing Intelligent Entropy Science & Technology Co. Ltd.", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Beijing Intelligent Entropy Science & Technology Co.", + "北京智熵科技有限公司" + ], + "acronyms": [ + "IEST" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05dfqh778.json b/v1.49/v1/05dfqh778.json new file mode 100644 index 000000000..c82c4f24f --- /dev/null +++ b/v1.49/v1/05dfqh778.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05dfqh778", + "name": "Research Institute for Sustainable Humanosphere", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Kyoto University", + "type": "Parent", + "id": "https://ror.org/02kpeqv85" + } + ], + "addresses": [ + { + "lat": 35.02107, + "lng": 135.75385, + "state": null, + "state_code": null, + "city": "Kyoto", + "geonames_city": { + "id": 1857910, + "city": "Kyoto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rish.kyoto-u.ac.jp" + ], + "aliases": [], + "acronyms": [ + "RISH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "京都大学生存圏研究所", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q50377312" + ], + "preferred": "Q50377312" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05dm3m993.json b/v1.49/v1/05dm3m993.json new file mode 100644 index 000000000..bcab69ff4 --- /dev/null +++ b/v1.49/v1/05dm3m993.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05dm3m993", + "name": "Protéomique, Réponse Inflammatoire et Spectrométrie de Masse", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "Délégation Régionale Nord Ouest", + "type": "Parent", + "id": "https://ror.org/00jmxvy70" + }, + { + "label": "UniCancer Group", + "type": "Parent", + "id": "https://ror.org/04vhgtv41" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://laboratoire-prism.fr/" + ], + "aliases": [ + "Laboratoire PRISM" + ], + "acronyms": [ + "PRISM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464195.b", + "preferred": "grid.464195.b" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05dpfhh73.json b/v1.49/v1/05dpfhh73.json new file mode 100644 index 000000000..b50aa0201 --- /dev/null +++ b/v1.49/v1/05dpfhh73.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05dpfhh73", + "name": "Interactions Cellulaires et Physiopathologie Hépathique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.scicf.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "ICPH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464067.7", + "preferred": "grid.464067.7" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05dqf9946.json b/v1.49/v1/05dqf9946.json new file mode 100644 index 000000000..bb0c823d7 --- /dev/null +++ b/v1.49/v1/05dqf9946.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/05dqf9946", + "name": "Institute of Science Tokyo", + "email_address": null, + "ip_addresses": [], + "established": 2024, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tokyo Institute of Technology", + "type": "Related", + "id": "https://ror.org/0112mx960" + }, + { + "label": "Tokyo Medical and Dental University", + "type": "Related", + "id": "https://ror.org/051k3eh31" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.isct.ac.jp" + ], + "aliases": [ + "Science Tokyo", + "Tokyo Kagaku Daigaku", + "Toukyou Kagaku Daigaku", + "Tōkyō Kagaku Daigaku", + "とうきょうかがくだいがく", + "トウキョウカガクダイガク" + ], + "acronyms": [ + "ISCT" + ], + "status": "active", + "wikipedia_url": "https://ja.wikipedia.org/wiki/%E6%9D%B1%E4%BA%AC%E7%A7%91%E5%AD%A6%E5%A4%A7%E5%AD%A6", + "labels": [ + { + "label": "東京科学大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q116264906" + ], + "preferred": "Q116264906" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05dy6wv04.json b/v1.49/v1/05dy6wv04.json new file mode 100644 index 000000000..569bd543d --- /dev/null +++ b/v1.49/v1/05dy6wv04.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05dy6wv04", + "name": "Inflammation, Microbiome and Immunosurveillance", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://umr996.inserm.fr/" + ], + "aliases": [ + "Inflammation, Chemokines and Immunopathology" + ], + "acronyms": [ + "MI2" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503203.7", + "preferred": "grid.503203.7" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05e6g0130.json b/v1.49/v1/05e6g0130.json new file mode 100644 index 000000000..c81540754 --- /dev/null +++ b/v1.49/v1/05e6g0130.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05e6g0130", + "name": "Yeungnam University College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.87028, + "lng": 128.59111, + "state": null, + "state_code": null, + "city": "Daegu", + "geonames_city": { + "id": 1835329, + "city": "Daegu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ync.ac.kr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Yeungnam_University_College", + "labels": [], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0648 1052" + ], + "preferred": "0000 0004 0648 1052" + }, + "Wikidata": { + "all": [ + "Q8053073" + ], + "preferred": "Q8053073" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05ee10k25.json b/v1.49/v1/05ee10k25.json new file mode 100644 index 000000000..b36f63559 --- /dev/null +++ b/v1.49/v1/05ee10k25.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/05ee10k25", + "name": "Institut de Génétique Humaine", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Montpellier GenomiX", + "type": "Child", + "id": "https://ror.org/00ts9pr54" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.igh.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "IGH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Human Genetics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462268.c", + "preferred": "grid.462268.c" + }, + "ISNI": { + "all": [ + "0000 0000 9886 5504" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261412" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05ev54a13.json b/v1.49/v1/05ev54a13.json new file mode 100644 index 000000000..160783e8c --- /dev/null +++ b/v1.49/v1/05ev54a13.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/05ev54a13", + "name": "Laboratoire d'Économie des Ressources Naturelles", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Occitanie-Toulouse", + "type": "Parent", + "id": "https://ror.org/02sxjwh33" + }, + { + "label": "Université Toulouse-I-Capitole", + "type": "Parent", + "id": "https://ror.org/0443n9e75" + }, + { + "label": "Toulouse School of Economics", + "type": "Parent", + "id": "https://ror.org/00ff5f522" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www2.toulouse.inra.fr/lerna/" + ], + "aliases": [], + "acronyms": [ + "LERNA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503309.c", + "preferred": "grid.503309.c" + }, + "ISNI": { + "all": [ + "0000 0004 0638 0921" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05f1eky95.json b/v1.49/v1/05f1eky95.json new file mode 100644 index 000000000..5de8ac810 --- /dev/null +++ b/v1.49/v1/05f1eky95.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05f1eky95", + "name": "University of Saint Katherine", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.14337, + "lng": -117.16614, + "state": null, + "state_code": null, + "city": "San Marcos", + "geonames_city": { + "id": 5392368, + "city": "San Marcos", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usk.edu" + ], + "aliases": [ + "Saint Katherine College" + ], + "acronyms": [ + "SKC", + "USK" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Katherine_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.469262.d", + "preferred": "grid.469262.d" + }, + "ISNI": { + "all": [ + "0000 0004 4652 9882" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16900576" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05fagpw72.json b/v1.49/v1/05fagpw72.json new file mode 100644 index 000000000..c781359da --- /dev/null +++ b/v1.49/v1/05fagpw72.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/05fagpw72", + "name": "Wenhua College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.58333, + "lng": 114.26667, + "state": null, + "state_code": null, + "city": "Wuhan", + "geonames_city": { + "id": 1791247, + "city": "Wuhan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hustwenhua.net" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E6%96%87%E5%8D%8E%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "文华学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q10905382" + ], + "preferred": "Q10905382" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05fjffm04.json b/v1.49/v1/05fjffm04.json new file mode 100644 index 000000000..25f097c77 --- /dev/null +++ b/v1.49/v1/05fjffm04.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05fjffm04", + "name": "Laboratoire de Physiologie Cellulaire", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://phycell.univ-lille.fr" + ], + "aliases": [ + "PhyCell" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Cell Physiology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0620 8128" + ], + "preferred": "0000 0004 0620 8128" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05fsjkf12.json b/v1.49/v1/05fsjkf12.json new file mode 100644 index 000000000..0cdc3e840 --- /dev/null +++ b/v1.49/v1/05fsjkf12.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/05fsjkf12", + "name": "Guangdong Peizheng College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.peizheng.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E5%B9%BF%E4%B8%9C%E5%9F%B9%E6%AD%A3%E5%AD%A6%E9%99%A2", + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q17498859" + ], + "preferred": "Q17498859" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05g3p2p60.json b/v1.49/v1/05g3p2p60.json new file mode 100644 index 000000000..0664eb811 --- /dev/null +++ b/v1.49/v1/05g3p2p60.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05g3p2p60", + "name": "Alliance nationale pour les sciences de la vie et de la santé", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aviesan.fr" + ], + "aliases": [ + "French National Alliance for Life Sciences and Health" + ], + "acronyms": [ + "AVIESAN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.458362.e", + "preferred": "grid.458362.e" + }, + "ISNI": { + "all": [ + "0000 0004 4651 0479" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05g7w4342.json b/v1.49/v1/05g7w4342.json new file mode 100644 index 000000000..8ec6531ea --- /dev/null +++ b/v1.49/v1/05g7w4342.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/05g7w4342", + "name": "Chartered Institute of Personnel Management Sri Lanka (Inc.)", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.93548, + "lng": 79.84868, + "state": null, + "state_code": null, + "city": "Colombo", + "geonames_city": { + "id": 1248991, + "city": "Colombo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cipmlk.org" + ], + "aliases": [ + "Chartered Institute of Personnel Management", + "Chartered Institute of Personnel Management Sri Lanka Inc.", + "වරලත් පිරිස් කළමනාකරණ ආයතනය" + ], + "acronyms": [ + "CIPM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Sri Lanka", + "country_code": "LK" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05gd4yq49.json b/v1.49/v1/05gd4yq49.json new file mode 100644 index 000000000..431cc3026 --- /dev/null +++ b/v1.49/v1/05gd4yq49.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/05gd4yq49", + "name": "Institut de Biologie de Lille", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Parent", + "id": "https://ror.org/05k9skc85" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ibl.fr/index.html" + ], + "aliases": [], + "acronyms": [ + "IBL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418183.7", + "preferred": "grid.418183.7" + }, + "ISNI": { + "all": [ + "0000 0004 0597 711X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05gtjpd57.json b/v1.49/v1/05gtjpd57.json new file mode 100644 index 000000000..8a03ccab9 --- /dev/null +++ b/v1.49/v1/05gtjpd57.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/05gtjpd57", + "name": "Salale University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 9.8, + "lng": 38.73333, + "state": null, + "state_code": null, + "city": "Fichē", + "geonames_city": { + "id": 337771, + "city": "Fichē", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.slu.edu.et" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ethiopia", + "country_code": "ET" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05h8wtz16.json b/v1.49/v1/05h8wtz16.json new file mode 100644 index 000000000..cbae49e56 --- /dev/null +++ b/v1.49/v1/05h8wtz16.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05h8wtz16", + "name": "Bagabaga College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1944, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Education, Winneba", + "type": "Related", + "id": "https://ror.org/00y1ekh28" + } + ], + "addresses": [ + { + "lat": 9.40079, + "lng": -0.8393, + "state": null, + "state_code": null, + "city": "Tamale", + "geonames_city": { + "id": 2294877, + "city": "Tamale", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://bagabaga.edu.gh" + ], + "aliases": [], + "acronyms": [ + "BACE", + "BATCO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bagabaga_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996960" + ], + "preferred": "Q46996960" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05hb8m595.json b/v1.49/v1/05hb8m595.json new file mode 100644 index 000000000..2330a0d03 --- /dev/null +++ b/v1.49/v1/05hb8m595.json @@ -0,0 +1,139 @@ +{ + "id": "https://ror.org/05hb8m595", + "name": "PHOTOSYNTHESE", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "École Normale Supérieure - PSL", + "type": "Parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Aix-Marseille Université", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "GDR 3422", + "GDR PHOTOSYNTHESE", + "Groupement de Recherche PHOTOSYNTHESE" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695176" + ], + "preferred": "Q123695176" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05hffr360.json b/v1.49/v1/05hffr360.json new file mode 100644 index 000000000..5fe9537a5 --- /dev/null +++ b/v1.49/v1/05hffr360.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/05hffr360", + "name": "Khalifa University of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.447926, + "lng": 54.394864, + "state": null, + "state_code": null, + "city": "Abu Dhabi", + "geonames_city": { + "id": 292968, + "city": "Abu Dhabi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ku.ac.ae/" + ], + "aliases": [ + "Khalifa University" + ], + "acronyms": [ + "KUSTAR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Khalifa_University", + "labels": [ + { + "label": "جامعة خليفة للعلوم والتكنولوجيا والبحوث", + "iso639": "ar" + } + ], + "country": { + "country_name": "United Arab Emirates", + "country_code": "AE" + }, + "external_ids": { + "GRID": { + "all": "grid.440568.b", + "preferred": "grid.440568.b" + }, + "ISNI": { + "all": [ + "0000 0004 1762 9729" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6399651", + "Q39793447" + ], + "preferred": "Q6399651" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05hjsty75.json b/v1.49/v1/05hjsty75.json new file mode 100644 index 000000000..4b5de899f --- /dev/null +++ b/v1.49/v1/05hjsty75.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05hjsty75", + "name": "Lesbian Herstory Archives", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lesbianherstoryarchives.org" + ], + "aliases": [], + "acronyms": [ + "LHA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lesbian_Herstory_Archives", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9499 0412" + ], + "preferred": "0000 0000 9499 0412" + }, + "Wikidata": { + "all": [ + "Q6530249" + ], + "preferred": "Q6530249" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05hp04238.json b/v1.49/v1/05hp04238.json new file mode 100644 index 000000000..44d751edd --- /dev/null +++ b/v1.49/v1/05hp04238.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/05hp04238", + "name": "Transitions Savoirs Médias Territoires", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/laboratoires/transitions-medias-savoir-territoires-transitions" + ], + "aliases": [ + "TRANSITIONS" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05hv8n393.json b/v1.49/v1/05hv8n393.json new file mode 100644 index 000000000..3880c0e19 --- /dev/null +++ b/v1.49/v1/05hv8n393.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/05hv8n393", + "name": "Berekum College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1953, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.4534, + "lng": -2.58404, + "state": null, + "state_code": null, + "city": "Berekum", + "geonames_city": { + "id": 2303125, + "city": "Berekum", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://becoled.edu.gh" + ], + "aliases": [], + "acronyms": [ + "BECOLED" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Berekum_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996961" + ], + "preferred": "Q46996961" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05hyx5a17.json b/v1.49/v1/05hyx5a17.json new file mode 100644 index 000000000..22e6226ac --- /dev/null +++ b/v1.49/v1/05hyx5a17.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/05hyx5a17", + "name": "Laboratoire de Génie Électrique de Grenoble", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://g2elab.grenoble-inp.fr" + ], + "aliases": [], + "acronyms": [ + "G2ELab" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462755.7", + "preferred": "grid.462755.7" + }, + "ISNI": { + "all": [ + "0000 0000 9277 3238" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05jkzmq27.json b/v1.49/v1/05jkzmq27.json new file mode 100644 index 000000000..66c48aa49 --- /dev/null +++ b/v1.49/v1/05jkzmq27.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05jkzmq27", + "name": "Mass Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 42.32509, + "lng": -72.6412, + "state": null, + "state_code": null, + "city": "Northampton", + "geonames_city": { + "id": 4945819, + "city": "Northampton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://masshumanities.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447109.f", + "preferred": "grid.447109.f" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05k267t15.json b/v1.49/v1/05k267t15.json new file mode 100644 index 000000000..d8a67f9a6 --- /dev/null +++ b/v1.49/v1/05k267t15.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05k267t15", + "name": "France Génomique", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + } + ], + "addresses": [ + { + "lat": 48.63389, + "lng": 2.44417, + "state": null, + "state_code": null, + "city": "Évry-Courcouronnes", + "geonames_city": { + "id": 6454878, + "city": "Évry-Courcouronnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.france-genomique.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784520" + ], + "preferred": "Q51784520" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05k441034.json b/v1.49/v1/05k441034.json new file mode 100644 index 000000000..4adcb7f17 --- /dev/null +++ b/v1.49/v1/05k441034.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05k441034", + "name": "Louvre", + "email_address": null, + "ip_addresses": [], + "established": 1793, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Musée du Louvre-Lens", + "type": "Child", + "id": "https://ror.org/03r7e7711" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.louvre.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Louvre", + "labels": [ + { + "label": "Musée du Louvre", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.500473.5", + "preferred": "grid.500473.5" + }, + "ISNI": { + "all": [ + "0000 0001 2260 177X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q19675" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05k9skc85.json b/v1.49/v1/05k9skc85.json new file mode 100644 index 000000000..0965920f2 --- /dev/null +++ b/v1.49/v1/05k9skc85.json @@ -0,0 +1,154 @@ +{ + "id": "https://ror.org/05k9skc85", + "name": "Institut Pasteur de Lille", + "email_address": null, + "ip_addresses": [], + "established": 1854, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Center for Infection and Immunity of Lille", + "type": "Child", + "id": "https://ror.org/00dyt5s15" + }, + { + "label": "Institut de Biologie de Lille", + "type": "Child", + "id": "https://ror.org/05gd4yq49" + }, + { + "label": "Integrated Genomics and Metabolic Diseases Modeling", + "type": "Child", + "id": "https://ror.org/0300mzg60" + }, + { + "label": "Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète", + "type": "Child", + "id": "https://ror.org/05xanhp90" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "IMPact de l'Environnement Chimique sur la Santé humaine", + "type": "Child", + "id": "https://ror.org/0455vgw31" + }, + { + "label": "Médicaments et Molécules pour Agir sur les Systèmes Vivants", + "type": "Child", + "id": "https://ror.org/0086epd30" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Facteurs de risque et déterminants moléculaires des maladies liées au vieillissement", + "type": "Child", + "id": "https://ror.org/03rvrjk28" + }, + { + "label": "Recherche translationnelle sur le diabète", + "type": "Child", + "id": "https://ror.org/03pbmtd68" + }, + { + "label": "Institut Pasteur", + "type": "Related", + "id": "https://ror.org/0495fxg12" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pasteur-lille.fr/" + ], + "aliases": [ + "Pasteur-Lille" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pasteur_Institute_of_Lille", + "labels": [ + { + "label": "Pasteur Institute of Lille", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.8970.6", + "preferred": "grid.8970.6" + }, + "ISNI": { + "all": [ + "0000 0001 2159 9858" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3151788" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05kstpb17.json b/v1.49/v1/05kstpb17.json new file mode 100644 index 000000000..03f9cff49 --- /dev/null +++ b/v1.49/v1/05kstpb17.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05kstpb17", + "name": "Agogo Presbyterian Women's College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1931, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Education, Winneba", + "type": "Related", + "id": "https://ror.org/00y1ekh28" + } + ], + "addresses": [ + { + "lat": 6.80004, + "lng": -1.08193, + "state": null, + "state_code": null, + "city": "Agogo", + "geonames_city": { + "id": 2305537, + "city": "Agogo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://apwce.edu.gh" + ], + "aliases": [ + "Agogo Presby College of Education", + "Agogo Presbyterian College of Education" + ], + "acronyms": [ + "APWCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Agogo_Presbyterian_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q46996956" + ], + "preferred": "Q46996956" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05kwbf598.json b/v1.49/v1/05kwbf598.json new file mode 100644 index 000000000..37fd5167a --- /dev/null +++ b/v1.49/v1/05kwbf598.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/05kwbf598", + "name": "Institut pour l'avancée des biosciences", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Hospitalier Universitaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/041rhpw39" + }, + { + "label": "Délégation Alpes", + "type": "Parent", + "id": "https://ror.org/04px4e658" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Établissement Français du Sang", + "type": "Parent", + "id": "https://ror.org/037hby126" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iab-grenoble.fr" + ], + "aliases": [ + "Institut Albert Bonniot" + ], + "acronyms": [ + "IAB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute for Advanced Biosciences", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418110.d", + "preferred": "grid.418110.d" + }, + "ISNI": { + "all": [ + "0000 0004 0642 0153" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q19407044" + ], + "preferred": "Q19407044" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05kz79f96.json b/v1.49/v1/05kz79f96.json new file mode 100644 index 000000000..f4d489b14 --- /dev/null +++ b/v1.49/v1/05kz79f96.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05kz79f96", + "name": "Physiologie et Physiopathlogie Endocriniennes", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.81471, + "lng": 2.36073, + "state": null, + "state_code": null, + "city": "Le Kremlin-Bicêtre", + "geonames_city": { + "id": 3003737, + "city": "Le Kremlin-Bicêtre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.inserm.u1185.u-psud.fr" + ], + "aliases": [], + "acronyms": [ + "PHYSENDO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781928" + ], + "preferred": "Q51781928" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05m14rs93.json b/v1.49/v1/05m14rs93.json new file mode 100644 index 000000000..497e1395d --- /dev/null +++ b/v1.49/v1/05m14rs93.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/05m14rs93", + "name": "Laboratoire d’Océanologie et de Géosciences", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université du littoral côte d'opale", + "type": "Parent", + "id": "https://ror.org/02gdcg342" + } + ], + "addresses": [ + { + "lat": 50.76963, + "lng": 1.61139, + "state": null, + "state_code": null, + "city": "Wimereux", + "geonames_city": { + "id": 2967351, + "city": "Wimereux", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://log.cnrs.fr/?lang=fr" + ], + "aliases": [], + "acronyms": [ + "LOG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503290.d", + "preferred": "grid.503290.d" + }, + "ISNI": { + "all": [ + "0000 0004 0387 1733" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51780385" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05mfwtg94.json b/v1.49/v1/05mfwtg94.json new file mode 100644 index 000000000..87a02b11c --- /dev/null +++ b/v1.49/v1/05mfwtg94.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/05mfwtg94", + "name": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Île-de-France - Jouy-en-Josas - Antony", + "type": "Parent", + "id": "https://ror.org/00gtg0p11" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "École Nationale Vétérinaire d'Alfort", + "type": "Parent", + "id": "https://ror.org/04k031t90" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + } + ], + "addresses": [ + { + "lat": 48.75909, + "lng": 2.16966, + "state": null, + "state_code": null, + "city": "Jouy-en-Josas", + "geonames_city": { + "id": 3012165, + "city": "Jouy-en-Josas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www6.jouy.inrae.fr/breed/" + ], + "aliases": [ + "Unit Biology of Reproduction, Environment, Epigenetics and Development", + "Unité Mixte Biologie de la Reproduction, Environnement, Epigénétique et Développement" + ], + "acronyms": [ + "BREED" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Biology of Reproduction, Environment, Epigenetics and Development", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503097.8", + "preferred": "grid.503097.8" + }, + "ISNI": { + "all": [ + "0000 0004 0459 2891" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q52605711" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05mkckz37.json b/v1.49/v1/05mkckz37.json new file mode 100644 index 000000000..23014b2aa --- /dev/null +++ b/v1.49/v1/05mkckz37.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/05mkckz37", + "name": "Nemocnica Bory, a.s", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.14816, + "lng": 17.10674, + "state": null, + "state_code": null, + "city": "Bratislava", + "geonames_city": { + "id": 3060972, + "city": "Bratislava", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nemocnica-bory.sk" + ], + "aliases": [ + "Bory Hospital", + "Hospital Bory, Slovakia", + "Nemocnica Bory", + "Nemocnica Bory Penta Hospitals" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Slovakia", + "country_code": "SK" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05njt8204.json b/v1.49/v1/05njt8204.json new file mode 100644 index 000000000..71bf2caa9 --- /dev/null +++ b/v1.49/v1/05njt8204.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05njt8204", + "name": "Delaware Humanities Forum", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 39.74595, + "lng": -75.54659, + "state": null, + "state_code": null, + "city": "Wilmington", + "geonames_city": { + "id": 4145381, + "city": "Wilmington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.dehumanities.org/" + ], + "aliases": [], + "acronyms": [ + "DHF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446665.3", + "preferred": "grid.446665.3" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05nn1k450.json b/v1.49/v1/05nn1k450.json new file mode 100644 index 000000000..ae0b060b7 --- /dev/null +++ b/v1.49/v1/05nn1k450.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05nn1k450", + "name": "Institut du droit public et de la science politique", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://idpsp.univ-rennes.fr" + ], + "aliases": [], + "acronyms": [ + "IDPSP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52606151" + ], + "preferred": "Q52606151" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05nw4bs65.json b/v1.49/v1/05nw4bs65.json new file mode 100644 index 000000000..75eab1b2a --- /dev/null +++ b/v1.49/v1/05nw4bs65.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/05nw4bs65", + "name": "Illinois Humanities Council", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Endowment for the Humanities", + "type": "Related", + "id": "https://ror.org/02vdm1p28" + } + ], + "addresses": [ + { + "lat": 41.85003, + "lng": -87.65005, + "state": null, + "state_code": null, + "city": "Chicago", + "geonames_city": { + "id": 4887398, + "city": "Chicago", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ilhumanities.org/" + ], + "aliases": [], + "acronyms": [ + "IHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446985.2", + "preferred": "grid.446985.2" + }, + "ISNI": { + "all": [ + "0000 0004 5902 1201" + ], + "preferred": "0000 0004 5902 1201" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05p7fmf80.json b/v1.49/v1/05p7fmf80.json new file mode 100644 index 000000000..c4f4ddd75 --- /dev/null +++ b/v1.49/v1/05p7fmf80.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05p7fmf80", + "name": "Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Établissement Français du Sang", + "type": "Parent", + "id": "https://ror.org/037hby126" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mobidic.univ-rennes.fr" + ], + "aliases": [], + "acronyms": [ + "MOBIDIC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05p8d2v16.json b/v1.49/v1/05p8d2v16.json new file mode 100644 index 000000000..ace027001 --- /dev/null +++ b/v1.49/v1/05p8d2v16.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05p8d2v16", + "name": "Bengbu University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.94083, + "lng": 117.36083, + "state": null, + "state_code": null, + "city": "Bengbu", + "geonames_city": { + "id": 1816440, + "city": "Bengbu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bbc.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E8%9A%8C%E5%9F%A0%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "蚌埠学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1808 3625" + ], + "preferred": "0000 0004 1808 3625" + }, + "Wikidata": { + "all": [ + "Q28410086" + ], + "preferred": "Q28410086" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05p9z4t69.json b/v1.49/v1/05p9z4t69.json new file mode 100644 index 000000000..a106ef1c3 --- /dev/null +++ b/v1.49/v1/05p9z4t69.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/05p9z4t69", + "name": "Pacific University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.58584, + "lng": 73.71346, + "state": null, + "state_code": null, + "city": "Udaipur", + "geonames_city": { + "id": 1253986, + "city": "Udaipur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pacific-university.ac.in" + ], + "aliases": [ + "Pacific University India" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pacific_University_%28India%29", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05pdhes44.json b/v1.49/v1/05pdhes44.json new file mode 100644 index 000000000..e60238004 --- /dev/null +++ b/v1.49/v1/05pdhes44.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/05pdhes44", + "name": "SEI Group CSR Foundation (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.75, + "lng": 133.5, + "state": null, + "state_code": null, + "city": "Shikoku", + "geonames_city": { + "id": 1852487, + "city": "Shikoku", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sei-group-csr.or.jp" + ], + "aliases": [ + "Sumitomo Electric Group CSR Foundation", + "住友電工グループ社会貢献基金" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "公益財団法人住友電工グループ社会貢献基金", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05pet6f20.json b/v1.49/v1/05pet6f20.json new file mode 100644 index 000000000..692ca8d65 --- /dev/null +++ b/v1.49/v1/05pet6f20.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05pet6f20", + "name": "National Institute of Technology Uttarakhand", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.08565, + "lng": 74.80555, + "state": null, + "state_code": null, + "city": "Srinagar", + "geonames_city": { + "id": 1255634, + "city": "Srinagar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nituk.ac.in" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Institute_of_Technology%2C_Uttarakhand", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1773 6196" + ], + "preferred": "0000 0004 1773 6196" + }, + "Wikidata": { + "all": [ + "Q17078114" + ], + "preferred": "Q17078114" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05pw23b17.json b/v1.49/v1/05pw23b17.json new file mode 100644 index 000000000..88657b963 --- /dev/null +++ b/v1.49/v1/05pw23b17.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05pw23b17", + "name": "Communauté d'agglomération de La Rochelle", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.16308, + "lng": -1.15222, + "state": null, + "state_code": null, + "city": "La Rochelle", + "geonames_city": { + "id": 3006787, + "city": "La Rochelle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.agglo-larochelle.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Agglomeration_community_of_La_Rochelle", + "labels": [ + { + "label": "Agglomeration Community of La Rochelle", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.433008.c", + "preferred": "grid.433008.c" + }, + "ISNI": { + "all": [ + "0000 0001 2115 5798" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05pwkex33.json b/v1.49/v1/05pwkex33.json new file mode 100644 index 000000000..e9392d338 --- /dev/null +++ b/v1.49/v1/05pwkex33.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/05pwkex33", + "name": "Observatoire des Sciences de l'Univers de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education", + "Facility" + ], + "relationships": [ + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "Child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Ecosystèmes, Biodiversité, Evolution", + "type": "Child", + "id": "https://ror.org/005fjj927" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Littoral, Environnement, Télédétection, Géomatique", + "type": "Child", + "id": "https://ror.org/05sat2s07" + }, + { + "label": "Université Rennes 2", + "type": "Parent", + "id": "https://ror.org/01m84wm78" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Institut Agro Rennes-Angers", + "type": "Parent", + "id": "https://ror.org/01s3fs709" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://osur.univ-rennes1.fr" + ], + "aliases": [ + "Universe Sciences Observatory of Rennes" + ], + "acronyms": [ + "OSU OSUR", + "OSUR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4648 9534" + ], + "preferred": "0000 0004 4648 9534" + }, + "Wikidata": { + "all": [ + "Q52604182" + ], + "preferred": "Q52604182" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05q5m4q74.json b/v1.49/v1/05q5m4q74.json new file mode 100644 index 000000000..034d9037a --- /dev/null +++ b/v1.49/v1/05q5m4q74.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05q5m4q74", + "name": "Analyses Littéraires et Histoire de la Langue", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://alithila.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "ALITHILA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51778791" + ], + "preferred": "Q51778791" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05q5mgf13.json b/v1.49/v1/05q5mgf13.json new file mode 100644 index 000000000..51442dbf1 --- /dev/null +++ b/v1.49/v1/05q5mgf13.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/05q5mgf13", + "name": "Life Science Foundation of Japan", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.69402, + "lng": 139.75363, + "state": null, + "state_code": null, + "city": "Chiyoda", + "geonames_city": { + "id": 1864529, + "city": "Chiyoda", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lifesci-found.com" + ], + "aliases": [ + "人ライフサイエンス振興財団" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "公益財団法人ライフサイエンス振興財団", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05q5rnr22.json b/v1.49/v1/05q5rnr22.json new file mode 100644 index 000000000..10b19b6a3 --- /dev/null +++ b/v1.49/v1/05q5rnr22.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/05q5rnr22", + "name": "Sekolah Tinggi Olahraga dan Kesehatan Bina Guna", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 3.58333, + "lng": 98.66667, + "state": null, + "state_code": null, + "city": "Medan", + "geonames_city": { + "id": 1214520, + "city": "Medan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://stok-binaguna.ac.id" + ], + "aliases": [ + "STOK Bina Guna" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q105626436" + ], + "preferred": "Q105626436" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05qec5a53.json b/v1.49/v1/05qec5a53.json new file mode 100644 index 000000000..d227ec05d --- /dev/null +++ b/v1.49/v1/05qec5a53.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/05qec5a53", + "name": "Centre Hospitalier Universitaire de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "CIC Rennes", + "type": "Child", + "id": "https://ror.org/02baj6743" + }, + { + "label": "Hôpital Pontchaillou", + "type": "Child", + "id": "https://ror.org/02r25sw81" + }, + { + "label": "Université de Rennes", + "type": "Related", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.chu-rennes.fr/sections" + ], + "aliases": [ + "CHU Rennes", + "CHU de Rennes" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rennes_University_Hospital", + "labels": [ + { + "label": "Rennes University Hospital", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.411154.4", + "preferred": "grid.411154.4" + }, + "ISNI": { + "all": [ + "0000 0001 2175 0984" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945770" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05qqb8y62.json b/v1.49/v1/05qqb8y62.json new file mode 100644 index 000000000..d6a25b790 --- /dev/null +++ b/v1.49/v1/05qqb8y62.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05qqb8y62", + "name": "Instituto Tecnológico Superior del Occidente del Estado de Hidalgo", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.23031, + "lng": -99.21396, + "state": null, + "state_code": null, + "city": "Mixquiahuala de Juarez", + "geonames_city": { + "id": 3523127, + "city": "Mixquiahuala de Juarez", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.itsoeh.edu.mx" + ], + "aliases": [ + "TecNM Campus Occidente del Estado de Hildago", + "Tecnológico Nacional de México Campus Occidente del Estado de Hildago" + ], + "acronyms": [ + "ITSOEH" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_Superior_del_Occidente_del_Estado_de_Hidalgo", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 1524" + ], + "preferred": "0000 0004 1770 1524" + }, + "Wikidata": { + "all": [ + "Q70041395" + ], + "preferred": "Q70041395" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05qy9ka59.json b/v1.49/v1/05qy9ka59.json new file mode 100644 index 000000000..3dbd25e72 --- /dev/null +++ b/v1.49/v1/05qy9ka59.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05qy9ka59", + "name": "Laboratoire d'imagerie translationnelle en oncologie", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut Curie", + "type": "Parent", + "id": "https://ror.org/04t0gwh46" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://curie.fr/unite/u1288" + ], + "aliases": [], + "acronyms": [ + "LITO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Translational Imaging in Oncology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05r0mw364.json b/v1.49/v1/05r0mw364.json new file mode 100644 index 000000000..cdd61e72e --- /dev/null +++ b/v1.49/v1/05r0mw364.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05r0mw364", + "name": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.83545, + "lng": 2.24128, + "state": null, + "state_code": null, + "city": "Boulogne-Billancourt", + "geonames_city": { + "id": 3031137, + "city": "Boulogne-Billancourt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uvsq.fr/biomarqueurs-et-essais-cliniques-en-cancerologie-et-onco-hematologie-beccoh-ur-4340" + ], + "aliases": [ + "Laboratoire BECCOH", + "Laboratoire biomarqueurs et essais cliniques en cancérologie et onco-hématologie" + ], + "acronyms": [ + "BECCOH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05r332y60.json b/v1.49/v1/05r332y60.json new file mode 100644 index 000000000..019cf5f51 --- /dev/null +++ b/v1.49/v1/05r332y60.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/05r332y60", + "name": "Biochemistry and Plant Molecular Physiology", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Genetic Improvement and Adaptation of Mediterranean and Tropical Plants", + "type": "Child", + "id": "https://ror.org/02w4exq36" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www1.montpellier.inra.fr/wp-inra/bpmp/en/" + ], + "aliases": [], + "acronyms": [ + "BPMP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Biochimie et Physiologie Moléculaire des Plantes", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461861.c", + "preferred": "grid.461861.c" + }, + "ISNI": { + "all": [ + "0000 0004 0445 8430" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261319" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05r75c731.json b/v1.49/v1/05r75c731.json new file mode 100644 index 000000000..4747dae1d --- /dev/null +++ b/v1.49/v1/05r75c731.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05r75c731", + "name": "Federal Polytechnic, Bida", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 9.02844, + "lng": 6.01192, + "state": null, + "state_code": null, + "city": "Chekpa", + "geonames_city": { + "id": 10321072, + "city": "Chekpa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fedpolybida.edu.ng" + ], + "aliases": [ + "Federal Polytechnic Bida, Niger State", + "The Federal Polytechnic, Bida" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_Polytechnic_Bida", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1782 7979" + ], + "preferred": "0000 0004 1782 7979" + }, + "Wikidata": { + "all": [ + "Q59452271" + ], + "preferred": "Q59452271" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05r7z1k40.json b/v1.49/v1/05r7z1k40.json new file mode 100644 index 000000000..f84ef64ba --- /dev/null +++ b/v1.49/v1/05r7z1k40.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/05r7z1k40", + "name": "NOAA National Marine Fisheries Service Northwest Fisheries Science Center", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "NOAA National Marine Fisheries Service", + "type": "Parent", + "id": "https://ror.org/033mqx355" + }, + { + "label": "NOAA National Marine Fisheries Service Northeast Fisheries Science Center", + "type": "Related", + "id": "https://ror.org/02nc0ck44" + } + ], + "addresses": [ + { + "lat": 47.60621, + "lng": -122.33207, + "state": null, + "state_code": null, + "city": "Seattle", + "geonames_city": { + "id": 5809844, + "city": "Seattle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nwfsc.noaa.gov/" + ], + "aliases": [ + "NOAA NMFS Northwest Fisheries Science Center", + "NW Fisheries Science Center", + "Northwest Fisheries Center", + "U.S. National Marine Fisheries Service Northwest Fisheries Center", + "U.S. National Marine Fisheries Service Northwest Fisheries Science Center", + "U.S. Northwest Fisheries Science Center", + "United States National Marine Fisheries Service Northwest Fisheries Center", + "United States National Marine Fisheries Service Northwest Fisheries Science Center", + "United States Northwest Fisheries Science Center" + ], + "acronyms": [ + "NMFS NWFSC", + "NOAA NWFSC", + "NWFSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.420104.3", + "preferred": "grid.420104.3" + }, + "ISNI": { + "all": [ + "0000 0001 1502 9269" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30282379" + ], + "preferred": "Q30282379" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05rf29967.json b/v1.49/v1/05rf29967.json new file mode 100644 index 000000000..22333246e --- /dev/null +++ b/v1.49/v1/05rf29967.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/05rf29967", + "name": "Department for International Development", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of the United Kingdom", + "type": "Parent", + "id": "https://ror.org/05wnh3t63" + }, + { + "label": "Foreign, Commonwealth & Development Office", + "type": "Successor", + "id": "https://ror.org/037wke960" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gov.uk/government/organisations/department-for-international-development" + ], + "aliases": [], + "acronyms": [ + "DFID" + ], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/Department_for_International_Development", + "labels": [ + { + "label": "Yr Adran dros Ddatblygu Rhyngwladol", + "iso639": "cy" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.433527.4", + "preferred": "grid.433527.4" + }, + "ISNI": { + "all": [ + "0000 0001 1018 290X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2748702" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05rnj8444.json b/v1.49/v1/05rnj8444.json new file mode 100644 index 000000000..411f9e252 --- /dev/null +++ b/v1.49/v1/05rnj8444.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05rnj8444", + "name": "Indo-French Centre for Applied Mathematics", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 12.97194, + "lng": 77.59369, + "state": null, + "state_code": null, + "city": "Bengaluru", + "geonames_city": { + "id": 1277333, + "city": "Bengaluru", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://math.iisc.ac.in/~ifcam/" + ], + "aliases": [], + "acronyms": [ + "IFCAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q45134289" + ], + "preferred": "Q45134289" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05rqwc876.json b/v1.49/v1/05rqwc876.json new file mode 100644 index 000000000..dc8aecc38 --- /dev/null +++ b/v1.49/v1/05rqwc876.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05rqwc876", + "name": "Sciences Cognitives et Sciences Affectives", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://scalab.cnrs.fr/index.php/fr/" + ], + "aliases": [], + "acronyms": [ + "SCALAB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cognitive & Affective Sciences Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464130.4", + "preferred": "grid.464130.4" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05sbt2524.json b/v1.49/v1/05sbt2524.json new file mode 100644 index 000000000..d3d48ed5d --- /dev/null +++ b/v1.49/v1/05sbt2524.json @@ -0,0 +1,239 @@ +{ + "id": "https://ror.org/05sbt2524", + "name": "Institut polytechnique de Grenoble", + "email_address": null, + "ip_addresses": [], + "established": 1892, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Interuniversitaire de MicroElectronique et Nanotechnologies", + "type": "Child", + "id": "https://ror.org/000tdrn36" + }, + { + "label": "Laboratoire d'Economie Appliquée de Grenoble", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Laboratoire d'Informatique de Grenoble", + "type": "Child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "Child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Institut de Microélectronique, Electromagnétisme et Photonique", + "type": "Child", + "id": "https://ror.org/03taa9n66" + }, + { + "label": "Institut des Géosciences de l'Environnement", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Rhéologie et Procédés", + "type": "Child", + "id": "https://ror.org/044ggyg50" + }, + { + "label": "Laboratoire de Conception et d'Intégration des Systèmes", + "type": "Child", + "id": "https://ror.org/04eg25g76" + }, + { + "label": "Laboratoire de Génie Électrique de Grenoble", + "type": "Child", + "id": "https://ror.org/05hyx5a17" + }, + { + "label": "Laboratoire des Sciences pour la Conception, l'Optimisation et la Production", + "type": "Child", + "id": "https://ror.org/00rv5x925" + }, + { + "label": "Laboratoire des Écoulements Géophysiques et Industriels", + "type": "Child", + "id": "https://ror.org/043pfpy19" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "Child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Laboratoire de génie des procédés pour la bioraffinerie, les matériaux bio-sourcés et l’impression fonctionnelle", + "type": "Child", + "id": "https://ror.org/02z8yps18" + }, + { + "label": "Laboratoire de Physique Subatomique et de Cosmologie", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Laboratoire des Matériaux et du Génie Physique", + "type": "Child", + "id": "https://ror.org/014n97s28" + }, + { + "label": "Science et Ingénierie des Matériaux et Procédés", + "type": "Child", + "id": "https://ror.org/00m7zca23" + }, + { + "label": "Sols, Solides, Structures, Risques", + "type": "Child", + "id": "https://ror.org/03bcdsr62" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Translational Innovation in Medicine and Complexity", + "type": "Child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Techniques of Informatics and Microelectronics for Integrated Systems Architecture", + "type": "Child", + "id": "https://ror.org/000063q30" + }, + { + "label": "Verimag", + "type": "Child", + "id": "https://ror.org/05afmzm11" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "Centre de Radiofréquences, Optique et Micro-nanoélectronique des Alpes", + "type": "Child", + "id": "https://ror.org/050rs7291" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.grenoble-inp.fr/welcome/" + ], + "aliases": [ + "Grenoble INP" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Grenoble_Institute_of_Technology", + "labels": [ + { + "label": "Grenoble Institute of Technology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.5676.2", + "preferred": "grid.5676.2" + }, + "ISNI": { + "all": [ + "0000 0004 1765 4326" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1665121" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05sd5r855.json b/v1.49/v1/05sd5r855.json new file mode 100644 index 000000000..b320c1a19 --- /dev/null +++ b/v1.49/v1/05sd5r855.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05sd5r855", + "name": "Laboratoire de Mathématiques", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://math.univ-bpclermont.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463920.a", + "preferred": "grid.463920.a" + }, + "ISNI": { + "all": [ + "0000 0001 2301 1931" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05sm9a571.json b/v1.49/v1/05sm9a571.json new file mode 100644 index 000000000..02f728c64 --- /dev/null +++ b/v1.49/v1/05sm9a571.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/05sm9a571", + "name": "Hyogo Prefectural Institute of Environmental Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.6913, + "lng": 135.183, + "state": null, + "state_code": null, + "city": "Kobe", + "geonames_city": { + "id": 1859171, + "city": "Kobe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://web.pref.hyogo.lg.jp/iphs01/top01.html" + ], + "aliases": [ + "Hyogo Prefectural Institute of Public Health" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.413716.6", + "preferred": "grid.413716.6" + }, + "ISNI": { + "all": [ + "0000 0004 0379 3042" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30279704" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05tcbgw10.json b/v1.49/v1/05tcbgw10.json new file mode 100644 index 000000000..38cf9f51a --- /dev/null +++ b/v1.49/v1/05tcbgw10.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05tcbgw10", + "name": "Universidad Tecnologica de Durango", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.83333, + "lng": -104.83333, + "state": null, + "state_code": null, + "city": "Durango", + "geonames_city": { + "id": 4011741, + "city": "Durango", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://utd.edu.mx" + ], + "aliases": [ + "Technological University of Durango" + ], + "acronyms": [ + "UTD" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Tecnol%C3%B3gica_de_Durango", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0546 7101" + ], + "preferred": "0000 0004 0546 7101" + }, + "Wikidata": { + "all": [ + "Q102104940" + ], + "preferred": "Q102104940" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05tcnbj64.json b/v1.49/v1/05tcnbj64.json new file mode 100644 index 000000000..7b4947be2 --- /dev/null +++ b/v1.49/v1/05tcnbj64.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/05tcnbj64", + "name": "Laboratoire d’Étude et de Recherche sur l’Économie, les Politiques et les Systèmes Sociaux", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Université Toulouse-I-Capitole", + "type": "Parent", + "id": "https://ror.org/0443n9e75" + }, + { + "label": "École Supérieure de Commerce de Toulouse", + "type": "Parent", + "id": "https://ror.org/0349y2q65" + }, + { + "label": "Université Toulouse - Jean Jaurès", + "type": "Parent", + "id": "https://ror.org/04ezk3x31" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lereps.sciencespo-toulouse.fr/" + ], + "aliases": [], + "acronyms": [ + "LEREPS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503299.4", + "preferred": "grid.503299.4" + }, + "ISNI": { + "all": [ + "0000 0001 2098 0542" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51779815" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05tqpe068.json b/v1.49/v1/05tqpe068.json new file mode 100644 index 000000000..bd8a981cd --- /dev/null +++ b/v1.49/v1/05tqpe068.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05tqpe068", + "name": "Gulf States Marine Fisheries Commission", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "NOAA RESTORE Science Program", + "type": "Related", + "id": "https://ror.org/0042xzm63" + } + ], + "addresses": [ + { + "lat": 30.41131, + "lng": -88.82781, + "state": null, + "state_code": null, + "city": "Ocean Springs", + "geonames_city": { + "id": 4439506, + "city": "Ocean Springs", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.gsmfc.org/" + ], + "aliases": [], + "acronyms": [ + "GSMFC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gulf_States_Marine_Fisheries_Commission", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.448436.9", + "preferred": "grid.448436.9" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05v3veg52.json b/v1.49/v1/05v3veg52.json new file mode 100644 index 000000000..4a0f83e1f --- /dev/null +++ b/v1.49/v1/05v3veg52.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/05v3veg52", + "name": "Akatsi College of Education", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.1316, + "lng": 0.79853, + "state": null, + "state_code": null, + "city": "Akatsi", + "geonames_city": { + "id": 2305191, + "city": "Akatsi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://akatsico.edu.gh" + ], + "aliases": [], + "acronyms": [ + "AKATSICO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Akatsi_College_of_Education", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q16733330" + ], + "preferred": "Q16733330" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05vrs3189.json b/v1.49/v1/05vrs3189.json new file mode 100644 index 000000000..f5492d89b --- /dev/null +++ b/v1.49/v1/05vrs3189.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05vrs3189", + "name": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "École Centrale de Lille", + "type": "Parent", + "id": "https://ror.org/01x441g73" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "IMT Nord Europe", + "type": "Parent", + "id": "https://ror.org/042rh9p26" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cristal.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "CRIStAL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05vwjwk52.json b/v1.49/v1/05vwjwk52.json new file mode 100644 index 000000000..db495076e --- /dev/null +++ b/v1.49/v1/05vwjwk52.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05vwjwk52", + "name": "Aisyah University", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -5.42211, + "lng": 104.93454, + "state": null, + "state_code": null, + "city": "Pringsewu Regency", + "geonames_city": { + "id": 9844898, + "city": "Pringsewu Regency", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aisyahuniversity.ac.id" + ], + "aliases": [ + "Universitas Aisyah Pringsewu" + ], + "acronyms": [ + "UAP" + ], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Universitas_Aisyah_Pringsewu", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1270 5996" + ], + "preferred": "0000 0005 1270 5996" + }, + "Wikidata": { + "all": [ + "Q109912740" + ], + "preferred": "Q109912740" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05wjc8a85.json b/v1.49/v1/05wjc8a85.json new file mode 100644 index 000000000..0905365b8 --- /dev/null +++ b/v1.49/v1/05wjc8a85.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/05wjc8a85", + "name": "Laboratoire Universitaire de Recherche en Production Automatisée", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lurpa.ens-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "LURPA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2175 3675" + ], + "preferred": "0000 0001 2175 3675" + }, + "Wikidata": { + "all": [ + "Q51785279" + ], + "preferred": "Q51785279" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05wnh3t63.json b/v1.49/v1/05wnh3t63.json new file mode 100644 index 000000000..36888db13 --- /dev/null +++ b/v1.49/v1/05wnh3t63.json @@ -0,0 +1,198 @@ +{ + "id": "https://ror.org/05wnh3t63", + "name": "Government of the United Kingdom", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Civil Service", + "type": "Child", + "id": "https://ror.org/04ex4j806" + }, + { + "label": "Committee on Radioactive Waste Management", + "type": "Child", + "id": "https://ror.org/04x8c0q56" + }, + { + "label": "Department for Business, Energy and Industrial Strategy", + "type": "Child", + "id": "https://ror.org/019ya6433" + }, + { + "label": "Department for Digital, Culture, Media & Sport", + "type": "Child", + "id": "https://ror.org/02zqy3981" + }, + { + "label": "Department for Education", + "type": "Child", + "id": "https://ror.org/0320bge18" + }, + { + "label": "Department for Environment Food and Rural Affairs", + "type": "Child", + "id": "https://ror.org/00tnppw48" + }, + { + "label": "Department for Exiting the European Union", + "type": "Child", + "id": "https://ror.org/00jws7929" + }, + { + "label": "Department for International Trade", + "type": "Child", + "id": "https://ror.org/01bgmsb44" + }, + { + "label": "Department for Transport", + "type": "Child", + "id": "https://ror.org/010mf0m52" + }, + { + "label": "Department for Work and Pensions", + "type": "Child", + "id": "https://ror.org/0499kfe57" + }, + { + "label": "Department for the Economy", + "type": "Child", + "id": "https://ror.org/0161w0r98" + }, + { + "label": "Government Communications Headquarters", + "type": "Child", + "id": "https://ror.org/052mq0r90" + }, + { + "label": "Her Majesty's Revenue and Customs", + "type": "Child", + "id": "https://ror.org/00hkb6y19" + }, + { + "label": "His Majesty's Treasury", + "type": "Child", + "id": "https://ror.org/03k33gq76" + }, + { + "label": "Home Office", + "type": "Child", + "id": "https://ror.org/00y81cg83" + }, + { + "label": "Ministry of Defence", + "type": "Child", + "id": "https://ror.org/01bvxzn29" + }, + { + "label": "Department for Levelling Up, Housing & Communities", + "type": "Child", + "id": "https://ror.org/01w88hp45" + }, + { + "label": "Ministry of Justice", + "type": "Child", + "id": "https://ror.org/01xdnwc75" + }, + { + "label": "Northern Ireland Office", + "type": "Child", + "id": "https://ror.org/01xgj3b22" + }, + { + "label": "The Deputy Prime Minister's Office", + "type": "Child", + "id": "https://ror.org/04fjx8e69" + }, + { + "label": "Foreign, Commonwealth & Development Office", + "type": "Child", + "id": "https://ror.org/037wke960" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gov.uk/" + ], + "aliases": [ + "British Government", + "Her Majesty's Government" + ], + "acronyms": [ + "HMG" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Government_of_the_United_Kingdom", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.421947.d", + "preferred": "grid.421947.d" + }, + "ISNI": { + "all": [ + "0000 0004 1782 6335" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6063", + "Q5995" + ], + "preferred": "Q6063" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05wzh1m37.json b/v1.49/v1/05wzh1m37.json new file mode 100644 index 000000000..8606a2c41 --- /dev/null +++ b/v1.49/v1/05wzh1m37.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05wzh1m37", + "name": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.icmmo.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "ICMMO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462047.3", + "preferred": "grid.462047.3" + }, + "ISNI": { + "all": [ + "0000 0004 0382 4005" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05x2w9m74.json b/v1.49/v1/05x2w9m74.json new file mode 100644 index 000000000..795d1d6cb --- /dev/null +++ b/v1.49/v1/05x2w9m74.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/05x2w9m74", + "name": "Amrutvahini College of Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Savitribai Phule Pune University", + "type": "Related", + "id": "https://ror.org/044g6d731" + } + ], + "addresses": [ + { + "lat": 19.09457, + "lng": 74.73843, + "state": null, + "state_code": null, + "city": "Ahmednagar", + "geonames_city": { + "id": 1279228, + "city": "Ahmednagar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.avcoe.org" + ], + "aliases": [], + "acronyms": [ + "AVCOE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05x4mwp36.json b/v1.49/v1/05x4mwp36.json new file mode 100644 index 000000000..3ebcfd14d --- /dev/null +++ b/v1.49/v1/05x4mwp36.json @@ -0,0 +1,67 @@ +{ + "id": "https://ror.org/05x4mwp36", + "name": "Bethany College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.52431, + "lng": -106.7311, + "state": null, + "state_code": null, + "city": "Hepburn", + "geonames_city": { + "id": 12822874, + "city": "Hepburn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bethany_College_%28Saskatchewan%29", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05x7bg352.json b/v1.49/v1/05x7bg352.json new file mode 100644 index 000000000..eadefbfdf --- /dev/null +++ b/v1.49/v1/05x7bg352.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05x7bg352", + "name": "Sistema General de Regalías de Colombia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sgr.gov.co" + ], + "aliases": [], + "acronyms": [ + "SGR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "General Royalties System", + "iso639": "en" + } + ], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7777 4928" + ], + "preferred": "0000 0004 7777 4928" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05x9zmx47.json b/v1.49/v1/05x9zmx47.json new file mode 100644 index 000000000..c86b55bcd --- /dev/null +++ b/v1.49/v1/05x9zmx47.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/05x9zmx47", + "name": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Parent", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "Centre Oscar Lambret", + "type": "Parent", + "id": "https://ror.org/03xfq7a50" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Parent", + "id": "https://ror.org/05k9skc85" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.canther.fr" + ], + "aliases": [ + "CANTHER Laboratory", + "Cancer, Heterogeneity, Plasticity and Resistance to Therapies", + "Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "Laboratoire CANTHER" + ], + "acronyms": [ + "CANTHER" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "CANTHER - Cancer, Heterogeneity, Plasticity and Resistance to Therapies", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05xanhp90.json b/v1.49/v1/05xanhp90.json new file mode 100644 index 000000000..911a1656b --- /dev/null +++ b/v1.49/v1/05xanhp90.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05xanhp90", + "name": "Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut Pasteur de Lille", + "type": "Parent", + "id": "https://ror.org/05k9skc85" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.u1011.lille.inserm.fr/?lang=en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462442.2", + "preferred": "grid.462442.2" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05y5s3h28.json b/v1.49/v1/05y5s3h28.json new file mode 100644 index 000000000..07ffe735c --- /dev/null +++ b/v1.49/v1/05y5s3h28.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/05y5s3h28", + "name": "Plant Health Institute de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Biologie et Génétique des Interactions Plante-Parasite", + "type": "Predecessor", + "id": "https://ror.org/0026vdt21" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://umr-phim.cirad.fr" + ], + "aliases": [ + "Plant Health Institute of Montpellier" + ], + "acronyms": [ + "PHIM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.49/v1/05y76vp22.json b/v1.49/v1/05y76vp22.json new file mode 100644 index 000000000..f3b4c124f --- /dev/null +++ b/v1.49/v1/05y76vp22.json @@ -0,0 +1,129 @@ +{ + "id": "https://ror.org/05y76vp22", + "name": "Institut de recherche mathématique de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Agro Rennes-Angers", + "type": "Parent", + "id": "https://ror.org/01s3fs709" + }, + { + "label": "Institut National des Sciences Appliquées de Rennes", + "type": "Parent", + "id": "https://ror.org/04xaa4j22" + }, + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "Université Rennes 2", + "type": "Parent", + "id": "https://ror.org/01m84wm78" + }, + { + "label": "École Normale Supérieure de Rennes", + "type": "Parent", + "id": "https://ror.org/03rxtdc22" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://irmar.univ-rennes.fr" + ], + "aliases": [], + "acronyms": [ + "IRMAR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Mathematics Research Institute of Rennes", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.469499.f", + "preferred": "grid.469499.f" + }, + "ISNI": { + "all": [ + "0000 0001 2186 8595" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30264845" + ], + "preferred": "Q30264845" + } + } +} \ No newline at end of file diff --git a/v1.49/v1/05yeqc316.json b/v1.49/v1/05yeqc316.json new file mode 100644 index 000000000..fc0c3f842 --- /dev/null +++ b/v1.49/v1/05yeqc316.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/05yeqc316", + "name": "Zhenjiang College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.21086, + "lng": 119.45508, + "state": null, + "state_code": null, + "city": "Zhenjiang", + "geonames_city": { + "id": 1784642, + "city": "Zhenjiang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.zjc.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E9%95%87%E6%B1%9F%E5%B8%82%E9%AB%98%E7%AD%89%E4%B8%93%E7%A7%91%E5%AD%A6%E6%A0%A1", + "labels": [ + { + "label": "镇江市高等专科学校", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q15941093" + ], + "preferred": "Q15941093" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0015z8z93.json b/v1.50/v1/0015z8z93.json new file mode 100644 index 000000000..ea144b742 --- /dev/null +++ b/v1.50/v1/0015z8z93.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/0015z8z93", + "name": "University College of Allameh Helli", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.69235, + "lng": 53.55262, + "state": null, + "state_code": null, + "city": "Behshahr", + "geonames_city": { + "id": 140918, + "city": "Behshahr", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ahelli-cha-ihe.ac.ir" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "دانشگاه علامه حلی چالوس", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "GRID": { + "all": "grid.467124.2", + "preferred": "grid.467124.2" + }, + "Wikidata": { + "all": [ + "Q30263972" + ], + "preferred": "Q30263972" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/001f39w38.json b/v1.50/v1/001f39w38.json new file mode 100644 index 000000000..be13f51ba --- /dev/null +++ b/v1.50/v1/001f39w38.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/001f39w38", + "name": "Clermont Auvergne INP", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Sigma Clermont", + "type": "Child", + "id": "https://ror.org/02n5evf44" + }, + { + "label": "Université Clermont Auvergne", + "type": "Parent", + "id": "https://ror.org/01a8ajp46" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.clermont-auvergne-inp.fr" + ], + "aliases": [ + "Institut national polytechnique Clermont Auvergne", + "Polytechnic Institute of Clermont-Auvergne" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Polytechnic_Institute_of_Clermont-Auvergne", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q105809850" + ], + "preferred": "Q105809850" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/001nta019.json b/v1.50/v1/001nta019.json new file mode 100644 index 000000000..a06677e68 --- /dev/null +++ b/v1.50/v1/001nta019.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/001nta019", + "name": "Institut National des Sciences Appliquées de Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 1875, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.insa-strasbourg.fr/" + ], + "aliases": [ + "Technische Winterschule für Wiesenbautechniker" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/INSA_Strasbourg", + "labels": [ + { + "label": "INSA Strasbourg", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.435015.6", + "preferred": "grid.435015.6" + }, + "ISNI": { + "all": [ + "0000 0004 0640 5519" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q521036" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/001vq2a15.json b/v1.50/v1/001vq2a15.json new file mode 100644 index 000000000..3cbf79923 --- /dev/null +++ b/v1.50/v1/001vq2a15.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/001vq2a15", + "name": "University of the South Pacific - Solomon Islands Campus", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of the South Pacific", + "type": "Parent", + "id": "https://ror.org/008stv805" + } + ], + "addresses": [ + { + "lat": -9.43333, + "lng": 159.95, + "state": null, + "state_code": null, + "city": "Honiara", + "geonames_city": { + "id": 2108502, + "city": "Honiara", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usp.ac.fj/usp-solomon-islands/" + ], + "aliases": [ + "USP Solomon Islands", + "University of the South Pacific Solomon Islands" + ], + "acronyms": [ + "USP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_the_South_Pacific", + "labels": [], + "country": { + "country_name": "Solomon Islands", + "country_code": "SB" + }, + "external_ids": { + "GRID": { + "all": "grid.449748.2", + "preferred": "grid.449748.2" + }, + "ISNI": { + "all": [ + "0000 0004 0393 3869" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7896771" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/002epp671.json b/v1.50/v1/002epp671.json new file mode 100644 index 000000000..3ac4e9b25 --- /dev/null +++ b/v1.50/v1/002epp671.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/002epp671", + "name": "Center for NanoScience", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cens.de" + ], + "aliases": [], + "acronyms": [ + "CeNS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Center_for_NanoScience", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007153" + ], + "preferred": null + }, + "GRID": { + "all": "grid.468140.f", + "preferred": "grid.468140.f" + }, + "Wikidata": { + "all": [ + "Q5059784" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/002pcmz09.json b/v1.50/v1/002pcmz09.json new file mode 100644 index 000000000..98d057d5c --- /dev/null +++ b/v1.50/v1/002pcmz09.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/002pcmz09", + "name": "Universidad Tecnológica de Tehuacán", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 18.42185, + "lng": -97.33785, + "state": null, + "state_code": null, + "city": "Tepetzingo", + "geonames_city": { + "id": 3518121, + "city": "Tepetzingo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uttehuacan.edu.mx" + ], + "aliases": [ + "UTTeh" + ], + "acronyms": [ + "UTT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/002s5nt60.json b/v1.50/v1/002s5nt60.json new file mode 100644 index 000000000..fb9a96d81 --- /dev/null +++ b/v1.50/v1/002s5nt60.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/002s5nt60", + "name": "Alfred Landecker Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.alfredlandecker.org" + ], + "aliases": [ + "Alfred Landecker" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q65952655" + ], + "preferred": "Q65952655" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/002t25c44.json b/v1.50/v1/002t25c44.json new file mode 100644 index 000000000..60af7e2f2 --- /dev/null +++ b/v1.50/v1/002t25c44.json @@ -0,0 +1,264 @@ +{ + "id": "https://ror.org/002t25c44", + "name": "Université Paris 1 Panthéon-Sorbonne", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Anthropologie et Histoire des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Archéologie des Amériques", + "type": "Child", + "id": "https://ror.org/018sx6595" + }, + { + "label": "Archéologies et Sciences de l’Antiquité", + "type": "Child", + "id": "https://ror.org/04wz9m339" + }, + { + "label": "Centre d’histoire sociale des mondes contemporains", + "type": "Child", + "id": "https://ror.org/04zjb4t38" + }, + { + "label": "Centre d'Économie de la Sorbonne", + "type": "Child", + "id": "https://ror.org/006shqv80" + }, + { + "label": "Centre de Recherche de l'Institut de Démographie de l'Université Paris 1", + "type": "Child", + "id": "https://ror.org/02rv1bf67" + }, + { + "label": "Centre Européen de Sociologie et de Science Politique", + "type": "Child", + "id": "https://ror.org/0121yvq70" + }, + { + "label": "Institut d'Histoire Moderne et Contemporaine", + "type": "Child", + "id": "https://ror.org/04795e365" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut d'Histoire et de Philosophie des Sciences et des Techniques", + "type": "Child", + "id": "https://ror.org/02nnpw434" + }, + { + "label": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "type": "Child", + "id": "https://ror.org/03p76m698" + }, + { + "label": "Collège International des Sciences du Territoire", + "type": "Child", + "id": "https://ror.org/002t9r032" + }, + { + "label": "Laboratoire Dynamiques Sociales et Recomposition des Espaces", + "type": "Child", + "id": "https://ror.org/045r56524" + }, + { + "label": "Laboratoire de Géographie Physique", + "type": "Child", + "id": "https://ror.org/054v0s666" + }, + { + "label": "Mondes Américains", + "type": "Child", + "id": "https://ror.org/02y6fxd73" + }, + { + "label": "Orient & Méditerranée", + "type": "Child", + "id": "https://ror.org/051gvfp41" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Sciences, Philosophie, Histoire", + "type": "Child", + "id": "https://ror.org/05c9ks061" + }, + { + "label": "Sorbonne - Identités, Relations Internationales et Civilisations de l’Europe", + "type": "Child", + "id": "https://ror.org/03ae8w006" + }, + { + "label": "Maison des Sciences de l'Homme Mondes", + "type": "Child", + "id": "https://ror.org/00wx1mx58" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire de Médiévistique Occidentale de Paris", + "type": "Child", + "id": "https://ror.org/00z0af360" + }, + { + "label": "Institut des sciences juridique et philosophique de la Sorbonne", + "type": "Child", + "id": "https://ror.org/0041am420" + }, + { + "label": "Philosophie, Histoire et Analyse des Représentations Économiques", + "type": "Child", + "id": "https://ror.org/05rkv2e91" + }, + { + "label": "Institut d'Histoire de la Révolution française", + "type": "Child", + "id": "https://ror.org/01qdz9132" + }, + { + "label": "Unité transversale de recherche en psychogénèse et psychopathologie", + "type": "Child", + "id": "https://ror.org/04dqaqw31" + }, + { + "label": "Institut ACTE - Arts Créations Théories Esthétiques", + "type": "Child", + "id": "https://ror.org/05hne2921" + }, + { + "label": "Trajectoires. De la sédentarisation à l’État", + "type": "Child", + "id": "https://ror.org/03wdx6c48" + }, + { + "label": "UMR Développement et Sociétés", + "type": "Child", + "id": "https://ror.org/00waz9262" + }, + { + "label": "Centre d'histoire du XIXe siècle", + "type": "Child", + "id": "https://ror.org/04hrxxd90" + }, + { + "label": "Bibliothèque interuniversitaire de la Sorbonne", + "type": "Child", + "id": "https://ror.org/023ckd258" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Campus Condorcet", + "type": "Related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Bibliothèque interuniversitaire Cujas", + "type": "Child", + "id": "https://ror.org/011c8cv48" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pantheonsorbonne.fr" + ], + "aliases": [ + "Panthéon-Sorbonne University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Pantheon-Sorbonne_University", + "labels": [ + { + "label": "Paris 1 Panthéon-Sorbonne University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.10988.38", + "preferred": "grid.10988.38" + }, + "ISNI": { + "all": [ + "0000 0001 2173 743X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q999763" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00390t168.json b/v1.50/v1/00390t168.json new file mode 100644 index 000000000..a4ee9251e --- /dev/null +++ b/v1.50/v1/00390t168.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/00390t168", + "name": "College of Charleston", + "email_address": null, + "ip_addresses": [], + "established": 1770, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "South Carolina Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/050we9f15" + } + ], + "addresses": [ + { + "lat": 32.77657, + "lng": -79.93092, + "state": null, + "state_code": null, + "city": "Charleston", + "geonames_city": { + "id": 4574324, + "city": "Charleston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.charleston.edu" + ], + "aliases": [], + "acronyms": [ + "CofC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/College_of_Charleston", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100009789" + ], + "preferred": null + }, + "GRID": { + "all": "grid.254424.1", + "preferred": "grid.254424.1" + }, + "ISNI": { + "all": [ + "0000 0004 1936 7769" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4507421" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/003vg9w96.json b/v1.50/v1/003vg9w96.json new file mode 100644 index 000000000..f4b4f1821 --- /dev/null +++ b/v1.50/v1/003vg9w96.json @@ -0,0 +1,784 @@ +{ + "id": "https://ror.org/003vg9w96", + "name": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "AgroResonance Platform", + "type": "Child", + "id": "https://ror.org/01wzg9f04" + }, + { + "label": "Agroécologie", + "type": "Child", + "id": "https://ror.org/00mkad321" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "Child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Fonctionnelle Insectes et Interactions", + "type": "Child", + "id": "https://ror.org/03d1jma17" + }, + { + "label": "Biologie des Oiseaux et Aviculture", + "type": "Child", + "id": "https://ror.org/02y3mfk39" + }, + { + "label": "Carnot Institute Qualiment", + "type": "Child", + "id": "https://ror.org/032k75171" + }, + { + "label": "Centre Bourgogne-Franche-Comté", + "type": "Child", + "id": "https://ror.org/002jby155" + }, + { + "label": "Centre Bretagne-Normandie", + "type": "Child", + "id": "https://ror.org/01v6wmk25" + }, + { + "label": "Centre Clermont-Auvergne-Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04aqtsh50" + }, + { + "label": "Centre INRAE Grand-Est - Colmar", + "type": "Child", + "id": "https://ror.org/00zg31r41" + }, + { + "label": "Centre Nouvelle Aquitaine-Bordeaux", + "type": "Child", + "id": "https://ror.org/00tebkv94" + }, + { + "label": "Centre Occitanie-Montpellier", + "type": "Child", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre Occitanie-Toulouse", + "type": "Child", + "id": "https://ror.org/02sxjwh33" + }, + { + "label": "Centre Pays de la Loire", + "type": "Child", + "id": "https://ror.org/020jynt45" + }, + { + "label": "Centre Provence-Alpes-Côte d'Azur", + "type": "Child", + "id": "https://ror.org/03qbdej90" + }, + { + "label": "Centre Régional d’Innovation et de Transferts Technologiques des Industries du Bois", + "type": "Child", + "id": "https://ror.org/016crzw98" + }, + { + "label": "Centre Val de Loire", + "type": "Child", + "id": "https://ror.org/03ntmtb29" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Centre de Corse", + "type": "Child", + "id": "https://ror.org/04hrbdg71" + }, + { + "label": "Centre de Recherche en Nutrition Humaine d'Auvergne", + "type": "Child", + "id": "https://ror.org/03rzyjb72" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "Child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre Île-de-France - Jouy-en-Josas - Antony", + "type": "Child", + "id": "https://ror.org/00gtg0p11" + }, + { + "label": "Centre Île-de-France - Versailles-Grignon", + "type": "Child", + "id": "https://ror.org/02cbapb21" + }, + { + "label": "Dynamique des Génomes et Adaptation Microbienne", + "type": "Child", + "id": "https://ror.org/01gbppd30" + }, + { + "label": "Département Alimentation Humaine", + "type": "Child", + "id": "https://ror.org/00pgyqh43" + }, + { + "label": "Département Biologie et Amélioration des Plantes", + "type": "Child", + "id": "https://ror.org/05r63mf91" + }, + { + "label": "Département Environnement et Agronomie", + "type": "Child", + "id": "https://ror.org/01e7wth34" + }, + { + "label": "Département Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/011emb038" + }, + { + "label": "Département Microbiologie et Chaîne Alimentaire", + "type": "Child", + "id": "https://ror.org/03n4vkw74" + }, + { + "label": "Département Physiologie Animale et Systèmes d’Élevage", + "type": "Child", + "id": "https://ror.org/03tpcfk14" + }, + { + "label": "Département Santé Animale", + "type": "Child", + "id": "https://ror.org/024409k12" + }, + { + "label": "Département Santé des Plantes et Environnement", + "type": "Child", + "id": "https://ror.org/0455v8x20" + }, + { + "label": "Département Sciences pour l’Action et le Développement", + "type": "Child", + "id": "https://ror.org/03vxmn596" + }, + { + "label": "Département Sciences sociales, agriculture et alimentation, espace et environnement", + "type": "Child", + "id": "https://ror.org/012221e05" + }, + { + "label": "Département Génétique Animale", + "type": "Child", + "id": "https://ror.org/029xmsm82" + }, + { + "label": "Département Écologie des Forêts, Prairies et Milieux Aquatiques", + "type": "Child", + "id": "https://ror.org/00yv4p972" + }, + { + "label": "Ecologie des Forêts de Guyane", + "type": "Child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Field Observatory in Urban Hydrology", + "type": "Child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fish Physiology and Genomics Institute", + "type": "Child", + "id": "https://ror.org/04xtaw673" + }, + { + "label": "Fractionnation of AgroResources and Environment", + "type": "Child", + "id": "https://ror.org/00136g547" + }, + { + "label": "Genomics and Biotechnology of the Fruits Laboratory", + "type": "Child", + "id": "https://ror.org/01z0xsq42" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Laboratoire d'Economie Appliquée de Grenoble", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Groupe de Recherche en Droit, Économie, Gestion", + "type": "Child", + "id": "https://ror.org/00rfccx09" + }, + { + "label": "Génétique Animale et Biologie Intégrative", + "type": "Child", + "id": "https://ror.org/03rkgeb39" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Unité de Nutrition Humaine", + "type": "Child", + "id": "https://ror.org/003qhrc72" + }, + { + "label": "Infectiologie Animale et Santé Publique", + "type": "Child", + "id": "https://ror.org/0454zjr22" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "Child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Institut Jean-Pierre Bourgin", + "type": "Child", + "id": "https://ror.org/01wqd6v19" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "Child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut de Génétique, Environnement et Protection des Plantes", + "type": "Child", + "id": "https://ror.org/038kxsm48" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institut de Mécanique et d'Ingénierie", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire CarMeN", + "type": "Child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Biologiques et des Procédés", + "type": "Child", + "id": "https://ror.org/01yypjb30" + }, + { + "label": "Laboratoire de Biotechnologie de l'Environnement", + "type": "Child", + "id": "https://ror.org/022m8c549" + }, + { + "label": "Laboratoire de Génétique Cellulaire", + "type": "Child", + "id": "https://ror.org/05k317v03" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "Child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "Child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Ecologie Microbienne Lyon", + "type": "Child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Nutrition, Obésité et Risque Thrombotique", + "type": "Child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "PhysioPathologie des Adaptations Nutritionnelles", + "type": "Child", + "id": "https://ror.org/05vb5nm66" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "Child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Soil Agro and Hydrosystems Spatialization", + "type": "Child", + "id": "https://ror.org/03k4s1p46" + }, + { + "label": "Institut Cellule Souche et Cerveau", + "type": "Child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Stress Abiotiques et Différenciation des Végétaux Cultivés", + "type": "Child", + "id": "https://ror.org/03wzth680" + }, + { + "label": "TRANSFORM", + "type": "Child", + "id": "https://ror.org/00sxj6k90" + }, + { + "label": "UMR BIOdiversity, GEnes & Communities", + "type": "Child", + "id": "https://ror.org/033ebya06" + }, + { + "label": "UMR Territoires", + "type": "Child", + "id": "https://ror.org/026tc4g97" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "Child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité Mixte de Recherche sur les Herbivores", + "type": "Child", + "id": "https://ror.org/03yvemy54" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "Child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "Unité de Recherche Pluridisciplinaire Prairies et Plantes Fourragères", + "type": "Child", + "id": "https://ror.org/04247y265" + }, + { + "label": "Zone Atelier Moselle", + "type": "Child", + "id": "https://ror.org/016vxbe23" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "Child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "Child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Unité Mixte de Recherche sur les Fromages", + "type": "Child", + "id": "https://ror.org/01xbd2h58" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Agri Obtentions (France)", + "type": "Child", + "id": "https://ror.org/04db8q179" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Centre Alpin sur les Réseaux Trophiques et Ecosystèmes Lacustre", + "type": "Child", + "id": "https://ror.org/037vdeb02" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "Child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "Child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "PAnTher - Physiopathologie Animale et bioThérapie du muscle et du système nerveux", + "type": "Child", + "id": "https://ror.org/05vex5m10" + }, + { + "label": "Biomécanique et Pathologie Locomotrice du Cheval", + "type": "Child", + "id": "https://ror.org/001rmv394" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "Child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "Child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "EMMAH - Environnement Méditerranéen et Modélisation des Agro-Hydrosystèmes", + "type": "Child", + "id": "https://ror.org/048bnmc64" + }, + { + "label": "GESTE - Gestion Territoriale de l'Eau et de l'Environnement", + "type": "Child", + "id": "https://ror.org/00pz29t13" + }, + { + "label": "Laboratoire d'Ecophysiologie Végétale, Agronomie & nutritions N.C.S", + "type": "Child", + "id": "https://ror.org/01s4cye48" + }, + { + "label": "Laboratoire Agronomie et Environnement", + "type": "Child", + "id": "https://ror.org/01dg9a450" + }, + { + "label": "Virologie", + "type": "Child", + "id": "https://ror.org/0318tzh81" + }, + { + "label": "ITAP - Technologies et Méthodes pour les Agricultures de demain", + "type": "Child", + "id": "https://ror.org/00ftatp57" + }, + { + "label": "Ecologie Comportementale et Biologie des Populations de Poissons", + "type": "Child", + "id": "https://ror.org/02brsbg31" + }, + { + "label": "Dynamiques et écologie des paysages agriforestiers", + "type": "Child", + "id": "https://ror.org/04wa4se75" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Biologie Epidémiologie et Analyse de Risque en santé animale", + "type": "Child", + "id": "https://ror.org/059h64789" + }, + { + "label": "Structures et Marchés Agricoles, Ressources et Territoires", + "type": "Child", + "id": "https://ror.org/04fa3ke77" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Centre de Recherche Épidémiologie et Statistique", + "type": "Child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "Child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "Épidémiologie des maladies Animales et zoonotiques", + "type": "Child", + "id": "https://ror.org/03e04sg66" + }, + { + "label": "Unité Mixte de Recherche sur l'Ecosystème Prairial", + "type": "Child", + "id": "https://ror.org/02c3c9255" + }, + { + "label": "Biodiversité, Agroécologie et Aménagement du Paysage", + "type": "Child", + "id": "https://ror.org/04byv8g40" + }, + { + "label": "Biologie intégrée pour la valorisation de la diversité des arbres et de la forêt", + "type": "Child", + "id": "https://ror.org/04f6qd925" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Innovations thérapeutiques et résistances", + "type": "Child", + "id": "https://ror.org/01shz5j60" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "Child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "Child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Unité de Recherche Agrosystèmes tropicaux", + "type": "Child", + "id": "https://ror.org/00vxck708" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Etude et Compréhension de la biodiversité", + "type": "Child", + "id": "https://ror.org/042w6m452" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "ABSys", + "type": "Child", + "id": "https://ror.org/00n2c0309" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "Child", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "Laboratoire EcoSystèmes et Sociétés En Montagne", + "type": "Child", + "id": "https://ror.org/01a0ez112" + }, + { + "label": "Groupe de Recherche en Management", + "type": "Child", + "id": "https://ror.org/023cs7p87" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inrae.fr/" + ], + "aliases": [], + "acronyms": [ + "INRAE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Research Institute for Agriculture, Food and Environment", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022077" + ], + "preferred": "501100022077" + }, + "GRID": { + "all": "grid.507621.7", + "preferred": "grid.507621.7" + }, + "Wikidata": { + "all": [ + "Q70571774" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0048jxt15.json b/v1.50/v1/0048jxt15.json new file mode 100644 index 000000000..63455de25 --- /dev/null +++ b/v1.50/v1/0048jxt15.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0048jxt15", + "name": "Veneto Institute of Molecular Medicine", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Fondazione Ricerca Biomedica Avanzata Onlus - VIMM", + "type": "Related", + "id": "https://ror.org/03q5e6q66" + } + ], + "addresses": [ + { + "lat": 45.40797, + "lng": 11.88586, + "state": null, + "state_code": null, + "city": "Padua", + "geonames_city": { + "id": 3171728, + "city": "Padua", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vimm.it" + ], + "aliases": [ + "VIMM - Veneto Institute of Molecular Medicine", + "Venetian Institute of Molecular Medicine" + ], + "acronyms": [ + "VIMM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.428736.c", + "preferred": "grid.428736.c" + }, + "ISNI": { + "all": [ + "0000 0005 0370 449X" + ], + "preferred": "0000 0005 0370 449X" + }, + "Wikidata": { + "all": [ + "Q30287361" + ], + "preferred": "Q30287361" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/004fa0x02.json b/v1.50/v1/004fa0x02.json new file mode 100644 index 000000000..b8f5c919e --- /dev/null +++ b/v1.50/v1/004fa0x02.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/004fa0x02", + "name": "University of Bamberg Press", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "University of Bamberg", + "type": "Parent", + "id": "https://ror.org/01c1w6d29" + } + ], + "addresses": [ + { + "lat": 49.89873, + "lng": 10.90067, + "state": null, + "state_code": null, + "city": "Bamberg", + "geonames_city": { + "id": 2952984, + "city": "Bamberg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni-bamberg.de/ubp/" + ], + "aliases": [ + "Universitätsverlag Bamberg" + ], + "acronyms": [ + "UBP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q74433307" + ], + "preferred": "Q74433307" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/004gem776.json b/v1.50/v1/004gem776.json new file mode 100644 index 000000000..b0fa387df --- /dev/null +++ b/v1.50/v1/004gem776.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/004gem776", + "name": "Ministry of Agriculture", + "email_address": null, + "ip_addresses": [], + "established": 1918, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Estonian Crop Research Institute", + "type": "Child", + "id": "https://ror.org/01cxqde27" + }, + { + "label": "Veterinary and Food Board", + "type": "Child", + "id": "https://ror.org/006npbt15" + } + ], + "addresses": [ + { + "lat": 59.43696, + "lng": 24.75353, + "state": null, + "state_code": null, + "city": "Tallinn", + "geonames_city": { + "id": 588409, + "city": "Tallinn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.agri.ee" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Regionaal - Ja Põllumajandusministeerium", + "iso639": "et" + } + ], + "country": { + "country_name": "Estonia", + "country_code": "EE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004574" + ], + "preferred": null + }, + "GRID": { + "all": "grid.437613.4", + "preferred": "grid.437613.4" + }, + "ISNI": { + "all": [ + "0000 0004 0631 3526" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/004nnf780.json b/v1.50/v1/004nnf780.json new file mode 100644 index 000000000..ca15878d9 --- /dev/null +++ b/v1.50/v1/004nnf780.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/004nnf780", + "name": "Hôpital Louis-Mourier", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.91882, + "lng": 2.25404, + "state": null, + "state_code": null, + "city": "Colombes", + "geonames_city": { + "id": 3024266, + "city": "Colombes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hopital-louis-mourier.aphp.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.414205.6", + "preferred": "grid.414205.6" + }, + "ISNI": { + "all": [ + "0000 0001 0273 556X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3145177" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/005y2ap84.json b/v1.50/v1/005y2ap84.json new file mode 100644 index 000000000..1529117d8 --- /dev/null +++ b/v1.50/v1/005y2ap84.json @@ -0,0 +1,125 @@ +{ + "id": "https://ror.org/005y2ap84", + "name": "Office National d'Études et de Recherches Aérospatiales", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire d'Étude des Microstructures", + "type": "Child", + "id": "https://ror.org/03nqvpf75" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "Child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.onera.fr/en/" + ], + "aliases": [], + "acronyms": [ + "ONERA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ONERA", + "labels": [ + { + "label": "Office National d’Études et de Recherches Aéronautiques", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100013388" + ], + "preferred": "501100013388" + }, + "GRID": { + "all": "grid.4365.4", + "preferred": "grid.4365.4" + }, + "ISNI": { + "all": [ + "0000 0004 0640 9448" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2007769" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0067qp350.json b/v1.50/v1/0067qp350.json new file mode 100644 index 000000000..4eac5ebc5 --- /dev/null +++ b/v1.50/v1/0067qp350.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/0067qp350", + "name": "La Manufacture - Haute école des arts de la scène", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.manufacture.ch" + ], + "aliases": [ + "HES-SO La Manufacture - Haute école des arts de la scène", + "La Manufacture" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/006g31f33.json b/v1.50/v1/006g31f33.json new file mode 100644 index 000000000..36b126b20 --- /dev/null +++ b/v1.50/v1/006g31f33.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/006g31f33", + "name": "Institut für Sonnenphysik", + "email_address": null, + "ip_addresses": [], + "established": 1943, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "Parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "addresses": [ + { + "lat": 47.9959, + "lng": 7.85222, + "state": null, + "state_code": null, + "city": "Freiburg im Breisgau", + "geonames_city": { + "id": 2925177, + "city": "Freiburg im Breisgau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.leibniz-kis.de" + ], + "aliases": [ + "Institut für Sonnenphysik (KIS)", + "Leibniz Institute for Solar Physics", + "Leibniz-Institut für Sonnenphysik" + ], + "acronyms": [ + "KIS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Kiepenheuer_Institute_for_Solar_Physics", + "labels": [ + { + "label": "Institute for Solar Physics", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.438117.8", + "preferred": "grid.438117.8" + }, + "ISNI": { + "all": [ + "0000 0004 0493 3035" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q835416" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0077saz97.json b/v1.50/v1/0077saz97.json new file mode 100644 index 000000000..db6e812b3 --- /dev/null +++ b/v1.50/v1/0077saz97.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/0077saz97", + "name": "Instituto Politécnico da Lusofonia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ipluso.pt" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9338 7397" + ], + "preferred": "0000 0004 9338 7397" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0079gpv38.json b/v1.50/v1/0079gpv38.json new file mode 100644 index 000000000..78f49b617 --- /dev/null +++ b/v1.50/v1/0079gpv38.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/0079gpv38", + "name": "Universidad Autónoma del Estado de México", + "email_address": null, + "ip_addresses": [], + "established": 1828, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.28786, + "lng": -99.65324, + "state": null, + "state_code": null, + "city": "Toluca", + "geonames_city": { + "id": 3515302, + "city": "Toluca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uaemex.mx" + ], + "aliases": [ + "UAEMéx" + ], + "acronyms": [ + "UAEMEX" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Universidad_Aut%C3%B3noma_del_Estado_de_M%C3%A9xico", + "labels": [ + { + "label": "Autonomous University of Mexico State", + "iso639": "en" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004960" + ], + "preferred": null + }, + "GRID": { + "all": "grid.412872.a", + "preferred": "grid.412872.a" + }, + "ISNI": { + "all": [ + "0000 0001 2174 6731" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q18360632" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/007a90f76.json b/v1.50/v1/007a90f76.json new file mode 100644 index 000000000..cda8deaf6 --- /dev/null +++ b/v1.50/v1/007a90f76.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/007a90f76", + "name": "Centre de recherche en psychologie : cognition, psychisme et organisations", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crpcpo.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "CRP-CPO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782971" + ], + "preferred": "Q51782971" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/007gfwn20.json b/v1.50/v1/007gfwn20.json new file mode 100644 index 000000000..6029392e9 --- /dev/null +++ b/v1.50/v1/007gfwn20.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/007gfwn20", + "name": "HES-SO Genève", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.20222, + "lng": 6.14569, + "state": null, + "state_code": null, + "city": "Geneva", + "geonames_city": { + "id": 2660646, + "city": "Geneva", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hesge.ch/geneve/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fachhochschule Westschweiz - Genf", + "iso639": "de" + }, + { + "label": "Haute École Spécialisée de Suisse Occidentale - Genève", + "iso639": "fr" + }, + { + "label": "University of Applied Sciences and Arts Western Switzerland – Geneva", + "iso639": "en" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.483305.9", + "preferred": "grid.483305.9" + }, + "ISNI": { + "all": [ + "0000 0000 8564 7305" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q33121303" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0083mf965.json b/v1.50/v1/0083mf965.json new file mode 100644 index 000000000..4533863fd --- /dev/null +++ b/v1.50/v1/0083mf965.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0083mf965", + "name": "Hudson Institute of Medical Research", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Monash Institute of Medical Research", + "type": "Predecessor", + "id": "https://ror.org/05p96ba03" + } + ], + "addresses": [ + { + "lat": -37.91667, + "lng": 145.11667, + "state": null, + "state_code": null, + "city": "Clayton", + "geonames_city": { + "id": 2171400, + "city": "Clayton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hudson.org.au/" + ], + "aliases": [ + "MIMR-PHI Institute of Medical Research" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hudson_Institute_of_Medical_Research", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.452824.d", + "preferred": "grid.452824.d" + }, + "ISNI": { + "all": [ + "0000 0004 6475 2850" + ], + "preferred": "0000 0004 6475 2850" + }, + "Wikidata": { + "all": [ + "Q28224129" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0084x3h80.json b/v1.50/v1/0084x3h80.json new file mode 100644 index 000000000..ad447929e --- /dev/null +++ b/v1.50/v1/0084x3h80.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/0084x3h80", + "name": "Centre de Recherche Astrophysique de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Université Claude Bernard Lyon 1", + "type": "Parent", + "id": "https://ror.org/029brtt94" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Observatoire de Lyon", + "type": "Parent", + "id": "https://ror.org/03j307b25" + } + ], + "addresses": [ + { + "lat": 45.69542, + "lng": 4.79316, + "state": null, + "state_code": null, + "city": "Saint-Genis-Laval", + "geonames_city": { + "id": 2979985, + "city": "Saint-Genis-Laval", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cral.univ-lyon1.fr" + ], + "aliases": [], + "acronyms": [ + "CRAL", + "UMR CRAL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre for Astronomical Reseach of Lyon", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463848.5", + "preferred": "grid.463848.5" + }, + "ISNI": { + "all": [ + "0000 0001 2155 1811" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/008mb6p65.json b/v1.50/v1/008mb6p65.json new file mode 100644 index 000000000..6cf816212 --- /dev/null +++ b/v1.50/v1/008mb6p65.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/008mb6p65", + "name": "Technology Research Institute of Osaka Prefecture", + "email_address": null, + "ip_addresses": [], + "established": 1929, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Osaka Research Institute of Industrial Science and Technology", + "type": "Successor", + "id": "https://ror.org/03r38cy24" + } + ], + "addresses": [ + { + "lat": 34.48333, + "lng": 135.43333, + "state": null, + "state_code": null, + "city": "Izumi", + "geonames_city": { + "id": 1861107, + "city": "Izumi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://tri-osaka.jp/" + ], + "aliases": [ + "Osaka Prefectural Industrial Technology Research Institute" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [ + { + "label": "大阪府立産業技術総合研究所", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.471622.4", + "preferred": "grid.471622.4" + }, + "ISNI": { + "all": [ + "0000 0001 0198 5794" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/008n78156.json b/v1.50/v1/008n78156.json new file mode 100644 index 000000000..b5c62b098 --- /dev/null +++ b/v1.50/v1/008n78156.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/008n78156", + "name": "Laboratoire de neurosciences fonctionnelles et pathologies", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lnfp.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "LNFP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784106" + ], + "preferred": "Q51784106" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/008stv805.json b/v1.50/v1/008stv805.json new file mode 100644 index 000000000..f4e312d8d --- /dev/null +++ b/v1.50/v1/008stv805.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/008stv805", + "name": "University of the South Pacific", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of the South Pacific - Samoa Campus", + "type": "Child", + "id": "https://ror.org/03be9n013" + }, + { + "label": "University of the South Pacific - Solomon Islands Campus", + "type": "Child", + "id": "https://ror.org/001vq2a15" + } + ], + "addresses": [ + { + "lat": -18.13683, + "lng": 178.42531, + "state": null, + "state_code": null, + "city": "Suva", + "geonames_city": { + "id": 2198148, + "city": "Suva", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usp.ac.fj/" + ], + "aliases": [], + "acronyms": [ + "USP" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_the_South_Pacific", + "labels": [], + "country": { + "country_name": "Fiji", + "country_code": "FJ" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018226" + ], + "preferred": "100018226" + }, + "GRID": { + "all": "grid.33998.38", + "preferred": "grid.33998.38" + }, + "ISNI": { + "all": [ + "0000 0001 2171 4027" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1062121" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00a5dxw64.json b/v1.50/v1/00a5dxw64.json new file mode 100644 index 000000000..e46e0f713 --- /dev/null +++ b/v1.50/v1/00a5dxw64.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/00a5dxw64", + "name": "École Nationale Supérieure d'Architecture de Normandie", + "email_address": null, + "ip_addresses": [], + "established": 1904, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Architecture, Territoire, Environnement", + "type": "Child", + "id": "https://ror.org/04cr3xz70" + }, + { + "label": "Normandie Université", + "type": "Parent", + "id": "https://ror.org/01k40cz91" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 49.44533, + "lng": 1.15144, + "state": null, + "state_code": null, + "city": "Darnétal", + "geonames_city": { + "id": 3021717, + "city": "Darnétal", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ensa-normandie.fr" + ], + "aliases": [ + "ENSA Normandie" + ], + "acronyms": [ + "ENSAN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.466382.d", + "preferred": "grid.466382.d" + }, + "ISNI": { + "all": [ + "0000 0001 2150 9242" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00aamz256.json b/v1.50/v1/00aamz256.json new file mode 100644 index 000000000..bffd5b984 --- /dev/null +++ b/v1.50/v1/00aamz256.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/00aamz256", + "name": "Georgian Technical University", + "email_address": null, + "ip_addresses": [], + "established": 1922, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.69411, + "lng": 44.83368, + "state": null, + "state_code": null, + "city": "Tbilisi", + "geonames_city": { + "id": 611717, + "city": "Tbilisi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://gtu.ge/Eng/" + ], + "aliases": [ + "V.I. Lenin Georgian Polytechnical Institute" + ], + "acronyms": [ + "GTU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Georgian_Technical_University", + "labels": [ + { + "label": "Грузинский технический университет", + "iso639": "ru" + }, + { + "label": "Վրաստանի տեխնիկական համալսարան", + "iso639": "hy" + }, + { + "label": "საქართველოს ტექნიკური უნივერსიტეტი", + "iso639": "ka" + } + ], + "country": { + "country_name": "Georgia", + "country_code": "GE" + }, + "external_ids": { + "GRID": { + "all": "grid.41405.34", + "preferred": "grid.41405.34" + }, + "ISNI": { + "all": [ + "0000 0001 0702 1187" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1425119" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00b03qn53.json b/v1.50/v1/00b03qn53.json new file mode 100644 index 000000000..bac8384b1 --- /dev/null +++ b/v1.50/v1/00b03qn53.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00b03qn53", + "name": "North Northamptonshire Council", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Northamptonshire County Council", + "type": "Predecessor", + "id": "https://ror.org/02p4sx080" + } + ], + "addresses": [ + { + "lat": 52.39836, + "lng": -0.72571, + "state": null, + "state_code": null, + "city": "Kettering", + "geonames_city": { + "id": 2645753, + "city": "Kettering", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.northamptonshire.gov.uk" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q111232446" + ], + "preferred": "Q111232446" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00bea5h57.json b/v1.50/v1/00bea5h57.json new file mode 100644 index 000000000..d080fa424 --- /dev/null +++ b/v1.50/v1/00bea5h57.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00bea5h57", + "name": "Institute Mutualiste Montsouris", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://imm.fr/" + ], + "aliases": [], + "acronyms": [ + "IMM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418120.e", + "preferred": "grid.418120.e" + }, + "ISNI": { + "all": [ + "0000 0001 0626 5681" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00bgnvd66.json b/v1.50/v1/00bgnvd66.json new file mode 100644 index 000000000..e6a9b1fc5 --- /dev/null +++ b/v1.50/v1/00bgnvd66.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00bgnvd66", + "name": "Mécanismes physiopathologiques et conséquences des calcifications cardiovasculaires", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mp3cv.u-picardie.fr" + ], + "aliases": [ + "Mécanismes physiopathologiques et conséquences des calcifications cardiovasculaires" + ], + "acronyms": [ + "MP3CV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784514" + ], + "preferred": "Q51784514" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00bq8vv83.json b/v1.50/v1/00bq8vv83.json new file mode 100644 index 000000000..c72ac0e1a --- /dev/null +++ b/v1.50/v1/00bq8vv83.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/00bq8vv83", + "name": "IMT Mines Albi", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut Clément Ader", + "type": "Child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Centre de Recherche d'Albi en génie des Procédés, des SOlides Divisés, de l'Énergie et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03cxnrt47" + }, + { + "label": "Centre de Génie Industriel", + "type": "Child", + "id": "https://ror.org/012x47023" + }, + { + "label": "ARMINES", + "type": "Parent", + "id": "https://ror.org/00dcrfk74" + }, + { + "label": "Institut Mines-Télécom", + "type": "Parent", + "id": "https://ror.org/025vp2923" + }, + { + "label": "Université de Toulouse", + "type": "Parent", + "id": "https://ror.org/004raaa70" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 43.9298, + "lng": 2.148, + "state": null, + "state_code": null, + "city": "Albi", + "geonames_city": { + "id": 3038261, + "city": "Albi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.imt-mines-albi.fr" + ], + "aliases": [ + "École Nationale Supérieure des Mines d'Albi-Carmaux" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_des_mines_d'Albi-Carmaux", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463793.c", + "preferred": "grid.463793.c" + }, + "Wikidata": { + "all": [ + "Q3577934" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00byxdz40.json b/v1.50/v1/00byxdz40.json new file mode 100644 index 000000000..239f82362 --- /dev/null +++ b/v1.50/v1/00byxdz40.json @@ -0,0 +1,133 @@ +{ + "id": "https://ror.org/00byxdz40", + "name": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire Biosciences et bioingénierie pour la Santé", + "type": "Child", + "id": "https://ror.org/039j4x695" + }, + { + "label": "Département des Systèmes Basses Températures", + "type": "Child", + "id": "https://ror.org/009ps2x93" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Laboratoire Biologie et Biotechnologie pour la Santé", + "type": "Child", + "id": "https://ror.org/0557vhy43" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "Child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "Child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "type": "Child", + "id": "https://ror.org/0535cbn94" + }, + { + "label": "Institut de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://irig.cea.fr" + ], + "aliases": [], + "acronyms": [ + "IRIG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.512394.8", + "preferred": "grid.512394.8" + }, + "ISNI": { + "all": [ + "0000 0004 7665 414X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00ca3ps77.json b/v1.50/v1/00ca3ps77.json new file mode 100644 index 000000000..644b2fa49 --- /dev/null +++ b/v1.50/v1/00ca3ps77.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/00ca3ps77", + "name": "August Storck KG (Germany)", + "email_address": null, + "ip_addresses": [], + "established": null, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.storck.com" + ], + "aliases": [], + "acronyms": [ + "STORCK" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/August_Storck", + "labels": [ + { + "label": "August Storck KG", + "iso639": null + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q566814" + ], + "preferred": "Q566814" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00cbbq754.json b/v1.50/v1/00cbbq754.json new file mode 100644 index 000000000..8bc10ec45 --- /dev/null +++ b/v1.50/v1/00cbbq754.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/00cbbq754", + "name": "Universidad Privada San Francisco de Asís", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -16.5, + "lng": -68.15, + "state": null, + "state_code": null, + "city": "La Paz", + "geonames_city": { + "id": 3911925, + "city": "La Paz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.usfa.edu.bo/" + ], + "aliases": [], + "acronyms": [ + "USFA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Universidad San Francisco de Asís", + "iso639": "es" + } + ], + "country": { + "country_name": "Bolivia", + "country_code": "BO" + }, + "external_ids": { + "GRID": { + "all": "grid.441892.2", + "preferred": "grid.441892.2" + }, + "Wikidata": { + "all": [ + "Q30294024" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00cctyp65.json b/v1.50/v1/00cctyp65.json new file mode 100644 index 000000000..8eafdbc68 --- /dev/null +++ b/v1.50/v1/00cctyp65.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/00cctyp65", + "name": "Laboratoire d'Economie, Finance, Management et Innovation", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lefmi.fr" + ], + "aliases": [], + "acronyms": [ + "LEFMI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00ctmtz16.json b/v1.50/v1/00ctmtz16.json new file mode 100644 index 000000000..6f6a47e6a --- /dev/null +++ b/v1.50/v1/00ctmtz16.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00ctmtz16", + "name": "North Central Climate Adaptation Science Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Colorado Boulder", + "type": "Parent", + "id": "https://ror.org/02ttsq026" + } + ], + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nccasc.colorado.edu" + ], + "aliases": [], + "acronyms": [ + "NCCASC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100030714" + ], + "preferred": "100030714" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00daj4111.json b/v1.50/v1/00daj4111.json new file mode 100644 index 000000000..b0797ae56 --- /dev/null +++ b/v1.50/v1/00daj4111.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/00daj4111", + "name": "Innovation Fund Denmark", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Højteknologifonden", + "type": "Predecessor", + "id": "https://ror.org/041spkd04" + } + ], + "addresses": [ + { + "lat": 55.67594, + "lng": 12.56553, + "state": null, + "state_code": null, + "city": "Copenhagen", + "geonames_city": { + "id": 2618425, + "city": "Copenhagen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://innovationsfonden.dk" + ], + "aliases": [], + "acronyms": [ + "IFD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Innovationsfonden", + "iso639": "da" + } + ], + "country": { + "country_name": "Denmark", + "country_code": "DK" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012774" + ], + "preferred": "100012774" + }, + "GRID": { + "all": "grid.450912.b", + "preferred": "grid.450912.b" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00davry38.json b/v1.50/v1/00davry38.json new file mode 100644 index 000000000..063f4e1dc --- /dev/null +++ b/v1.50/v1/00davry38.json @@ -0,0 +1,134 @@ +{ + "id": "https://ror.org/00davry38", + "name": "National Technological Institute of Mexico", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Instituto Tecnológico de Boca del Río", + "type": "Child", + "id": "https://ror.org/0302jbz39" + }, + { + "label": "Instituto Tecnológico Superior de Los Reyes", + "type": "Child", + "id": "https://ror.org/05p299b07" + }, + { + "label": "Instituto Tecnológico de La Paz", + "type": "Child", + "id": "https://ror.org/0460tzy11" + }, + { + "label": "Instituto Tecnológico de San Luis Potosí", + "type": "Child", + "id": "https://ror.org/04w0a0617" + }, + { + "label": "Instituto Tecnólogico de La Laguna", + "type": "Child", + "id": "https://ror.org/00xbw4a70" + }, + { + "label": "Secretariat of Public Education", + "type": "Parent", + "id": "https://ror.org/02e1c4h55" + }, + { + "label": "Instituto Tecnológico Superior Zacatecas Norte", + "type": "Child", + "id": "https://ror.org/01nq33970" + }, + { + "label": "Instituto Tecnológico Superior de Loreto", + "type": "Child", + "id": "https://ror.org/03dgrff29" + } + ], + "addresses": [ + { + "lat": 19.42847, + "lng": -99.12766, + "state": null, + "state_code": null, + "city": "Mexico City", + "geonames_city": { + "id": 3530597, + "city": "Mexico City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.tecnm.mx/" + ], + "aliases": [], + "acronyms": [ + "TecNM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Tecnológico Nacional de México", + "iso639": "es" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012725" + ], + "preferred": "100012725" + }, + "GRID": { + "all": "grid.484694.3", + "preferred": "grid.484694.3" + }, + "ISNI": { + "all": [ + "0000 0004 5988 7021" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00dpnza76.json b/v1.50/v1/00dpnza76.json new file mode 100644 index 000000000..9331943ac --- /dev/null +++ b/v1.50/v1/00dpnza76.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00dpnza76", + "name": "Finnish Food Authority", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 62.79446, + "lng": 22.82822, + "state": null, + "state_code": null, + "city": "Seinäjoki", + "geonames_city": { + "id": 637219, + "city": "Seinäjoki", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ruokavirasto.fi/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Livsmedelsverket", + "iso639": "sv" + }, + { + "label": "Ruokavirasto", + "iso639": "fi" + } + ], + "country": { + "country_name": "Finland", + "country_code": "FI" + }, + "external_ids": { + "GRID": { + "all": "grid.509946.7", + "preferred": "grid.509946.7" + }, + "ISNI": { + "all": [ + "0000 0004 9290 2959" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q65243927" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00e96v939.json b/v1.50/v1/00e96v939.json new file mode 100644 index 000000000..c45923ef1 --- /dev/null +++ b/v1.50/v1/00e96v939.json @@ -0,0 +1,159 @@ +{ + "id": "https://ror.org/00e96v939", + "name": "Université d'Évry Val-d'Essonne", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Anthropologie et Histoire des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Informatique, Biologie Intégrative et Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/01aqxgr98" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "type": "Child", + "id": "https://ror.org/03p76m698" + }, + { + "label": "Integrated Genetic Approaches in Therapeutic Discovery for Rare Diseases", + "type": "Child", + "id": "https://ror.org/04az3m568" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "Child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire de Mathématiques et Modélisation d'Évry", + "type": "Child", + "id": "https://ror.org/03jca6281" + }, + { + "label": "Laboratoire en Innovation, Technologies, Economie et Management", + "type": "Child", + "id": "https://ror.org/04d5x5x34" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "Child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.63389, + "lng": 2.44417, + "state": null, + "state_code": null, + "city": "Évry-Courcouronnes", + "geonames_city": { + "id": 6454878, + "city": "Évry-Courcouronnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-evry.fr/en/index.html" + ], + "aliases": [], + "acronyms": [ + "UEVE" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_%C3%89vry_Val_d'Essonne", + "labels": [ + { + "label": "University of Évry Val d'Essonne", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.8390.2", + "preferred": "grid.8390.2" + }, + "ISNI": { + "all": [ + "0000 0001 2180 5818" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1531014" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00eaqry86.json b/v1.50/v1/00eaqry86.json new file mode 100644 index 000000000..9ca41993e --- /dev/null +++ b/v1.50/v1/00eaqry86.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00eaqry86", + "name": "Centre for Microscopy and Microanalysis", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Microscopy Australia", + "type": "Related", + "id": "https://ror.org/042mm0k03" + }, + { + "label": "University of Queensland", + "type": "Parent", + "id": "https://ror.org/00rqy9422" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cmm.centre.uq.edu.au" + ], + "aliases": [], + "acronyms": [ + "CMM" + ], + "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.50/v1/00ek2rf42.json b/v1.50/v1/00ek2rf42.json new file mode 100644 index 000000000..2551f20c0 --- /dev/null +++ b/v1.50/v1/00ek2rf42.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/00ek2rf42", + "name": "Australian National Soil Archive", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Commonwealth Scientific and Industrial Research Organisation", + "type": "Parent", + "id": "https://ror.org/03qn8fb07" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.csiro.au/en/research/natural-environment/land/Soil-archive" + ], + "aliases": [], + "acronyms": [ + "ANSA" + ], + "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.50/v1/00erb9339.json b/v1.50/v1/00erb9339.json new file mode 100644 index 000000000..961c8b7a8 --- /dev/null +++ b/v1.50/v1/00erb9339.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/00erb9339", + "name": "Centre d'études des relations et des contacts linguistiques et littéraires", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cercll.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "CERCLL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00f003n59.json b/v1.50/v1/00f003n59.json new file mode 100644 index 000000000..f4c93f6dd --- /dev/null +++ b/v1.50/v1/00f003n59.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00f003n59", + "name": "Wolfram Research (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Wolfram Institute for Computational Foundations of Science", + "type": "Related", + "id": "https://ror.org/05fbn8x75" + } + ], + "addresses": [ + { + "lat": 51.75222, + "lng": -1.25596, + "state": null, + "state_code": null, + "city": "Oxford", + "geonames_city": { + "id": 2640729, + "city": "Oxford", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.wolfram.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Wolfram_Research", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.501244.6", + "preferred": "grid.501244.6" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00g8rx069.json b/v1.50/v1/00g8rx069.json new file mode 100644 index 000000000..f787439fa --- /dev/null +++ b/v1.50/v1/00g8rx069.json @@ -0,0 +1,142 @@ +{ + "id": "https://ror.org/00g8rx069", + "name": "Ministère de la Transition écologique et de la Cohésion des territoires", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Agence Nationale pour la Gestion des Déchets Radioactifs", + "type": "Child", + "id": "https://ror.org/04qkhgw46" + }, + { + "label": "Centre d'Études et d'Expertise sur les Risques, l'Environnement, la Mobilité et l'Aménagement", + "type": "Child", + "id": "https://ror.org/05k0nvr25" + }, + { + "label": "Direction des Services de la Navigation Aérienne", + "type": "Child", + "id": "https://ror.org/01kvhwz50" + }, + { + "label": "Centre Scientifique et Technique du Bâtiment", + "type": "Child", + "id": "https://ror.org/02fsd1928" + }, + { + "label": "Office Français de la Biodiversité", + "type": "Child", + "id": "https://ror.org/04f5ctv63" + }, + { + "label": "Gouvernement de la République française", + "type": "Parent", + "id": "https://ror.org/0172v8z89" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.developpement-durable.gouv.fr/" + ], + "aliases": [ + "Ministry for Ecology, Sustainable Development and Spatial Planning", + "Ministry of Ecological Transition and Territorial Cohesion", + "Ministry of Ecology and Sustainable Development ", + "Ministry of Ecology, Energy, Sustainable Development and Sea", + "Ministry of Ecology, Energy, Sustainable Development and Town and Country Planning", + "Ministry of Ecology, Sustainable Development and Energy", + "Ministère de l'Environnement, de l'Energie et de la Mer" + ], + "acronyms": [ + "MEDAD", + "MEEDDAT", + "MEEDDM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Ecology", + "labels": [ + { + "label": "Ministère de l'Écologie, du Développement durable et de l’Énergie", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003959", + "501100006599", + "501100011568" + ], + "preferred": "501100003959" + }, + "GRID": { + "all": "grid.425728.e", + "preferred": "grid.425728.e" + }, + "ISNI": { + "all": [ + "0000 0001 2291 6026" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2602778" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00gpmb873.json b/v1.50/v1/00gpmb873.json new file mode 100644 index 000000000..0deed7da7 --- /dev/null +++ b/v1.50/v1/00gpmb873.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/00gpmb873", + "name": "Kantonsspital St. Gallen", + "email_address": null, + "ip_addresses": [], + "established": 1873, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Muskelzentrum/ALS Clinic", + "type": "Child", + "id": "https://ror.org/05h29rm85" + } + ], + "addresses": [ + { + "lat": 47.42391, + "lng": 9.37477, + "state": null, + "state_code": null, + "city": "Saint Gallen", + "geonames_city": { + "id": 2658822, + "city": "Saint Gallen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kssg.ch" + ], + "aliases": [ + "Cantonal Hospital St. Gallen", + "Cantonal Hospital of St. Gallen", + "St. Gallen Cantonal Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kantonsspital_St._Gallen", + "labels": [ + { + "label": "Canton of St. Gallen-Hospital", + "iso639": "en" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.413349.8", + "preferred": "grid.413349.8" + }, + "ISNI": { + "all": [ + "0000 0001 2294 4705" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1728153" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00h01ex42.json b/v1.50/v1/00h01ex42.json new file mode 100644 index 000000000..21cd0b53e --- /dev/null +++ b/v1.50/v1/00h01ex42.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/00h01ex42", + "name": "Alaska Center for Energy and Power", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Alaska Fairbanks", + "type": "Parent", + "id": "https://ror.org/01j7nq853" + } + ], + "addresses": [ + { + "lat": 64.83778, + "lng": -147.71639, + "state": null, + "state_code": null, + "city": "Fairbanks", + "geonames_city": { + "id": 5861897, + "city": "Fairbanks", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uaf.edu/acep/" + ], + "aliases": [], + "acronyms": [ + "ACEP", + "UAF ACEP" + ], + "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.50/v1/00h533452.json b/v1.50/v1/00h533452.json new file mode 100644 index 000000000..8f87d077e --- /dev/null +++ b/v1.50/v1/00h533452.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/00h533452", + "name": "Ottawa Heart Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ottawaheart.ca" + ], + "aliases": [ + "University of Ottawa Heart Institute", + "Université d’Ottawa Institut de cardiologie de l'Université d'Ottawa", + "uOttawa Heart Institute" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut de cardiologie de l'Université d'Ottawa", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010619" + ], + "preferred": "100010619" + }, + "ISNI": { + "all": [ + "0000 0001 2322 6879" + ], + "preferred": "0000 0001 2322 6879" + }, + "Wikidata": { + "all": [ + "Q7896045" + ], + "preferred": "Q7896045" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00hgbrg14.json b/v1.50/v1/00hgbrg14.json new file mode 100644 index 000000000..3bb9eb280 --- /dev/null +++ b/v1.50/v1/00hgbrg14.json @@ -0,0 +1,159 @@ +{ + "id": "https://ror.org/00hgbrg14", + "name": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Observatoire de la Côte d’Azur", + "type": "Related", + "id": "https://ror.org/039fj2469" + }, + { + "label": "Conservatoire National des Arts et Métiers", + "type": "Related", + "id": "https://ror.org/0175hh227" + }, + { + "label": "École Polytechnique", + "type": "Related", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Related", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Related", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Office National d'Études et de Recherches Aérospatiales", + "type": "Related", + "id": "https://ror.org/005y2ap84" + }, + { + "label": "École nationale supérieure de techniques avancées Bretagne", + "type": "Related", + "id": "https://ror.org/059n54003" + }, + { + "label": "Institut Polytechnique de Bordeaux", + "type": "Related", + "id": "https://ror.org/054qv7y42" + }, + { + "label": "Aix-Marseille Université", + "type": "Related", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Université de Bordeaux", + "type": "Related", + "id": "https://ror.org/057qpr032" + }, + { + "label": "Université Bourgogne Franche-Comté", + "type": "Related", + "id": "https://ror.org/02dn7x778" + }, + { + "label": "Sorbonne Université", + "type": "Related", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Côte d'Azur", + "type": "Related", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université de Rennes", + "type": "Related", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "ChocoDyn", + "Federation ChocoDyn", + "Fédération de recherche Chocodyn" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French Network on Material Under high Strain Rate. Applications to Material Under Extreme Conditions, Processes and Structures", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123694986" + ], + "preferred": "Q123694986" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00hx6zz33.json b/v1.50/v1/00hx6zz33.json new file mode 100644 index 000000000..099f8caa6 --- /dev/null +++ b/v1.50/v1/00hx6zz33.json @@ -0,0 +1,165 @@ +{ + "id": "https://ror.org/00hx6zz33", + "name": "École Normale Supérieure Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 1892, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre d'Économie de la Sorbonne", + "type": "Child", + "id": "https://ror.org/006shqv80" + }, + { + "label": "Institut des Sciences Sociales du Politique", + "type": "Child", + "id": "https://ror.org/03jdg7625" + }, + { + "label": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "type": "Child", + "id": "https://ror.org/03p76m698" + }, + { + "label": "Laboratoire de Biologie et Pharmacologie Appliquée", + "type": "Child", + "id": "https://ror.org/03njrcx45" + }, + { + "label": "Laboratoire de Photophysique et Photochimie Supramoléculaires et Macromoléculaires", + "type": "Child", + "id": "https://ror.org/03r7eh527" + }, + { + "label": "Laboratoire de Photonique Quantique et Moléculaire", + "type": "Child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "Child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "Centre de Recherche en Design", + "type": "Child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "Child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "Child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "Child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ens-paris-saclay.fr/" + ], + "aliases": [ + "ENS Cachan", + "Normale Sup' Cachan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure_de_Cachan", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.6390.c", + "preferred": "grid.6390.c" + }, + "ISNI": { + "all": [ + "0000 0004 1765 0915" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273604" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00hxwjw54.json b/v1.50/v1/00hxwjw54.json new file mode 100644 index 000000000..654a19219 --- /dev/null +++ b/v1.50/v1/00hxwjw54.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/00hxwjw54", + "name": "Centro Universitário Internacional UNINTER", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Uninter", + "type": "Successor", + "id": "https://ror.org/00p9ghj81" + } + ], + "addresses": [ + { + "lat": -25.42778, + "lng": -49.27306, + "state": null, + "state_code": null, + "city": "Curitiba", + "geonames_city": { + "id": 3464975, + "city": "Curitiba", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uninter.com/centro-universitario-internacional/" + ], + "aliases": [], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Centro_Universit%C3%A1rio_Internacional", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00j32a689.json b/v1.50/v1/00j32a689.json new file mode 100644 index 000000000..7d79c0033 --- /dev/null +++ b/v1.50/v1/00j32a689.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00j32a689", + "name": "Vermont Technical College", + "email_address": null, + "ip_addresses": [], + "established": 1866, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Vermont State University", + "type": "Successor", + "id": "https://ror.org/03m6ee736" + } + ], + "addresses": [ + { + "lat": 43.92507, + "lng": -72.66594, + "state": null, + "state_code": null, + "city": "Randolph", + "geonames_city": { + "id": 5240140, + "city": "Randolph", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.vtc.edu/" + ], + "aliases": [ + "Vermont Tech" + ], + "acronyms": [ + "VTC" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Vermont_Technical_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.422211.6", + "preferred": "grid.422211.6" + }, + "ISNI": { + "all": [ + "0000 0001 0107 7999" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7921788" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00j5kjh37.json b/v1.50/v1/00j5kjh37.json new file mode 100644 index 000000000..de45e1c4a --- /dev/null +++ b/v1.50/v1/00j5kjh37.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00j5kjh37", + "name": "Cor Jesu College", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.74972, + "lng": 125.35722, + "state": null, + "state_code": null, + "city": "Digos", + "geonames_city": { + "id": 1714956, + "city": "Digos", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cjc.edu.ph" + ], + "aliases": [ + "Cor Jesu College Inc." + ], + "acronyms": [ + "CJC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0639 5568" + ], + "preferred": "0000 0004 0639 5568" + }, + "Wikidata": { + "all": [ + "Q5169375" + ], + "preferred": "Q5169375" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00jaxbw05.json b/v1.50/v1/00jaxbw05.json new file mode 100644 index 000000000..bb60a829f --- /dev/null +++ b/v1.50/v1/00jaxbw05.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00jaxbw05", + "name": "Instituto Politécnico da Maia", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.23574, + "lng": -8.6199, + "state": null, + "state_code": null, + "city": "Maia", + "geonames_city": { + "id": 2738014, + "city": "Maia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ipmaia.pt" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Instituto_Polit%C3%A9cnico_da_Maia", + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6416 6210" + ], + "preferred": "0000 0004 6416 6210" + }, + "Wikidata": { + "all": [ + "Q25441029" + ], + "preferred": "Q25441029" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00je8sn69.json b/v1.50/v1/00je8sn69.json new file mode 100644 index 000000000..d7b5a306c --- /dev/null +++ b/v1.50/v1/00je8sn69.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/00je8sn69", + "name": "Rocket Force Sergeant School", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.69667, + "lng": 118.47972, + "state": null, + "state_code": null, + "city": "Qingzhou", + "geonames_city": { + "id": 1786731, + "city": "Qingzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "PLA Rocket Force Sergeant School", + "Rocket Force Sergeant School of PLA" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "中国人民解放军火箭军士官学校", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00jga3n25.json b/v1.50/v1/00jga3n25.json new file mode 100644 index 000000000..a4e41ce0d --- /dev/null +++ b/v1.50/v1/00jga3n25.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/00jga3n25", + "name": "Associação De Conservação Do Ambiente E Desenvolvimento Integrado Rural", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -14.6585, + "lng": 17.69099, + "state": null, + "state_code": null, + "city": "Menongue", + "geonames_city": { + "id": 3347353, + "city": "Menongue", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.acadir.org" + ], + "aliases": [ + "ACADIR Angola", + "Association for the Conservation of the Environment and Integrated Rural Development" + ], + "acronyms": [ + "ACADIR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Angola", + "country_code": "AO" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00jgk9c55.json b/v1.50/v1/00jgk9c55.json new file mode 100644 index 000000000..c3f039f5e --- /dev/null +++ b/v1.50/v1/00jgk9c55.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/00jgk9c55", + "name": "Monash University European Research Foundation ETS", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Monash University", + "type": "Parent", + "id": "https://ror.org/02bfwt286" + } + ], + "addresses": [ + { + "lat": 43.8805, + "lng": 11.09699, + "state": null, + "state_code": null, + "city": "Prato", + "geonames_city": { + "id": 3169921, + "city": "Prato", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.monash.edu/muerf" + ], + "aliases": [ + "Monash University European Research Foundation" + ], + "acronyms": [ + "MUERF" + ], + "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.50/v1/00jjx8s55.json b/v1.50/v1/00jjx8s55.json new file mode 100644 index 000000000..fdd01c3a4 --- /dev/null +++ b/v1.50/v1/00jjx8s55.json @@ -0,0 +1,415 @@ +{ + "id": "https://ror.org/00jjx8s55", + "name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire AstroParticule et Cosmologie", + "type": "Child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "CEA Cadarache", + "type": "Child", + "id": "https://ror.org/01rs1gy10" + }, + { + "label": "CEA DAM Île-de-France", + "type": "Child", + "id": "https://ror.org/00kn4eb29" + }, + { + "label": "CEA Fontenay-aux-Roses", + "type": "Child", + "id": "https://ror.org/010j2gw05" + }, + { + "label": "CEA Grenoble", + "type": "Child", + "id": "https://ror.org/02mg6n827" + }, + { + "label": "Centre Lasers Intenses et Applications", + "type": "Child", + "id": "https://ror.org/02910d597" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "Child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherche sur les Ions, les Matériaux et la Photonique", + "type": "Child", + "id": "https://ror.org/02y0gk295" + }, + { + "label": "Laboratoire Chrono-Environnement", + "type": "Child", + "id": "https://ror.org/028cef883" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "Child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Direction des énergies", + "type": "Child", + "id": "https://ror.org/03cwzta72" + }, + { + "label": "Direction de la Recherche Fondamentale", + "type": "Child", + "id": "https://ror.org/01yvj5k91" + }, + { + "label": "Direction de la Recherche Technologique", + "type": "Child", + "id": "https://ror.org/02ggzyd20" + }, + { + "label": "Frédéric Joliot Institute for Life Sciences", + "type": "Child", + "id": "https://ror.org/016pnwd02" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "Child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Institut National de l'Énergie Solaire", + "type": "Child", + "id": "https://ror.org/00qk0vr83" + }, + { + "label": "Institut de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Institut de Radiobiologie Cellulaire et Moléculaire", + "type": "Child", + "id": "https://ror.org/04ef91678" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "Child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Institut de Chimie Séparative de Marcoule", + "type": "Child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institut de Biologie Intégrative de la Cellule", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Institut de Chimie Organique et Analytique", + "type": "Child", + "id": "https://ror.org/03ywn7d79" + }, + { + "label": "Laboratoire des Solides Irradiés", + "type": "Child", + "id": "https://ror.org/015x8rz21" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "Child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire Léon Brillouin", + "type": "Child", + "id": "https://ror.org/029rmm934" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "Child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire des Composites Thermo Structuraux", + "type": "Child", + "id": "https://ror.org/02n2h9t24" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Nanosciences et Innovation pour les Matériaux, la Biomédecine et l'Énergie", + "type": "Child", + "id": "https://ror.org/04vg26t07" + }, + { + "label": "Centre National de Recherche en Génomique Humaine", + "type": "Child", + "id": "https://ror.org/004yvsb77" + }, + { + "label": "Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux", + "type": "Child", + "id": "https://ror.org/00enct420" + }, + { + "label": "Service de Physique de l'État Condensé", + "type": "Child", + "id": "https://ror.org/0247p4w70" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "Child", + "id": "https://ror.org/00byxdz40" + }, + { + "label": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "type": "Child", + "id": "https://ror.org/005yfhm28" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "Child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Laboratoire Modélisation et Exploration des Matériaux", + "type": "Child", + "id": "https://ror.org/00ndvqf03" + }, + { + "label": "Transporteurs, Imagerie et Radiothérapie en Oncologie - Mécanismes Biologiques des Altérations du Tissu Osseux", + "type": "Child", + "id": "https://ror.org/051c1vb08" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "Child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "Child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire Biologie et Biotechnologie pour la Santé", + "type": "Child", + "id": "https://ror.org/0557vhy43" + }, + { + "label": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "type": "Child", + "id": "https://ror.org/0535cbn94" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cea.fr/" + ], + "aliases": [], + "acronyms": [ + "CEA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/French_Alternative_Energies_and_Atomic_Energy_Commission", + "labels": [ + { + "label": "Atomic Energy and Alternative Energies Commission", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006489" + ], + "preferred": null + }, + "GRID": { + "all": "grid.5583.b", + "preferred": "grid.5583.b" + }, + "ISNI": { + "all": [ + "0000 0001 2299 8025" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q868550" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00jr65m43.json b/v1.50/v1/00jr65m43.json new file mode 100644 index 000000000..d47e152e9 --- /dev/null +++ b/v1.50/v1/00jr65m43.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00jr65m43", + "name": "Institute of Plant Molecular Biology", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + }, + { + "label": "Czech Academy of Sciences, Biology Centre", + "type": "Successor", + "id": "https://ror.org/05pq4yn02" + } + ], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umbr.cas.cz/?ln=en" + ], + "aliases": [ + "Ústav Molekulární Biologie Rostlin AV ČR" + ], + "acronyms": [ + "IPMB", + "ÚMBR" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448362.f", + "preferred": "grid.448362.f" + }, + "ISNI": { + "all": [ + "0000 0001 0135 7552" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00jxe7243.json b/v1.50/v1/00jxe7243.json new file mode 100644 index 000000000..31cf05c67 --- /dev/null +++ b/v1.50/v1/00jxe7243.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/00jxe7243", + "name": "Laboratoire Physiologie Cellulaire & Végétale", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lpcv.fr" + ], + "aliases": [], + "acronyms": [ + "LPCV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratoire de Physiologie Cellulaire Végétale", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462518.c", + "preferred": "grid.462518.c" + }, + "ISNI": { + "all": [ + "0000 0004 0613 5141" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261479" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00kmnzb51.json b/v1.50/v1/00kmnzb51.json new file mode 100644 index 000000000..1974d8624 --- /dev/null +++ b/v1.50/v1/00kmnzb51.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00kmnzb51", + "name": "Research Institute for Indigenous studies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/faculty-arts/institute-indigenous-research-studies" + ], + "aliases": [ + "University of Ottawa Research Institute for Indigenous studies", + "Université d’Ottawa Institut de recherche et d’études autochtones", + "uOttawa Research Institute for Indigenous studies" + ], + "acronyms": [ + "RIIS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut de recherche et d’études autochtones", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00mj5bc69.json b/v1.50/v1/00mj5bc69.json new file mode 100644 index 000000000..2b0734014 --- /dev/null +++ b/v1.50/v1/00mj5bc69.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00mj5bc69", + "name": "Institute for Telecommunication Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1942, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Telecommunications and Information Administration", + "type": "Parent", + "id": "https://ror.org/032241511" + } + ], + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://its.ntia.gov" + ], + "aliases": [ + "Institute for Telecommunications Science" + ], + "acronyms": [ + "ITS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_for_Telecommunication_Sciences", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.505668.8", + "preferred": "grid.505668.8" + }, + "ISNI": { + "all": [ + "0000 0004 1386 2398" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6039695" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00mvj8034.json b/v1.50/v1/00mvj8034.json new file mode 100644 index 000000000..1cb769bf8 --- /dev/null +++ b/v1.50/v1/00mvj8034.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/00mvj8034", + "name": "International Institute of Health Management Research, Delhi", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.23944, + "lng": 68.96778, + "state": null, + "state_code": null, + "city": "Dwārka", + "geonames_city": { + "id": 1272140, + "city": "Dwārka", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iihmrdelhi.edu.in" + ], + "aliases": [ + "IIHMR Delhi", + "International Institute of Health Management Research", + "International Institute of Health Management Research, New Delhi" + ], + "acronyms": [ + "IIHMR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00n7ppt67.json b/v1.50/v1/00n7ppt67.json new file mode 100644 index 000000000..535c7aafe --- /dev/null +++ b/v1.50/v1/00n7ppt67.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/00n7ppt67", + "name": "Sawa University", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.33198, + "lng": 45.2944, + "state": null, + "state_code": null, + "city": "As Samawah", + "geonames_city": { + "id": 98530, + "city": "As Samawah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sawauniversity.edu.iq" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://ar.wikipedia.org/wiki/%D8%AC%D8%A7%D9%85%D8%B9%D8%A9_%D8%B3%D8%A7%D9%88%D8%A9#:~:text=%D8%AC%D8%A7%D9%85%D8%B9%D8%A9%20%D8%B3%D8%A7%D9%88%D8%A9%20%D9%87%D9%8A%20%D8%AC%D8%A7%D9%85%D8%B9%D8%A9%20%D8%A3%D9%87%D9%84%D9%8A%D8%A9,%D8%A3%D8%B3%D8%B3%D8%AA%20%D8%B3%D9%86%D8%A9%202020", + "labels": [ + { + "label": "جامعة ساوة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q125497428" + ], + "preferred": "Q125497428" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00p9ghj81.json b/v1.50/v1/00p9ghj81.json new file mode 100644 index 000000000..05b2cc3c1 --- /dev/null +++ b/v1.50/v1/00p9ghj81.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00p9ghj81", + "name": "Uninter", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": -25.42778, + "lng": -49.27306, + "state": null, + "state_code": null, + "city": "Curitiba", + "geonames_city": { + "id": 3464975, + "city": "Curitiba", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uninter.com" + ], + "aliases": [ + "Centro Universitário Internacional UNINTER" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "GRID": { + "all": "grid.467123.5", + "preferred": "grid.467123.5" + }, + "ISNI": { + "all": [ + "0000 0004 6334 3545" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q18484107" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00pg6eq24.json b/v1.50/v1/00pg6eq24.json new file mode 100644 index 000000000..5183575c0 --- /dev/null +++ b/v1.50/v1/00pg6eq24.json @@ -0,0 +1,487 @@ +{ + "id": "https://ror.org/00pg6eq24", + "name": "Université de Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 1538, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Biomatériaux et Bioingénierie", + "type": "Child", + "id": "https://ror.org/05vcax154" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bureau d'Economie Théorique et Appliquée", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Institut Pluridisciplinaire Hubert Curien", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Charles Sadron", + "type": "Child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "Child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "Child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "Child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institut de Biologie Moléculaire et Cellulaire", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institut des Neurosciences Cellulaires et Intégratives", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institut de Chimie et Procédés pour l'Energie, l'Environnement et la Santé", + "type": "Child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institut de génétique et de biologie moléculaire et cellulaire", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Laboratoire Image, Ville, Environnement", + "type": "Child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire d'Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratoire de Chémo-biologie synthétique et thérapeutique", + "type": "Child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Mitochondrie, stress oxydant et protection musculaire", + "type": "Child", + "id": "https://ror.org/05sc3hd12" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Observatoire astronomique de Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Sociétés, Acteurs, Gouvernement en Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Laboratoire Interuniversitaire des Sciences de l'Education et de la Communication", + "type": "Child", + "id": "https://ror.org/04n2vwk08" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "Child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Institute for Translational Medicine and Liver Disease", + "type": "Child", + "id": "https://ror.org/00jvqbw52" + }, + { + "label": "Chronobiotron", + "type": "Child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "Child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "Child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "Child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "Child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Archives Henri-Poincaré - Philosophie et Recherches sur les Sciences et les Technologies", + "type": "Child", + "id": "https://ror.org/02fdf4056" + }, + { + "label": "Médecine Cardiovasculaire Translationnelle", + "type": "Child", + "id": "https://ror.org/010e21634" + }, + { + "label": "Neuroscience et Psychiatrie Translationnelle de Strasbourg", + "type": "Child", + "id": "https://ror.org/05dd6kb95" + }, + { + "label": "Approches contemporaines de la création et de la réflexion artistiques", + "type": "Child", + "id": "https://ror.org/01x3qz996" + }, + { + "label": "Centre d'analyse des rhétoriques religieuses de l'Antiquité", + "type": "Child", + "id": "https://ror.org/05a26ag16" + }, + { + "label": "Centre d'études internationales et européennes", + "type": "Child", + "id": "https://ror.org/00gm7ct78" + }, + { + "label": "Centre de droit privé fondamental", + "type": "Child", + "id": "https://ror.org/03597ek14" + }, + { + "label": "Diabète et thérapie cellulaire", + "type": "Child", + "id": "https://ror.org/02wj62e51" + }, + { + "label": "Immuno-Rhumathologie moléculaire", + "type": "Child", + "id": "https://ror.org/03k7yrw82" + }, + { + "label": "Laboratoire de Génétique Médicale", + "type": "Child", + "id": "https://ror.org/016wpzq40" + }, + { + "label": "Laboratoire de pharmacologie et de toxicologie neurocardiovasculaire", + "type": "Child", + "id": "https://ror.org/028c6kd10" + }, + { + "label": "Centre de recherches en philosophie allemande et contemporaine", + "type": "Child", + "id": "https://ror.org/02p06sa95" + }, + { + "label": "Configurations littéraires", + "type": "Child", + "id": "https://ror.org/02rnpdm14" + }, + { + "label": "Culture et histoire dans l'espace roman", + "type": "Child", + "id": "https://ror.org/00a19vs18" + }, + { + "label": "Groupe d'études orientales, slaves et néo-helléniques", + "type": "Child", + "id": "https://ror.org/03te95s40" + }, + { + "label": "Humans and management in society", + "type": "Child", + "id": "https://ror.org/04x97hf88" + }, + { + "label": "Laboratoire interdisciplinaire en études culturelles", + "type": "Child", + "id": "https://ror.org/03820wq39" + }, + { + "label": "Laboratoire de psychologie des cognitions", + "type": "Child", + "id": "https://ror.org/02phbwg91" + }, + { + "label": "Laboratoire de recherche du CEIPI", + "type": "Child", + "id": "https://ror.org/009t5dc22" + }, + { + "label": "Laboratoire de recherche en gestion et économie", + "type": "Child", + "id": "https://ror.org/028nd8457" + }, + { + "label": "Linguistique, langues, parole", + "type": "Child", + "id": "https://ror.org/03xrrn515" + }, + { + "label": "Mondes germaniques et nord-européens", + "type": "Child", + "id": "https://ror.org/03c363p94" + }, + { + "label": "Savoirs dans l'espace anglophone : représentations, culture, histoire", + "type": "Child", + "id": "https://ror.org/03n4s8180" + }, + { + "label": "Sport et sciences sociales", + "type": "Child", + "id": "https://ror.org/056d3xj17" + }, + { + "label": "Subjectivité, lien social et modernité", + "type": "Child", + "id": "https://ror.org/04pwapm65" + }, + { + "label": "Théologie catholique et sciences religieuses", + "type": "Child", + "id": "https://ror.org/00w0bpf20" + }, + { + "label": "Théologie protestante", + "type": "Child", + "id": "https://ror.org/03phbpb09" + }, + { + "label": "Arts, civilisation et histoire de l'Europe", + "type": "Child", + "id": "https://ror.org/049513r96" + }, + { + "label": "Pathogens Host Arthropod Vectors Interfaces", + "type": "Child", + "id": "https://ror.org/00m9qza88" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "Related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unistra.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", + "labels": [ + { + "label": "Universitat d'Estrasburg", + "iso639": "ca" + }, + { + "label": "University of Strasbourg", + "iso639": "en" + }, + { + "label": "Universität Straßburg", + "iso639": "de" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003768", + "501100003998" + ], + "preferred": "501100003768" + }, + "GRID": { + "all": "grid.11843.3f", + "preferred": "grid.11843.3f" + }, + "ISNI": { + "all": [ + "0000 0001 2157 9291" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q157575" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00ph8tk69.json b/v1.50/v1/00ph8tk69.json new file mode 100644 index 000000000..9314c7499 --- /dev/null +++ b/v1.50/v1/00ph8tk69.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00ph8tk69", + "name": "Hôpital Cochin", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Groupe Hospitalier Cochin - Port-Royal, Hôtel-Dieu, Broca - La Collégiale", + "type": "Parent", + "id": "https://ror.org/02v5bgz72" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aphp.fr/contenu/hopital-cochin-3" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/H%C3%B4pital_Cochin", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.411784.f", + "preferred": "grid.411784.f" + }, + "ISNI": { + "all": [ + "0000 0001 0274 3893" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1131080" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00ppaw753.json b/v1.50/v1/00ppaw753.json new file mode 100644 index 000000000..2b40c2077 --- /dev/null +++ b/v1.50/v1/00ppaw753.json @@ -0,0 +1,170 @@ +{ + "id": "https://ror.org/00ppaw753", + "name": "World Wide Fund for Nature", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Luc Hoffmann Institute", + "type": "Child", + "id": "https://ror.org/01054tt62" + }, + { + "label": "WWF Senegal", + "type": "Child", + "id": "https://ror.org/0177jvw02" + }, + { + "label": "WWF Italia", + "type": "Child", + "id": "https://ror.org/019z76p34" + }, + { + "label": "WWF Germany", + "type": "Child", + "id": "https://ror.org/05067ar32" + }, + { + "label": "WWF Tanzania", + "type": "Child", + "id": "https://ror.org/001pprn90" + }, + { + "label": "WWF Colombia", + "type": "Child", + "id": "https://ror.org/05jfx6e51" + }, + { + "label": "WWF Cameroon", + "type": "Child", + "id": "https://ror.org/03dj0nw15" + }, + { + "label": "World Wildlife Fund", + "type": "Child", + "id": "https://ror.org/011590k05" + }, + { + "label": "WWF-UK", + "type": "Child", + "id": "https://ror.org/052y0z870" + }, + { + "label": "WWF-Indonesia", + "type": "Child", + "id": "https://ror.org/05dq15a76" + }, + { + "label": "World Wildlife Fund Canada", + "type": "Child", + "id": "https://ror.org/020tdv696" + }, + { + "label": "Stiftelsen Världsnaturfonden WWF", + "type": "Child", + "id": "https://ror.org/043798m03" + }, + { + "label": "WWF Danmark", + "type": "Child", + "id": "https://ror.org/04q30vj37" + }, + { + "label": "WWF Hungary", + "type": "Child", + "id": "https://ror.org/010t4mz11" + } + ], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.wwf.ch" + ], + "aliases": [ + "WWF Schweiz", + "WWF Switzerland", + "World Wide Fund for Nature Switzerland", + "World Wildlife Fund" + ], + "acronyms": [ + "WWF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/World_Wide_Fund_for_Nature", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005201" + ], + "preferred": null + }, + "GRID": { + "all": "grid.468233.8", + "preferred": "grid.468233.8" + }, + "ISNI": { + "all": [ + "0000 0001 1087 4025" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q683733" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00qf78c11.json b/v1.50/v1/00qf78c11.json new file mode 100644 index 000000000..93ddea2c3 --- /dev/null +++ b/v1.50/v1/00qf78c11.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00qf78c11", + "name": "Joint Research Center on Systems and Personalized Pharmacology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://joint-research-center.com" + ], + "aliases": [ + "University of Ottawa Joint Research Center on Systems and Personalized Pharmacology", + "Université d’Ottawa Centre commun de recherche sur les systèmes et la pharmacologie personnalisée", + "uOttawa Joint Research Center on Systems and Personalized Pharmacology" + ], + "acronyms": [ + "JRCSPP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre commun de recherche sur les systèmes et la pharmacologie personnalisée", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00r02pr68.json b/v1.50/v1/00r02pr68.json new file mode 100644 index 000000000..c38f13c3e --- /dev/null +++ b/v1.50/v1/00r02pr68.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00r02pr68", + "name": "Universidad Tecnológica de Puebla", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.03793, + "lng": -98.20346, + "state": null, + "state_code": null, + "city": "Puebla City", + "geonames_city": { + "id": 3521081, + "city": "Puebla City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utpuebla.edu.mx" + ], + "aliases": [ + "Technological University of Puebla" + ], + "acronyms": [ + "UTP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 6851" + ], + "preferred": "0000 0004 1770 6851" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00r1edq15.json b/v1.50/v1/00r1edq15.json new file mode 100644 index 000000000..ab2ebdbd6 --- /dev/null +++ b/v1.50/v1/00r1edq15.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/00r1edq15", + "name": "Universität Greifswald", + "email_address": null, + "ip_addresses": [], + "established": 1456, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut für Klimaschutz, Energie und Mobilität", + "type": "Child", + "id": "https://ror.org/03rvn2t89" + }, + { + "label": "Universitätsmedizin Greifswald", + "type": "Related", + "id": "https://ror.org/025vngs54" + }, + { + "label": "Stiftung Alfried Krupp Kolleg Greifswald", + "type": "Related", + "id": "https://ror.org/036b8pc68" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni-greifswald.de" + ], + "aliases": [ + "University of Greifswald" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Greifswald", + "labels": [ + { + "label": "Ernst-Moritz-Arndt-Universität Greifswald", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100018934" + ], + "preferred": "501100018934" + }, + "GRID": { + "all": "grid.5603.0", + "preferred": "grid.5603.0" + }, + "ISNI": { + "all": [ + "0000 0001 2353 1531" + ], + "preferred": "0000 0001 2353 1531" + }, + "Wikidata": { + "all": [ + "Q165528" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00r5mc782.json b/v1.50/v1/00r5mc782.json new file mode 100644 index 000000000..e2c352716 --- /dev/null +++ b/v1.50/v1/00r5mc782.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00r5mc782", + "name": "Music and Health Research Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/music-health" + ], + "aliases": [ + "University of Ottawa Music and Health Research Institute", + "Université d’Ottawa Institut de recherche en musique et santé", + "uOttawa Music and Health Research Institute" + ], + "acronyms": [ + "MHRI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut de recherche en musique et santé", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00rqy9422.json b/v1.50/v1/00rqy9422.json new file mode 100644 index 000000000..e73f1da6e --- /dev/null +++ b/v1.50/v1/00rqy9422.json @@ -0,0 +1,162 @@ +{ + "id": "https://ror.org/00rqy9422", + "name": "University of Queensland", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ARC Centre of Excellence for Children and Families over the Life Course", + "type": "Child", + "id": "https://ror.org/053mfxd72" + }, + { + "label": "ARC Centre of Excellence for Engineered Quantum Systems", + "type": "Child", + "id": "https://ror.org/03rtykw43" + }, + { + "label": "ARC Centre of Excellence for Environmental Decisions", + "type": "Child", + "id": "https://ror.org/01k8nkc73" + }, + { + "label": "ARC Centre of Excellence for Innovations in Peptide and Protein Science", + "type": "Child", + "id": "https://ror.org/04dxv8v14" + }, + { + "label": "ARC Centre of Excellence for Plant Success in Nature and Agriculture", + "type": "Child", + "id": "https://ror.org/058xdtn86" + }, + { + "label": "Centre for Quantum Computation and Communication Technology", + "type": "Child", + "id": "https://ror.org/00rnbty21" + }, + { + "label": "Ipswich Hospital", + "type": "Related", + "id": "https://ror.org/010g47133" + }, + { + "label": "Ochsner Medical Center", + "type": "Related", + "id": "https://ror.org/0290qyp66" + }, + { + "label": "Princess Alexandra Hospital", + "type": "Related", + "id": "https://ror.org/04mqb0968" + }, + { + "label": "Royal Brisbane and Women's Hospital", + "type": "Related", + "id": "https://ror.org/05p52kj31" + }, + { + "label": "Terrestrial Ecosystem Research Network", + "type": "Related", + "id": "https://ror.org/03wxseg04" + }, + { + "label": "Australian Coral Reef Society", + "type": "Related", + "id": "https://ror.org/01s62z461" + }, + { + "label": "Centre for Microscopy and Microanalysis", + "type": "Child", + "id": "https://ror.org/00eaqry86" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uq.edu.au/" + ], + "aliases": [], + "acronyms": [ + "UQ" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Queensland", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001794", + "501100008407", + "501100005268" + ], + "preferred": "501100001794" + }, + "GRID": { + "all": "grid.1003.2", + "preferred": "grid.1003.2" + }, + "ISNI": { + "all": [ + "0000 0000 9320 7537" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q866012" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00ry58h45.json b/v1.50/v1/00ry58h45.json new file mode 100644 index 000000000..11eb86180 --- /dev/null +++ b/v1.50/v1/00ry58h45.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00ry58h45", + "name": "Laboratoire des technologies innovantes", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-picardie.fr/lti/" + ], + "aliases": [], + "acronyms": [ + "LTI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783319" + ], + "preferred": "Q51783319" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00rzr5v92.json b/v1.50/v1/00rzr5v92.json new file mode 100644 index 000000000..756fc9ac5 --- /dev/null +++ b/v1.50/v1/00rzr5v92.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00rzr5v92", + "name": "Centre for Catalysis Research and Innovation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + }, + { + "label": "Bruyère", + "type": "Related", + "id": "https://ror.org/05bznkw77" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/catalysis-research-innovation" + ], + "aliases": [ + "University of Ottawa Centre for Catalysis Research and Innovation", + "Université d’Ottawa Centre de recherche et d’innovation en catalyse", + "uOttawa Centre for Catalysis Research and Innovation" + ], + "acronyms": [ + "CCRI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de recherche et d’innovation en catalyse", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00s0yct57.json b/v1.50/v1/00s0yct57.json new file mode 100644 index 000000000..519c8d525 --- /dev/null +++ b/v1.50/v1/00s0yct57.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00s0yct57", + "name": "Institute of Plant Biology and Biotechnology", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ministry of Science and Higher Education of the Republic of Kazakhstan", + "type": "Parent", + "id": "https://ror.org/05tyne317" + } + ], + "addresses": [ + { + "lat": 43.25, + "lng": 76.91667, + "state": null, + "state_code": null, + "city": "Almaty", + "geonames_city": { + "id": 1526384, + "city": "Almaty", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ipbb.kz/eng" + ], + "aliases": [], + "acronyms": [ + "IPBB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Институт биологии и биотехнологии растений", + "iso639": "kk" + } + ], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": { + "GRID": { + "all": "grid.501805.9", + "preferred": "grid.501805.9" + }, + "ISNI": { + "all": [ + "0000 0004 0582 7197" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4201426" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00s2fy654.json b/v1.50/v1/00s2fy654.json new file mode 100644 index 000000000..22d2ecafc --- /dev/null +++ b/v1.50/v1/00s2fy654.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00s2fy654", + "name": "West Northamptonshire Council", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Northamptonshire County Council", + "type": "Predecessor", + "id": "https://ror.org/02p4sx080" + } + ], + "addresses": [ + { + "lat": 52.25, + "lng": -0.88333, + "state": null, + "state_code": null, + "city": "Northampton", + "geonames_city": { + "id": 2641430, + "city": "Northampton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.westnorthants.gov.uk" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q111232469" + ], + "preferred": "Q111232469" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00sje9010.json b/v1.50/v1/00sje9010.json new file mode 100644 index 000000000..c3ce783a1 --- /dev/null +++ b/v1.50/v1/00sje9010.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00sje9010", + "name": "Saskatchewan Epidemiology Association", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.13238, + "lng": -106.66892, + "state": null, + "state_code": null, + "city": "Saskatoon", + "geonames_city": { + "id": 6141256, + "city": "Saskatoon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.saskepi.ca" + ], + "aliases": [], + "acronyms": [ + "SEA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.423580.8", + "preferred": "grid.423580.8" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00va9mk15.json b/v1.50/v1/00va9mk15.json new file mode 100644 index 000000000..8c323976f --- /dev/null +++ b/v1.50/v1/00va9mk15.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/00va9mk15", + "name": "Gaia College", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.76904, + "lng": 35.21633, + "state": null, + "state_code": null, + "city": "Jerusalem", + "geonames_city": { + "id": 281184, + "city": "Jerusalem", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gaia.college" + ], + "aliases": [ + "מכללת גאיה" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Israel", + "country_code": "IL" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00vfjqp82.json b/v1.50/v1/00vfjqp82.json new file mode 100644 index 000000000..2e8c59266 --- /dev/null +++ b/v1.50/v1/00vfjqp82.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00vfjqp82", + "name": "Leonardo (France)", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Leonardo (Italy)", + "type": "Parent", + "id": "https://ror.org/0470vke61" + } + ], + "addresses": [ + { + "lat": 45.89362, + "lng": 3.11264, + "state": null, + "state_code": null, + "city": "Riom", + "geonames_city": { + "id": 2983489, + "city": "Riom", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.leonardocompany.com/en/home" + ], + "aliases": [ + "Finmeccanica", + "Leonardo-Finmeccanica" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Leonardo_S.p.A.", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.433664.0", + "preferred": "grid.433664.0" + }, + "Wikidata": { + "all": [ + "Q30256091" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00vmsps81.json b/v1.50/v1/00vmsps81.json new file mode 100644 index 000000000..d98cb515c --- /dev/null +++ b/v1.50/v1/00vmsps81.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/00vmsps81", + "name": "Urganch Innovation University", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.55339, + "lng": 60.62057, + "state": null, + "state_code": null, + "city": "Urgench", + "geonames_city": { + "id": 1512473, + "city": "Urgench", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uriu.uz" + ], + "aliases": [ + "Urganch innovatsion universiteti", + "Urgench Innovation University", + "Ургенчский инновационный университет" + ], + "acronyms": [ + "UrIU" + ], + "status": "active", + "wikipedia_url": "https://uz.wikipedia.org/wiki/Foydalanuvchi%3AUrganch_Innovatsion_Universiteti", + "labels": [], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/00w7bj245.json b/v1.50/v1/00w7bj245.json new file mode 100644 index 000000000..0984cae63 --- /dev/null +++ b/v1.50/v1/00w7bj245.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00w7bj245", + "name": "Cooperativa de Ensino Superior Politécnico e Universitário", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Instituto Politécnico de Saúde do Norte - CESPU", + "type": "Child", + "id": "https://ror.org/05ekbxr47" + } + ], + "addresses": [ + { + "lat": 41.20116, + "lng": -8.43376, + "state": null, + "state_code": null, + "city": "Gandra", + "geonames_city": { + "id": 2739080, + "city": "Gandra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cespu.pt/en/" + ], + "aliases": [], + "acronyms": [ + "CESPU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006742" + ], + "preferred": null + }, + "GRID": { + "all": "grid.421335.2", + "preferred": "grid.421335.2" + }, + "ISNI": { + "all": [ + "0000 0000 7818 3776" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00xc87681.json b/v1.50/v1/00xc87681.json new file mode 100644 index 000000000..918f633dd --- /dev/null +++ b/v1.50/v1/00xc87681.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/00xc87681", + "name": "Shota Rustaveli National Science Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.69411, + "lng": 44.83368, + "state": null, + "state_code": null, + "city": "Tbilisi", + "geonames_city": { + "id": 611717, + "city": "Tbilisi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rustaveli.org.ge" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://ka.wikipedia.org/wiki/%E1%83%A8%E1%83%9D%E1%83%97%E1%83%90_%E1%83%A0%E1%83%A3%E1%83%A1%E1%83%97%E1%83%90%E1%83%95%E1%83%94%E1%83%9A%E1%83%98%E1%83%A1_%E1%83%A1%E1%83%90%E1%83%A5%E1%83%90%E1%83%A0%E1%83%97%E1%83%95%E1%83%94%E1%83%9A%E1%83%9D%E1%83%A1_%E1%83%94%E1%83%A0%E1%83%9D%E1%83%95%E1%83%9C%E1%83%A3%E1%83%9A%E1%83%98_%E1%83%A1%E1%83%90%E1%83%9B%E1%83%94%E1%83%AA%E1%83%9C%E1%83%98%E1%83%94%E1%83%A0%E1%83%9D_%E1%83%A4%E1%83%9D%E1%83%9C%E1%83%93%E1%83%98", + "labels": [], + "country": { + "country_name": "Georgia", + "country_code": "GE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004801", + "501100004802" + ], + "preferred": "501100004801" + }, + "GRID": { + "all": "grid.437712.4", + "preferred": "grid.437712.4" + }, + "ISNI": { + "all": [ + "0000 0004 4907 8888" + ], + "preferred": "0000 0004 4907 8888" + }, + "Wikidata": { + "all": [ + "Q16377946" + ], + "preferred": "Q16377946" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00yxpmx15.json b/v1.50/v1/00yxpmx15.json new file mode 100644 index 000000000..94f86c163 --- /dev/null +++ b/v1.50/v1/00yxpmx15.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00yxpmx15", + "name": "Royal British Columbia Museum", + "email_address": null, + "ip_addresses": [], + "established": 1886, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "NorthEast Pacific Deep-sea Exploration Project", + "type": "Related", + "id": "https://ror.org/01fkg1209" + } + ], + "addresses": [ + { + "lat": 48.4359, + "lng": -123.35155, + "state": null, + "state_code": null, + "city": "Victoria", + "geonames_city": { + "id": 6174041, + "city": "Victoria", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://royalbcmuseum.bc.ca/" + ], + "aliases": [ + "Royal BC Museum" + ], + "acronyms": [ + "RBCM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Royal_British_Columbia_Museum", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.452733.4", + "preferred": "grid.452733.4" + }, + "ISNI": { + "all": [ + "0000 0001 2160 8611" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1542695" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00za3wc71.json b/v1.50/v1/00za3wc71.json new file mode 100644 index 000000000..975b2743e --- /dev/null +++ b/v1.50/v1/00za3wc71.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00za3wc71", + "name": "Klinik und Poliklinik für Hautkrankheiten", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Universitätsmedizin Greifswald", + "type": "Successor", + "id": "https://ror.org/025vngs54" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www2.medizin.uni-greifswald.de/index.php?id=880" + ], + "aliases": [], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.491939.f", + "preferred": "grid.491939.f" + }, + "Wikidata": { + "all": [ + "Q50038670" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00zay3w86.json b/v1.50/v1/00zay3w86.json new file mode 100644 index 000000000..89a143571 --- /dev/null +++ b/v1.50/v1/00zay3w86.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/00zay3w86", + "name": "Centre de Nanosciences et de Nanotechnologies", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.c2n.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "C2N" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre for Nanoscience and Nanotechnology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503099.6", + "preferred": "grid.503099.6" + }, + "Wikidata": { + "all": [ + "Q47520094" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/00zjprf31.json b/v1.50/v1/00zjprf31.json new file mode 100644 index 000000000..3b9d3a85b --- /dev/null +++ b/v1.50/v1/00zjprf31.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00zjprf31", + "name": "Lusíada University of Lisbon", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Fundação Minerva - Cultura - Ensino e Investigação Científica", + "type": "Parent", + "id": "https://ror.org/056g0b798" + } + ], + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lis.ulusiada.pt/en-gb/home.aspx" + ], + "aliases": [ + "Universidade Lusíada de Lisboa" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Lus%C3%ADada_University", + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "GRID": { + "all": "grid.410917.a", + "preferred": "grid.410917.a" + }, + "ISNI": { + "all": [ + "0000 0001 1958 0680" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q635878" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/010t4mz11.json b/v1.50/v1/010t4mz11.json new file mode 100644 index 000000000..34dac3f17 --- /dev/null +++ b/v1.50/v1/010t4mz11.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/010t4mz11", + "name": "WWF Hungary", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "World Wide Fund for Nature", + "type": "Parent", + "id": "https://ror.org/00ppaw753" + } + ], + "addresses": [ + { + "lat": 47.49835, + "lng": 19.04045, + "state": null, + "state_code": null, + "city": "Budapest", + "geonames_city": { + "id": 3054643, + "city": "Budapest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://wwf.hu" + ], + "aliases": [], + "acronyms": [ + "WWF HU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "WWF Magyarország", + "iso639": "hu" + } + ], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/010wkny21.json b/v1.50/v1/010wkny21.json new file mode 100644 index 000000000..bd26345ec --- /dev/null +++ b/v1.50/v1/010wkny21.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/010wkny21", + "name": "Excellence Cluster Origins", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + }, + { + "label": "Munich Institute for Astro- and Particle Physics", + "type": "Child", + "id": "https://ror.org/01996tc28" + } + ], + "addresses": [ + { + "lat": 48.24896, + "lng": 11.65101, + "state": null, + "state_code": null, + "city": "Garching", + "geonames_city": { + "id": 2922582, + "city": "Garching", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.origins-cluster.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Exzellenzcluster Origins", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.510544.1", + "preferred": "grid.510544.1" + }, + "Wikidata": { + "all": [ + "Q90832423" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/010wkqn50.json b/v1.50/v1/010wkqn50.json new file mode 100644 index 000000000..2c7f44592 --- /dev/null +++ b/v1.50/v1/010wkqn50.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/010wkqn50", + "name": "Microsoft Research New England (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Microsoft (United States)", + "type": "Parent", + "id": "https://ror.org/00d0nc645" + } + ], + "addresses": [ + { + "lat": 42.3751, + "lng": -71.10561, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 4931972, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.microsoft.com/en-us/research/lab/microsoft-research-new-england/" + ], + "aliases": [], + "acronyms": [ + "MSR-NE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Microsoft Research New England", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q127415621" + ], + "preferred": "Q127415621" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0117jxy09.json b/v1.50/v1/0117jxy09.json new file mode 100644 index 000000000..ac7a0208a --- /dev/null +++ b/v1.50/v1/0117jxy09.json @@ -0,0 +1,128 @@ +{ + "id": "https://ror.org/0117jxy09", + "name": "Springer Nature (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Springer Nature (Netherlands)", + "type": "Child", + "id": "https://ror.org/01ebjwm20" + }, + { + "label": "Springer Nature (New Zealand)", + "type": "Child", + "id": "https://ror.org/029zamy29" + }, + { + "label": "Springer Nature (Switzerland)", + "type": "Child", + "id": "https://ror.org/03v60jr94" + }, + { + "label": "Springer Nature (United Kingdom)", + "type": "Child", + "id": "https://ror.org/03dsk4d59" + }, + { + "label": "Springer Nature (United States)", + "type": "Child", + "id": "https://ror.org/01xsmwp79" + }, + { + "label": "Springer Nature (China)", + "type": "Child", + "id": "https://ror.org/01pn4sd83" + }, + { + "label": "Springer Nature (India)", + "type": "Child", + "id": "https://ror.org/04kvn3r95" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.springernature.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Springer_Nature", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100020487" + ], + "preferred": "501100020487" + }, + "GRID": { + "all": "grid.459983.a", + "preferred": "grid.459983.a" + }, + "ISNI": { + "all": [ + "0000 0004 1794 7751" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q21096327" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/011c8cv48.json b/v1.50/v1/011c8cv48.json new file mode 100644 index 000000000..8a2903e43 --- /dev/null +++ b/v1.50/v1/011c8cv48.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/011c8cv48", + "name": "Bibliothèque interuniversitaire Cujas", + "email_address": null, + "ip_addresses": [], + "established": 1806, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Université Paris-Panthéon-Assas", + "type": "Parent", + "id": "https://ror.org/04qb2qm38" + }, + { + "label": "Université Paris 1 Panthéon-Sorbonne", + "type": "Parent", + "id": "https://ror.org/002t25c44" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://biu-cujas.univ-paris1.fr" + ], + "aliases": [ + "BIU Cujas", + "Cujas Interuniversity Library", + "Cujas Library" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Biblioth%C3%A8que_Cujas", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9837 1635" + ], + "preferred": "0000 0000 9837 1635" + }, + "Wikidata": { + "all": [ + "Q2901279" + ], + "preferred": "Q2901279" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/011skn125.json b/v1.50/v1/011skn125.json new file mode 100644 index 000000000..8314e999a --- /dev/null +++ b/v1.50/v1/011skn125.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/011skn125", + "name": "Mahatma Gandhi Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 17.38405, + "lng": 78.45636, + "state": null, + "state_code": null, + "city": "Hyderabad", + "geonames_city": { + "id": 1269843, + "city": "Hyderabad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mgit.ac.in" + ], + "aliases": [], + "acronyms": [ + "MGIT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mahatma_Gandhi_Institute_of_Technology", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1808 314X" + ], + "preferred": "0000 0004 1808 314X" + }, + "Wikidata": { + "all": [ + "Q6733497" + ], + "preferred": "Q6733497" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/012h8gy04.json b/v1.50/v1/012h8gy04.json new file mode 100644 index 000000000..ecf9966ee --- /dev/null +++ b/v1.50/v1/012h8gy04.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/012h8gy04", + "name": "Chirurgie et extrêmité céphalique, caractérisation morphologique et fonctionnelle", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://chimere.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "CHIMERE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/012nh4m41.json b/v1.50/v1/012nh4m41.json new file mode 100644 index 000000000..aa4db3601 --- /dev/null +++ b/v1.50/v1/012nh4m41.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/012nh4m41", + "name": "Universidad Tecnologica de la Huasteca Hidalguense", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.11613, + "lng": -98.47705, + "state": null, + "state_code": null, + "city": "Huejutla de Reyes", + "geonames_city": { + "id": 8582048, + "city": "Huejutla de Reyes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uthh.edu.mx" + ], + "aliases": [ + "Technological University of the Huasteca Hidalguense" + ], + "acronyms": [ + "UTHH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 9403" + ], + "preferred": "0000 0004 1770 9403" + }, + "Wikidata": { + "all": [ + "Q69422633" + ], + "preferred": "Q69422633" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/013cjyk83.json b/v1.50/v1/013cjyk83.json new file mode 100644 index 000000000..1074734cf --- /dev/null +++ b/v1.50/v1/013cjyk83.json @@ -0,0 +1,320 @@ +{ + "id": "https://ror.org/013cjyk83", + "name": "Université Paris Sciences et Lettres", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ESPCI Paris", + "type": "Child", + "id": "https://ror.org/03zx86w41" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "Child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Child", + "id": "https://ror.org/046b3cj80" + }, + { + "label": "La Fémis", + "type": "Child", + "id": "https://ror.org/032q0qd45" + }, + { + "label": "Musée Curie", + "type": "Child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "Child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "Child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "Child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "Child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "Child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "Child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Laboratoire d'Immunologie et d'Immunothérapie des Cancers", + "type": "Child", + "id": "https://ror.org/01ds1xe75" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie Biologie Innovation", + "type": "Child", + "id": "https://ror.org/04bgzse17" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "Child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "Child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Neuropsychologie et Imagerie de la Mémoire Humaine", + "type": "Child", + "id": "https://ror.org/04f6tkx67" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "Child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "Child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "École Nationale Supérieure des Mines de Paris", + "type": "Child", + "id": "https://ror.org/04y8cs423" + }, + { + "label": "Observatoire de Paris", + "type": "Child", + "id": "https://ror.org/029nkcm90" + }, + { + "label": "Chimie Moléculaire, Macromoléculaire, Matériaux", + "type": "Related", + "id": "https://ror.org/007sc9r91" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "Child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://psl.eu" + ], + "aliases": [ + "PSL Research University", + "Université PSL", + "Université PSL (Paris Sciences & Lettres)", + "Université de recherche Paris Sciences et Lettres" + ], + "acronyms": [ + "PSL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/PSL_Research_University", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009517" + ], + "preferred": "501100009517" + }, + "GRID": { + "all": "grid.440907.e", + "preferred": "grid.440907.e" + }, + "ISNI": { + "all": [ + "0000 0004 1784 3645" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1163431" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/013dxmv67.json b/v1.50/v1/013dxmv67.json new file mode 100644 index 000000000..976ed5eca --- /dev/null +++ b/v1.50/v1/013dxmv67.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/013dxmv67", + "name": "Universitas Gorontalo", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 0.5375, + "lng": 123.0625, + "state": null, + "state_code": null, + "city": "Gorontalo", + "geonames_city": { + "id": 1643837, + "city": "Gorontalo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unigo.ac.id" + ], + "aliases": [ + "Gorontalo University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q12523327" + ], + "preferred": "Q12523327" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0146pps37.json b/v1.50/v1/0146pps37.json new file mode 100644 index 000000000..9c49eb042 --- /dev/null +++ b/v1.50/v1/0146pps37.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0146pps37", + "name": "Bretonneau Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1901, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 47.39484, + "lng": 0.70398, + "state": null, + "state_code": null, + "city": "Tours", + "geonames_city": { + "id": 2972191, + "city": "Tours", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.aphp.fr/contenu/hopital-bretonneau-1" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.411777.3", + "preferred": "grid.411777.3" + }, + "ISNI": { + "all": [ + "0000 0004 1765 1563" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/014c1mf08.json b/v1.50/v1/014c1mf08.json new file mode 100644 index 000000000..7c2d2028d --- /dev/null +++ b/v1.50/v1/014c1mf08.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/014c1mf08", + "name": "Dalian Naval Academy", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.91222, + "lng": 121.60222, + "state": null, + "state_code": null, + "city": "Dalian", + "geonames_city": { + "id": 1814087, + "city": "Dalian", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Dalian Naval Academy of the PLA", + "PLA Dalian Naval Academy", + "海军大连舰艇学院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "中国人民解放军海军大连舰艇学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1759 9427" + ], + "preferred": "0000 0004 1759 9427" + }, + "Wikidata": { + "all": [ + "Q1018771" + ], + "preferred": "Q1018771" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/014g4a840.json b/v1.50/v1/014g4a840.json new file mode 100644 index 000000000..58807bec7 --- /dev/null +++ b/v1.50/v1/014g4a840.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/014g4a840", + "name": "Falkland Islands Fisheries Department", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -51.69382, + "lng": -57.85701, + "state": null, + "state_code": null, + "city": "Stanley", + "geonames_city": { + "id": 3426691, + "city": "Stanley", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fig.gov.fk/fisheries/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Falkland Islands", + "country_code": "FK" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q106232046" + ], + "preferred": "Q106232046" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/014q1bn90.json b/v1.50/v1/014q1bn90.json new file mode 100644 index 000000000..cc383fdb9 --- /dev/null +++ b/v1.50/v1/014q1bn90.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/014q1bn90", + "name": "Universidade Lusíada de Vila Nova de Famalicão", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Fundação Minerva - Cultura - Ensino e Investigação Científica", + "type": "Parent", + "id": "https://ror.org/056g0b798" + } + ], + "addresses": [ + { + "lat": 41.40797, + "lng": -8.51978, + "state": null, + "state_code": null, + "city": "Vila Nova de Famalicão", + "geonames_city": { + "id": 2732547, + "city": "Vila Nova de Famalicão", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fam.ulusiada.pt" + ], + "aliases": [ + "Lusíada University of Vila Nova de Famalicão" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/015m7wh34.json b/v1.50/v1/015m7wh34.json new file mode 100644 index 000000000..270f8b214 --- /dev/null +++ b/v1.50/v1/015m7wh34.json @@ -0,0 +1,301 @@ +{ + "id": "https://ror.org/015m7wh34", + "name": "Université de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "CIC Rennes", + "type": "Child", + "id": "https://ror.org/02baj6743" + }, + { + "label": "Centre de Recherche en Économie et Management", + "type": "Child", + "id": "https://ror.org/0047rmf80" + }, + { + "label": "Ecosystèmes, Biodiversité, Evolution", + "type": "Child", + "id": "https://ror.org/005fjj927" + }, + { + "label": "Fish Physiology and Genomics Institute", + "type": "Child", + "id": "https://ror.org/04xtaw673" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "Child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Institut de Physique de Rennes", + "type": "Child", + "id": "https://ror.org/022b0h879" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "Child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut de Recherche en Santé, Environnement et Travail", + "type": "Child", + "id": "https://ror.org/01p178v10" + }, + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "Child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Institut de Génétique, Environnement et Protection des Plantes", + "type": "Child", + "id": "https://ror.org/038kxsm48" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "Child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Institut de génétique et de développement de Rennes", + "type": "Child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "Child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "Child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "Child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Institut de l'Ouest : Droit et Europe", + "type": "Child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Sciences Po Rennes", + "type": "Child", + "id": "https://ror.org/01fmctt82" + }, + { + "label": "Arènes: politique, santé publique, environnement, médias", + "type": "Child", + "id": "https://ror.org/00m4rxj18" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "Child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Oncogenesis Stress Signaling", + "type": "Child", + "id": "https://ror.org/00bf6bf92" + }, + { + "label": "Laboratoire Mouvement Sport Santé", + "type": "Child", + "id": "https://ror.org/05b3p7p58" + }, + { + "label": "Ethologie animale et humaine", + "type": "Child", + "id": "https://ror.org/02evk6c51" + }, + { + "label": "Bacterial RNAs & Medicine", + "type": "Child", + "id": "https://ror.org/031y0x195" + }, + { + "label": "Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer", + "type": "Child", + "id": "https://ror.org/05p7fmf80" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "Child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Laboratoire de génie civil et génie mécanique", + "type": "Child", + "id": "https://ror.org/03x0g1010" + }, + { + "label": "Centre Atlantique de Philosophie", + "type": "Child", + "id": "https://ror.org/059ynac98" + }, + { + "label": "Centre de droit des affaires", + "type": "Child", + "id": "https://ror.org/0274dq154" + }, + { + "label": "Institut du droit public et de la science politique", + "type": "Child", + "id": "https://ror.org/05nn1k450" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "Child", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "ScanMAT", + "type": "Child", + "id": "https://ror.org/04fsxy317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "École Nationale Supérieure de Chimie de Rennes", + "type": "Child", + "id": "https://ror.org/01h0ffh48" + }, + { + "label": "École Normale Supérieure de Rennes", + "type": "Child", + "id": "https://ror.org/03rxtdc22" + }, + { + "label": "Centre Hospitalier Universitaire de Rennes", + "type": "Related", + "id": "https://ror.org/05qec5a53" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-rennes.fr" + ], + "aliases": [ + "University of Rennes 1", + "Université de Rennes 1" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Rennes", + "labels": [ + { + "label": "University of Rennes", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007525" + ], + "preferred": null + }, + "GRID": { + "all": "grid.410368.8", + "preferred": "grid.410368.8" + }, + "ISNI": { + "all": [ + "0000 0001 2191 9284" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q726595" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/016bk3j80.json b/v1.50/v1/016bk3j80.json new file mode 100644 index 000000000..a5687bd00 --- /dev/null +++ b/v1.50/v1/016bk3j80.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/016bk3j80", + "name": "Brooklyn Children’s Museum", + "email_address": null, + "ip_addresses": [], + "established": 1899, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.brooklynkids.org/" + ], + "aliases": [], + "acronyms": [ + "BCM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Brooklyn_Children%27s_Museum", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.423207.0", + "preferred": "grid.423207.0" + }, + "ISNI": { + "all": [ + "0000 0001 2221 3072" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4974780" + ], + "preferred": "Q4974780" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/016cv4348.json b/v1.50/v1/016cv4348.json new file mode 100644 index 000000000..4dea73611 --- /dev/null +++ b/v1.50/v1/016cv4348.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/016cv4348", + "name": "Glycomine, Inc. (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.50716, + "lng": -122.26052, + "state": null, + "state_code": null, + "city": "San Carlos", + "geonames_city": { + "id": 5391760, + "city": "San Carlos", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.glycomine.com" + ], + "aliases": [ + "Glycomine" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Glycomine, Inc.", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/016jxby71.json b/v1.50/v1/016jxby71.json new file mode 100644 index 000000000..4fbc2affc --- /dev/null +++ b/v1.50/v1/016jxby71.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/016jxby71", + "name": "Escola Superior de Educação de Fafe", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.55032, + "lng": -8.42005, + "state": null, + "state_code": null, + "city": "Braga", + "geonames_city": { + "id": 2742032, + "city": "Braga", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iees.pt/escola-superior-de-educacao-de-fafe/" + ], + "aliases": [], + "acronyms": [ + "IEES ESEF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4651 5480" + ], + "preferred": "0000 0004 4651 5480" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/016vx5156.json b/v1.50/v1/016vx5156.json new file mode 100644 index 000000000..e10a28ec8 --- /dev/null +++ b/v1.50/v1/016vx5156.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/016vx5156", + "name": "Hôpital Européen Georges-Pompidou", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpitaux Universitaires Paris-Ouest", + "type": "Parent", + "id": "https://ror.org/01v676463" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hopital-georgespompidou.aphp.fr/" + ], + "aliases": [ + "Georges Pompidou European Hospital" + ], + "acronyms": [ + "HEGP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/H%C3%B4pital_Europ%C3%A9en_Georges-Pompidou", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.414093.b", + "preferred": "grid.414093.b" + }, + "ISNI": { + "all": [ + "0000 0001 2183 5849" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3145336" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0175hh227.json b/v1.50/v1/0175hh227.json new file mode 100644 index 000000000..5b54ca832 --- /dev/null +++ b/v1.50/v1/0175hh227.json @@ -0,0 +1,170 @@ +{ + "id": "https://ror.org/0175hh227", + "name": "Conservatoire National des Arts et Métiers", + "email_address": null, + "ip_addresses": [], + "established": 1794, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire Ingénierie des Fluides Systèmes Énergétiques", + "type": "Child", + "id": "https://ror.org/00awn3k11" + }, + { + "label": "Laboratoire Interdisciplinaire pour la Sociologie Economique", + "type": "Child", + "id": "https://ror.org/01b8mj511" + }, + { + "label": "Laboratoire de Dynamique des Fluides", + "type": "Child", + "id": "https://ror.org/059jx7q58" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Equipe de Recherche en Epidémiologie Nutritionnelle", + "type": "Child", + "id": "https://ror.org/04hzkx672" + }, + { + "label": "Laboratoire Procédés et Ingénierie en Mécanique et Matériaux", + "type": "Child", + "id": "https://ror.org/017jp7t31" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "Child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Métabiot", + "type": "Child", + "id": "https://ror.org/00wyh7698" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "HESAM Université", + "type": "Parent", + "id": "https://ror.org/042949r55" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "Related", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "ENCPB - Lycée Pierre-Gilles-de-Gennes", + "type": "Related", + "id": "https://ror.org/01180st77" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnam.fr/" + ], + "aliases": [], + "acronyms": [ + "CNAM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Conservatoire_national_des_arts_et_m%C3%A9tiers", + "labels": [ + { + "label": "National Conservatory of Arts and Crafts", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100013943" + ], + "preferred": "501100013943" + }, + "GRID": { + "all": "grid.36823.3c", + "preferred": "grid.36823.3c" + }, + "ISNI": { + "all": [ + "0000 0001 2185 090X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q524289" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/017mqhz69.json b/v1.50/v1/017mqhz69.json new file mode 100644 index 000000000..4dc67eaed --- /dev/null +++ b/v1.50/v1/017mqhz69.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/017mqhz69", + "name": "Tobruk University", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.08963, + "lng": 23.95385, + "state": null, + "state_code": null, + "city": "Tobruk", + "geonames_city": { + "id": 81302, + "city": "Tobruk", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tu.edu.ly" + ], + "aliases": [ + "University of Tobruk" + ], + "acronyms": [ + "TU" + ], + "status": "active", + "wikipedia_url": "https://ar.wikipedia.org/wiki/%D8%AC%D8%A7%D9%85%D8%B9%D8%A9_%D8%B7%D8%A8%D8%B1%D9%82", + "labels": [ + { + "label": "جامعة طبرق", + "iso639": "ar" + } + ], + "country": { + "country_name": "Libya", + "country_code": "LY" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q102347729" + ], + "preferred": "Q102347729" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/017rnyz40.json b/v1.50/v1/017rnyz40.json new file mode 100644 index 000000000..cec885c2b --- /dev/null +++ b/v1.50/v1/017rnyz40.json @@ -0,0 +1,274 @@ +{ + "id": "https://ror.org/017rnyz40", + "name": "Ministère de la Culture", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Aménagement, Développement, Environnement, Santé et Sociétés", + "type": "Child", + "id": "https://ror.org/027953924" + }, + { + "label": "Architecture Urbanisme Société : Savoirs, Enseignement, Recherche", + "type": "Child", + "id": "https://ror.org/0157t2j08" + }, + { + "label": "Archéologie des Amériques", + "type": "Child", + "id": "https://ror.org/018sx6595" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Archéologies et Sciences de l’Antiquité", + "type": "Child", + "id": "https://ror.org/04wz9m339" + }, + { + "label": "Centre André-Chastel", + "type": "Child", + "id": "https://ror.org/03jqm0b89" + }, + { + "label": "Centre Camille Jullian", + "type": "Child", + "id": "https://ror.org/050sat078" + }, + { + "label": "Centre d'Etudes Supérieures de la Renaissance", + "type": "Child", + "id": "https://ror.org/03cv31q28" + }, + { + "label": "Laboratoire Chrono-Environnement", + "type": "Child", + "id": "https://ror.org/028cef883" + }, + { + "label": "Cultures et Environnements. Préhistoire, Antiquité, Moyen Âge", + "type": "Child", + "id": "https://ror.org/04n9van71" + }, + { + "label": "De la Préhistoire à l'Actuel : Culture, Environnement et Anthropologie", + "type": "Child", + "id": "https://ror.org/027mnq498" + }, + { + "label": "Institut Interdisciplinaire d’Anthropologie du Contemporain", + "type": "Child", + "id": "https://ror.org/00a5z9122" + }, + { + "label": "Institut National de Recherches Archéologiques Préventives", + "type": "Child", + "id": "https://ror.org/04andmq85" + }, + { + "label": "Institut de Recherche de Chimie Paris", + "type": "Child", + "id": "https://ror.org/02s6m8n84" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "Child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Institut supérieur des arts de Toulouse", + "type": "Child", + "id": "https://ror.org/00yzbmy59" + }, + { + "label": "Laboratoire Méditerranéen de Préhistoire Europe Afrique", + "type": "Child", + "id": "https://ror.org/011gea244" + }, + { + "label": "Laboratoire Architecture Ville Urbanisme Environnement", + "type": "Child", + "id": "https://ror.org/01dqmj897" + }, + { + "label": "Travaux et Recherches Archéologiques sur les Cultures, les Espaces et les Sociétés", + "type": "Child", + "id": "https://ror.org/04pfm5x27" + }, + { + "label": "École Européenne Supérieure de l'Image", + "type": "Child", + "id": "https://ror.org/01dn7gg32" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "Child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "Child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Laboratoire architecture anthropologie", + "type": "Child", + "id": "https://ror.org/05wy2cj05" + }, + { + "label": "Architecture, Milieu, Paysage", + "type": "Child", + "id": "https://ror.org/048289s82" + }, + { + "label": "Archéologie des Sociétés Méditerranéennes", + "type": "Child", + "id": "https://ror.org/04n9eyw42" + }, + { + "label": "Centre de Recherche sur la Conservation", + "type": "Child", + "id": "https://ror.org/05q3pap39" + }, + { + "label": "Architecture Histoire Technique Territoire Patrimoine", + "type": "Child", + "id": "https://ror.org/05j8sgr10" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "Child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "Child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "Child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Archéologie, Terre, Histoire, Sociétés", + "type": "Child", + "id": "https://ror.org/011hdpx94" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Child", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Architecture, Environnement & Cultures Constructives", + "type": "Child", + "id": "https://ror.org/02wrd4e19" + }, + { + "label": "Gouvernement de la République française", + "type": "Parent", + "id": "https://ror.org/0172v8z89" + }, + { + "label": "Modèles et simulations pour l'Architecture et le Patrimoine", + "type": "Child", + "id": "https://ror.org/050a1gn71" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.culturecommunication.gouv.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Culture_(France)", + "labels": [ + { + "label": "Ministry of Culture", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007169", + "501100011044" + ], + "preferred": "501100011044" + }, + "GRID": { + "all": "grid.493936.2", + "preferred": "grid.493936.2" + }, + "ISNI": { + "all": [ + "0000 0001 2285 497X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q384602" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/018pp1107.json b/v1.50/v1/018pp1107.json new file mode 100644 index 000000000..9ba998797 --- /dev/null +++ b/v1.50/v1/018pp1107.json @@ -0,0 +1,188 @@ +{ + "id": "https://ror.org/018pp1107", + "name": "École nationale supérieure d'arts et métiers", + "email_address": null, + "ip_addresses": [], + "established": 1780, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut de Biomécanique Humaine Georges Charpak", + "type": "Child", + "id": "https://ror.org/053gdvc84" + }, + { + "label": "Institut de Mécanique et d'Ingénierie", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Angevin de Mécanique, Procédés et InnovAtion", + "type": "Child", + "id": "https://ror.org/01ks4c961" + }, + { + "label": "Laboratoire Bourguignon des Matériaux et Procédés", + "type": "Child", + "id": "https://ror.org/00hbc1k35" + }, + { + "label": "Laboratoire Conception de Produits et Innovation", + "type": "Child", + "id": "https://ror.org/04hztmn48" + }, + { + "label": "Laboratoire Ingénierie des Fluides Systèmes Énergétiques", + "type": "Child", + "id": "https://ror.org/00awn3k11" + }, + { + "label": "Laboratoire d'Électrotechnique et d'Électronique de Puissance de Lille", + "type": "Child", + "id": "https://ror.org/0186z1m53" + }, + { + "label": "Laboratoire de Conception Fabrication Commande", + "type": "Child", + "id": "https://ror.org/01xd0ys45" + }, + { + "label": "Laboratoire de Dynamique des Fluides", + "type": "Child", + "id": "https://ror.org/059jx7q58" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "Child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Laboratoire de Mécanique et Procédés de Fabrication", + "type": "Child", + "id": "https://ror.org/04yzbzc51" + }, + { + "label": "Laboratoire d’Ingénierie des Systèmes Physiques et Numériques", + "type": "Child", + "id": "https://ror.org/055449294" + }, + { + "label": "Laboratoire d'Étude des Microstructures et de Mécanique des Matériaux", + "type": "Child", + "id": "https://ror.org/01nyrrx14" + }, + { + "label": "Institut de Recherche de l’École Navale", + "type": "Child", + "id": "https://ror.org/01v6shv96" + }, + { + "label": "Laboratoire Procédés et Ingénierie en Mécanique et Matériaux", + "type": "Child", + "id": "https://ror.org/017jp7t31" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "HESAM Université", + "type": "Parent", + "id": "https://ror.org/042949r55" + }, + { + "label": "ParisTech", + "type": "Parent", + "id": "https://ror.org/05c2qg481" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://artsetmetiers.fr/" + ], + "aliases": [ + "Arts et Metiers", + "Arts et Metiers Institute of Technology" + ], + "acronyms": [ + "ENSAM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Arts_et_M%C3%A9tiers_ParisTech", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.434207.6", + "preferred": "grid.434207.6" + }, + "ISNI": { + "all": [ + "0000 0001 2194 6047" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2570220", + "Q18181287" + ], + "preferred": "Q2570220" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/018tp9r65.json b/v1.50/v1/018tp9r65.json new file mode 100644 index 000000000..3c1030f77 --- /dev/null +++ b/v1.50/v1/018tp9r65.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/018tp9r65", + "name": "Deutsche Stiftung für Engagement und Ehrenamt", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.3613, + "lng": 13.07292, + "state": null, + "state_code": null, + "city": "Neustrelitz", + "geonames_city": { + "id": 2864005, + "city": "Neustrelitz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.deutsche-stiftung-engagement-und-ehrenamt.de" + ], + "aliases": [], + "acronyms": [ + "DSEE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q85338368" + ], + "preferred": "Q85338368" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01920cw75.json b/v1.50/v1/01920cw75.json new file mode 100644 index 000000000..ef1690132 --- /dev/null +++ b/v1.50/v1/01920cw75.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/01920cw75", + "name": "Galaxies, Etoiles, Physique et Instrumentation", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Observatoire de Paris", + "type": "Parent", + "id": "https://ror.org/029nkcm90" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + } + ], + "addresses": [ + { + "lat": 48.81381, + "lng": 2.235, + "state": null, + "state_code": null, + "city": "Meudon", + "geonames_city": { + "id": 2994144, + "city": "Meudon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://gepi.obspm.fr" + ], + "aliases": [ + "Laboratoire GEPI" + ], + "acronyms": [ + "GEPI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463868.7", + "preferred": "grid.463868.7" + }, + "ISNI": { + "all": [ + "0000 0004 0370 8530" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262250" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01996tc28.json b/v1.50/v1/01996tc28.json new file mode 100644 index 000000000..444fd43da --- /dev/null +++ b/v1.50/v1/01996tc28.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01996tc28", + "name": "Munich Institute for Astro- and Particle Physics", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Excellence Cluster Origins", + "type": "Parent", + "id": "https://ror.org/010wkny21" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.munich-iapbp.de" + ], + "aliases": [ + "MIAPbP - Munich Institute for Astro- Particle and BioPhysics" + ], + "acronyms": [ + "MIAPbP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100012162" + ], + "preferred": "501100012162" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/019tcpt25.json b/v1.50/v1/019tcpt25.json new file mode 100644 index 000000000..cea28ef05 --- /dev/null +++ b/v1.50/v1/019tcpt25.json @@ -0,0 +1,179 @@ +{ + "id": "https://ror.org/019tcpt25", + "name": "CentraleSupélec", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire d'Énergétique Moléculaire et Macroscopique, Combustion", + "type": "Child", + "id": "https://ror.org/02wy3s959" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire de Photonique Quantique et Moléculaire", + "type": "Child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Matériaux Optiques, Photonique et Systèmes", + "type": "Child", + "id": "https://ror.org/055swm364" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "Child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "Child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Fondation CentraleSupélec", + "type": "Child", + "id": "https://ror.org/03vsc0s28" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Supélec", + "type": "Predecessor", + "id": "https://ror.org/00n7gwn90" + }, + { + "label": "École Centrale Paris", + "type": "Predecessor", + "id": "https://ror.org/00v0y5771" + }, + { + "label": "Mahindra University", + "type": "Related", + "id": "https://ror.org/05751b994" + }, + { + "label": "Laboratoire Génie Industriel", + "type": "Child", + "id": "https://ror.org/0455wwj08" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.centralesupelec.fr" + ], + "aliases": [], + "acronyms": [ + "CS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CentraleSup%C3%A9lec", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.494567.d", + "preferred": "grid.494567.d" + }, + "ISNI": { + "all": [ + "0000 0004 4907 1766" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q19203245" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/019tgvf94.json b/v1.50/v1/019tgvf94.json new file mode 100644 index 000000000..172a999c0 --- /dev/null +++ b/v1.50/v1/019tgvf94.json @@ -0,0 +1,365 @@ +{ + "id": "https://ror.org/019tgvf94", + "name": "Université Côte d'Azur", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Astrophysique Relativiste, Théories, Expériences, Métrologie, Instrumentation, Signaux", + "type": "Child", + "id": "https://ror.org/031ah7413" + }, + { + "label": "Bases, Corpus, Langage", + "type": "Child", + "id": "https://ror.org/03mmb0d82" + }, + { + "label": "Centre Hospitalier Universitaire de Nice", + "type": "Child", + "id": "https://ror.org/05qsjq305" + }, + { + "label": "Centre Méditerranéen de Médecine Moléculaire", + "type": "Child", + "id": "https://ror.org/029rfe283" + }, + { + "label": "Centre de la Méditerranée Moderne et Contemporaine", + "type": "Child", + "id": "https://ror.org/031vfy029" + }, + { + "label": "Cognition Behaviour Technology", + "type": "Child", + "id": "https://ror.org/04d9wv909" + }, + { + "label": "Cultures et Environnements. Préhistoire, Antiquité, Moyen Âge", + "type": "Child", + "id": "https://ror.org/04n9van71" + }, + { + "label": "Géoazur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Groupe de Recherche en Droit, Économie, Gestion", + "type": "Child", + "id": "https://ror.org/00rfccx09" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "Child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Chimie de Nice", + "type": "Child", + "id": "https://ror.org/000pvc513" + }, + { + "label": "Institut de Pharmacologie Moléculaire et Cellulaire", + "type": "Child", + "id": "https://ror.org/05k4ema52" + }, + { + "label": "Institut de Physique de Nice", + "type": "Child", + "id": "https://ror.org/042cesy50" + }, + { + "label": "Institut de Biologie Valrose", + "type": "Child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institut de Recherche sur le Cancer et le Vieillissement de Nice", + "type": "Child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "Laboratoire Jean-Alexandre Dieudonné", + "type": "Child", + "id": "https://ror.org/0274zdr66" + }, + { + "label": "Laboratoire Motricité Humaine Éducation Sport Santé", + "type": "Child", + "id": "https://ror.org/03fd87035" + }, + { + "label": "Laboratoire d'Anthropologie et de Psychologie Cognitives et Sociales", + "type": "Child", + "id": "https://ror.org/033ny7f81" + }, + { + "label": "Laboratoire d'Informatique, Signaux et Systèmes de Sophia Antipolis", + "type": "Child", + "id": "https://ror.org/01215r597" + }, + { + "label": "Laboratoire d'Électronique, Antennes et Télécommunications", + "type": "Child", + "id": "https://ror.org/00ah32k04" + }, + { + "label": "Laboratoire de PhysioMédecine Moléculaire", + "type": "Child", + "id": "https://ror.org/00c3ktd57" + }, + { + "label": "Lagrange Laboratory", + "type": "Child", + "id": "https://ror.org/02fdv8735" + }, + { + "label": "Observatoire de la Côte d’Azur", + "type": "Child", + "id": "https://ror.org/039fj2469" + }, + { + "label": "Research Centre Inria Sophia Antipolis - Méditerranée", + "type": "Child", + "id": "https://ror.org/01nzkaw91" + }, + { + "label": "UMI MajuLab", + "type": "Child", + "id": "https://ror.org/027jrtw17" + }, + { + "label": "Centre National de Création Musicale", + "type": "Child", + "id": "https://ror.org/048nq7g61" + }, + { + "label": "Maison des Sciences de l'Homme et de la Société Sud-Est", + "type": "Child", + "id": "https://ror.org/02ygac863" + }, + { + "label": "Ecology and Conservation Science for Sustainable Seas", + "type": "Child", + "id": "https://ror.org/021zcv334" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Transporteurs, Imagerie et Radiothérapie en Oncologie - Mécanismes Biologiques des Altérations du Tissu Osseux", + "type": "Child", + "id": "https://ror.org/051c1vb08" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "Child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "Centre de Recherche sur l'Hétéro-Epitaxie et ses Applications", + "type": "Child", + "id": "https://ror.org/03y8mpv07" + }, + { + "label": "Unité de Recherche Clinique Côte d'Azur", + "type": "Child", + "id": "https://ror.org/059h7s745" + }, + { + "label": "Transitions Savoirs Médias Territoires", + "type": "Child", + "id": "https://ror.org/05hp04238" + }, + { + "label": "Laboratoire des Sciences de l’Information et de la Communication", + "type": "Child", + "id": "https://ror.org/034gh1d56" + }, + { + "label": "Risques, Epidémiologie, Territoires, Informations, Education et Santé", + "type": "Child", + "id": "https://ror.org/04kezy879" + }, + { + "label": "Laboratoire Polytech'Lab", + "type": "Child", + "id": "https://ror.org/03d7ypa48" + }, + { + "label": "Nature Inspires Creativity Engineers Lab", + "type": "Child", + "id": "https://ror.org/02bczqy30" + }, + { + "label": "Microbiologie Orale, Immunothérapie et Santé", + "type": "Child", + "id": "https://ror.org/03xkgc756" + }, + { + "label": "Laboratoire interdisciplinaire Récits Cultures et Sociétés", + "type": "Child", + "id": "https://ror.org/033v1zn65" + }, + { + "label": "Laboratoire d'Innovation et Numérique pour l'Éducation", + "type": "Child", + "id": "https://ror.org/048z62t22" + }, + { + "label": "Laboratoire de Droit International et Européen", + "type": "Child", + "id": "https://ror.org/01q3kj769" + }, + { + "label": "Indo-French Centre for Applied Mathematics", + "type": "Child", + "id": "https://ror.org/05rnj8444" + }, + { + "label": "Institut d'Études Scientifiques de Cargèse", + "type": "Child", + "id": "https://ror.org/044mrv955" + }, + { + "label": "Groupe de Recherche en Management", + "type": "Child", + "id": "https://ror.org/023cs7p87" + }, + { + "label": "Équipe de Recherche sur les Mutations de l'Europe et de ses Sociétés", + "type": "Child", + "id": "https://ror.org/01h6z2q77" + }, + { + "label": "Centre Transdisciplinaire d'Épistémologie de la Littérature et des Arts vivants", + "type": "Child", + "id": "https://ror.org/02ac0n114" + }, + { + "label": "Centre de Recherches en Histoire des Idées", + "type": "Child", + "id": "https://ror.org/01f1fwk48" + }, + { + "label": "Centre d'études et de recherches en droit des procédures", + "type": "Child", + "id": "https://ror.org/04n03q057" + }, + { + "label": "Laboratoire de Recherche Translationnelle en Oncologie", + "type": "Child", + "id": "https://ror.org/04s92nm86" + }, + { + "label": "Centre d'études et de recherche en droit administratif, constitutionnel, financier et fiscal", + "type": "Child", + "id": "https://ror.org/0182ff951" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-cotedazur.fr/" + ], + "aliases": [ + "UniCA" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_C%C3%B4te_d%27Azur", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100013371" + ], + "preferred": "501100013371" + }, + "GRID": { + "all": "grid.460782.f", + "preferred": "grid.460782.f" + }, + "ISNI": { + "all": [ + "0000 0004 4910 6551" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q19370961" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/019yg0716.json b/v1.50/v1/019yg0716.json new file mode 100644 index 000000000..ca96495c1 --- /dev/null +++ b/v1.50/v1/019yg0716.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/019yg0716", + "name": "ISPA - Instituto Universitário", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "MARE - Centro de Ciências do Mar e do Ambiente", + "type": "Child", + "id": "https://ror.org/03cvzf910" + } + ], + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ispa.pt" + ], + "aliases": [ + "Instituto Universitário de Ciências Psicológicas, Sociais e da Vida" + ], + "acronyms": [ + "ISPA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "GRID": { + "all": "grid.410954.d", + "preferred": "grid.410954.d" + }, + "ISNI": { + "all": [ + "0000 0001 2237 5901" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01a8ajp46.json b/v1.50/v1/01a8ajp46.json new file mode 100644 index 000000000..29f107b5a --- /dev/null +++ b/v1.50/v1/01a8ajp46.json @@ -0,0 +1,251 @@ +{ + "id": "https://ror.org/01a8ajp46", + "name": "Université Clermont Auvergne", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Clermont Recherche Management", + "type": "Child", + "id": "https://ror.org/00nf46858" + }, + { + "label": "Génétique, Diversité, Écophysiologie des Céréales", + "type": "Child", + "id": "https://ror.org/04397qy32" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "Child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Unité de Nutrition Humaine", + "type": "Child", + "id": "https://ror.org/003qhrc72" + }, + { + "label": "Institut Pascal", + "type": "Child", + "id": "https://ror.org/03vgfxd91" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Chimie de Clermont-Ferrand", + "type": "Child", + "id": "https://ror.org/045qszf23" + }, + { + "label": "Physique et Physiologie Intégratives de l'Arbre en Environnement Fluctuant", + "type": "Child", + "id": "https://ror.org/03atqv648" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire Microorganismes Génome et Environnement", + "type": "Child", + "id": "https://ror.org/020ahr442" + }, + { + "label": "Laboratoire de Géographie Physique et Environnementale", + "type": "Child", + "id": "https://ror.org/00e4pqm50" + }, + { + "label": "Laboratoire de Mathématiques", + "type": "Child", + "id": "https://ror.org/05sd5r855" + }, + { + "label": "Laboratoire de Physique Corpusculaire", + "type": "Child", + "id": "https://ror.org/0214k6v65" + }, + { + "label": "Laboratoire de Psychologie Sociale et Cognitive", + "type": "Child", + "id": "https://ror.org/01t4k8953" + }, + { + "label": "Laboratoire d'Informatique, de Modélisation et d'Optimisation des Systèmes", + "type": "Child", + "id": "https://ror.org/00t3fpp34" + }, + { + "label": "Microbe, Intestine, Inflammation and Host Susceptibility", + "type": "Child", + "id": "https://ror.org/02q7f3j18" + }, + { + "label": "Microbiologie Environnement Digestif Santé", + "type": "Child", + "id": "https://ror.org/03d0rdy88" + }, + { + "label": "Neuro-Dol", + "type": "Child", + "id": "https://ror.org/028m9sy08" + }, + { + "label": "UMR Territoires", + "type": "Child", + "id": "https://ror.org/026tc4g97" + }, + { + "label": "Unité Mixte de Recherche sur les Herbivores", + "type": "Child", + "id": "https://ror.org/03yvemy54" + }, + { + "label": "Unité Mixte de Recherche sur les Fromages", + "type": "Child", + "id": "https://ror.org/01xbd2h58" + }, + { + "label": "Clermont Auvergne INP", + "type": "Child", + "id": "https://ror.org/001f39w38" + }, + { + "label": "Centre d'Études et de Recherches sur le Développement International", + "type": "Child", + "id": "https://ror.org/01hg13988" + }, + { + "label": "Imagerie Moléculaire et Stratégies Théranostiques", + "type": "Child", + "id": "https://ror.org/03y61y350" + }, + { + "label": "UMR Ressources", + "type": "Child", + "id": "https://ror.org/0394www40" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Laboratoire de Météorologie Physique", + "type": "Child", + "id": "https://ror.org/03gz4y884" + }, + { + "label": "Observatoire de Physique du Globe de Clermont-Ferrand", + "type": "Child", + "id": "https://ror.org/01bch8q67" + }, + { + "label": "Centre Hospitalier Universitaire de Clermont-Ferrand", + "type": "Related", + "id": "https://ror.org/02tcf7a68" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 45.77969, + "lng": 3.08682, + "state": null, + "state_code": null, + "city": "Clermont-Ferrand", + "geonames_city": { + "id": 3024635, + "city": "Clermont-Ferrand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uca.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Clermont_Auvergne", + "labels": [ + { + "label": "University of Clermont Auvergne", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100015723" + ], + "preferred": "501100015723" + }, + "GRID": { + "all": "grid.494717.8", + "preferred": "grid.494717.8" + }, + "ISNI": { + "all": [ + "0000 0001 2173 2882", + "0000 0001 1548 0420" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q28057967", + "Q612648", + "Q1381437" + ], + "preferred": "Q28057967" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01aba3e23.json b/v1.50/v1/01aba3e23.json new file mode 100644 index 000000000..dab5df255 --- /dev/null +++ b/v1.50/v1/01aba3e23.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01aba3e23", + "name": "Centre de recherche sur les institutions, l'industrie et les systèmes économiques d'Amiens", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://criisea.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "CRIISEA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780170" + ], + "preferred": "Q51780170" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01b8h3982.json b/v1.50/v1/01b8h3982.json new file mode 100644 index 000000000..353c5a486 --- /dev/null +++ b/v1.50/v1/01b8h3982.json @@ -0,0 +1,219 @@ +{ + "id": "https://ror.org/01b8h3982", + "name": "Université de Bretagne Occidentale", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut Universitaire Européen de la Mer", + "type": "Child", + "id": "https://ror.org/04pfr1b11" + }, + { + "label": "Génétique, Génomique Fonctionnelle et Biotechnologies", + "type": "Child", + "id": "https://ror.org/05xxb2f26" + }, + { + "label": "Institut de Recherche Dupuy de Lôme", + "type": "Child", + "id": "https://ror.org/03011gg73" + }, + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire Chimie Electrochimie Moléculaires et Chimie Analytique", + "type": "Child", + "id": "https://ror.org/02bhhaf78" + }, + { + "label": "Laboratoire de Mathématiques de Bretagne Atlantique", + "type": "Child", + "id": "https://ror.org/02ght4n58" + }, + { + "label": "Laboratoire de Psychologie : Cognition, Comportement, Communication", + "type": "Child", + "id": "https://ror.org/03dgmxj03" + }, + { + "label": "Laboratoire des Sciences de l'Environnement Marin", + "type": "Child", + "id": "https://ror.org/05h929866" + }, + { + "label": "Laboratoire des Sciences et Techniques de l’Information de la Communication et de la Connaissance", + "type": "Child", + "id": "https://ror.org/0266kfd37" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Centre de recherche sur l’éducation, les apprentissages et la didactique", + "type": "Child", + "id": "https://ror.org/00psw8792" + }, + { + "label": "Littoral, Environnement, Télédétection, Géomatique", + "type": "Child", + "id": "https://ror.org/05sat2s07" + }, + { + "label": "Recherches en Psychopathologie et Psychanalyse", + "type": "Child", + "id": "https://ror.org/04fke6556" + }, + { + "label": "Centre Atlantique de Philosophie", + "type": "Child", + "id": "https://ror.org/059ynac98" + }, + { + "label": "Centre François Viète", + "type": "Child", + "id": "https://ror.org/03mcrfa90" + }, + { + "label": "Geo-Ocean", + "type": "Child", + "id": "https://ror.org/007dbrz84" + }, + { + "label": "Laboratoire d'études et de recherche en sociologie", + "type": "Child", + "id": "https://ror.org/05ybd2c79" + }, + { + "label": "Héritage et Création dans le Texte et l'Image", + "type": "Child", + "id": "https://ror.org/05fa5kd53" + }, + { + "label": "AMURE - Centre de droit et d'économie de la mer", + "type": "Child", + "id": "https://ror.org/00ss0a232" + }, + { + "label": "Centre de recherche bretonne et celtique", + "type": "Child", + "id": "https://ror.org/01qjd1497" + }, + { + "label": "Laboratoire d’Économie et de Gestion de l'Ouest", + "type": "Child", + "id": "https://ror.org/010rve435" + }, + { + "label": "Laboratoire de recherche en droit", + "type": "Child", + "id": "https://ror.org/036tyjs84" + }, + { + "label": "Géoarchitecture, Territoires, Urbanisation, Biodiversité, Environnement", + "type": "Child", + "id": "https://ror.org/05yhtfv11" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 48.39029, + "lng": -4.48628, + "state": null, + "state_code": null, + "city": "Brest", + "geonames_city": { + "id": 3030300, + "city": "Brest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-brest.fr" + ], + "aliases": [ + "Bretagne Occidentale University", + "University of Western Brittany", + "Université de Brest" + ], + "acronyms": [ + "UBO" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Western_Brittany", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006703" + ], + "preferred": null + }, + "GRID": { + "all": "grid.6289.5", + "preferred": "grid.6289.5" + }, + "ISNI": { + "all": [ + "0000 0001 2188 0893" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1857334" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01bcckr12.json b/v1.50/v1/01bcckr12.json new file mode 100644 index 000000000..70cbf5146 --- /dev/null +++ b/v1.50/v1/01bcckr12.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/01bcckr12", + "name": "Canada Energy Regulator", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.05011, + "lng": -114.08529, + "state": null, + "state_code": null, + "city": "Calgary", + "geonames_city": { + "id": 5913490, + "city": "Calgary", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cer-rec.gc.ca" + ], + "aliases": [ + "National Energy Board", + "Office national de l'énergie" + ], + "acronyms": [ + "CER", + "NEB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Energy_Board", + "labels": [ + { + "label": "Régie de l’énergie du Canada", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.494270.c", + "preferred": "grid.494270.c" + }, + "ISNI": { + "all": [ + "0000 0001 1940 9998" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3349657" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01bcqbv56.json b/v1.50/v1/01bcqbv56.json new file mode 100644 index 000000000..ac66088ae --- /dev/null +++ b/v1.50/v1/01bcqbv56.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01bcqbv56", + "name": "Hôpital Adélaïde-Hautval", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 49.00875, + "lng": 2.39819, + "state": null, + "state_code": null, + "city": "Villiers-le-Bel", + "geonames_city": { + "id": 2968176, + "city": "Villiers-le-Bel", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hupnvs.aphp.fr/ehpad-adelaide-hautval/" + ], + "aliases": [ + "EPHAD Adélaïde-Hautval" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.510333.7", + "preferred": "grid.510333.7" + }, + "Wikidata": { + "all": [ + "Q30101501" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01c1w6d29.json b/v1.50/v1/01c1w6d29.json new file mode 100644 index 000000000..94572b46e --- /dev/null +++ b/v1.50/v1/01c1w6d29.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/01c1w6d29", + "name": "University of Bamberg", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Staatsinstitut für Familienforschung an der Universität Bamberg", + "type": "Child", + "id": "https://ror.org/0384rzm54" + }, + { + "label": "University of Bamberg Press", + "type": "Child", + "id": "https://ror.org/004fa0x02" + } + ], + "addresses": [ + { + "lat": 49.89873, + "lng": 10.90067, + "state": null, + "state_code": null, + "city": "Bamberg", + "geonames_city": { + "id": 2952984, + "city": "Bamberg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni-bamberg.de/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Bamberg", + "labels": [ + { + "label": "Otto-Friedrich-Universität Bamberg", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.7359.8", + "preferred": "grid.7359.8" + }, + "ISNI": { + "all": [ + "0000 0001 2325 4853" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q707272" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01c4pz451.json b/v1.50/v1/01c4pz451.json new file mode 100644 index 000000000..bf8179504 --- /dev/null +++ b/v1.50/v1/01c4pz451.json @@ -0,0 +1,127 @@ +{ + "id": "https://ror.org/01c4pz451", + "name": "Tehran University of Medical Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1934, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Imam Khomeini Hospital", + "type": "Child", + "id": "https://ror.org/05v2x6b69" + }, + { + "label": "Farabi Eye Hospital", + "type": "Child", + "id": "https://ror.org/02fvps960" + }, + { + "label": "Children's Medical Center", + "type": "Related", + "id": "https://ror.org/01v27vf29" + }, + { + "label": "Shariati Hospital", + "type": "Related", + "id": "https://ror.org/01rb4vv49" + }, + { + "label": "Tehran Heart Center", + "type": "Child", + "id": "https://ror.org/042f28677" + } + ], + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tums.ac.ir" + ], + "aliases": [], + "acronyms": [ + "TUMS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Tehran_University_of_Medical_Sciences", + "labels": [ + { + "label": "دانشگاه علوم پزشکی تهران", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004484", + "501100004887", + "501100005391" + ], + "preferred": "501100004484" + }, + "GRID": { + "all": "grid.411705.6", + "preferred": "grid.411705.6" + }, + "ISNI": { + "all": [ + "0000 0001 0166 0922" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7694901" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01cbtr271.json b/v1.50/v1/01cbtr271.json new file mode 100644 index 000000000..1e63586bd --- /dev/null +++ b/v1.50/v1/01cbtr271.json @@ -0,0 +1,130 @@ +{ + "id": "https://ror.org/01cbtr271", + "name": "École d'Ingénieurs en Chimie et Sciences du Numérique", + "email_address": null, + "ip_addresses": [], + "established": 1883, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Automation and Process Engineering Laboratory", + "type": "Child", + "id": "https://ror.org/03kfjwy31" + }, + { + "label": "Institut de Chimie et Biochimie Moléculaires et Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00gj33s30" + }, + { + "label": "Institut des Nanotechnologies de Lyon", + "type": "Child", + "id": "https://ror.org/04jsk0b74" + }, + { + "label": "Laboratoire Hubert Curien", + "type": "Child", + "id": "https://ror.org/0028p8r67" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Catalyse, Polymérisation, Procédés et Matériaux", + "type": "Child", + "id": "https://ror.org/02f6tst70" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cpe.fr/" + ], + "aliases": [ + "CPE Lyon", + "École Supérieure de Chimie Physique Électronique de Lyon" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_sup%C3%A9rieure_de_chimie_physique_%C3%A9lectronique_de_Lyon", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.435458.b", + "preferred": "grid.435458.b" + }, + "ISNI": { + "all": [ + "0000 0000 8866 9008" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10178" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01ct9zb26.json b/v1.50/v1/01ct9zb26.json new file mode 100644 index 000000000..05eb36066 --- /dev/null +++ b/v1.50/v1/01ct9zb26.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01ct9zb26", + "name": "Wulin Academy of Arts", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.29365, + "lng": 120.16142, + "state": null, + "state_code": null, + "city": "Hangzhou", + "geonames_city": { + "id": 1808926, + "city": "Hangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.wulin.ac.cn" + ], + "aliases": [], + "acronyms": [ + "WA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Wulin_Academy_of_Arts", + "labels": [ + { + "label": "武林書畫院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1260 7069" + ], + "preferred": "0000 0005 1260 7069" + }, + "Wikidata": { + "all": [ + "Q96415603" + ], + "preferred": "Q96415603" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01da06998.json b/v1.50/v1/01da06998.json new file mode 100644 index 000000000..ed486e4c9 --- /dev/null +++ b/v1.50/v1/01da06998.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/01da06998", + "name": "Instituto Tecnológico Superior de Irapuato", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.67675, + "lng": -101.35628, + "state": null, + "state_code": null, + "city": "Irapuato", + "geonames_city": { + "id": 4004330, + "city": "Irapuato", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://irapuato.tecnm.mx" + ], + "aliases": [ + "TecNM Irapuato", + "Tecnológico Nacional de México de Irapuato" + ], + "acronyms": [ + "ITESI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_Superior_de_Irapuato", + "labels": [ + { + "label": "Higher Technological Institute of Irapuato", + "iso639": "en" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.462383.8", + "preferred": "grid.462383.8" + }, + "ISNI": { + "all": [ + "0000 0004 0369 4730" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6041556" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01db19a87.json b/v1.50/v1/01db19a87.json new file mode 100644 index 000000000..c2b9977f9 --- /dev/null +++ b/v1.50/v1/01db19a87.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/01db19a87", + "name": "ESIC Business & Marketing School", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ESIC University", + "type": "Related", + "id": "https://ror.org/0230c9q89" + } + ], + "addresses": [ + { + "lat": 40.43293, + "lng": -3.81338, + "state": null, + "state_code": null, + "city": "Pozuelo de Alarcón", + "geonames_city": { + "id": 3112989, + "city": "Pozuelo de Alarcón", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.esic.edu" + ], + "aliases": [ + "ESIC Business and Marketing School", + "Escuela de Estudios Superiores ESIC Sacerdotes del Sagrado Corazón de Jesús", + "Escuela de Estudios Superiores ESIC Sacerdotes del Sagrado Corazón de Jesús - Padres Reparadores" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "all": [ + "100022741" + ], + "preferred": "100022741" + }, + "ISNI": { + "all": [ + "0000 0004 0639 2594" + ], + "preferred": "0000 0004 0639 2594" + }, + "Wikidata": { + "all": [ + "Q10269817" + ], + "preferred": "Q10269817" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01dp7jr64.json b/v1.50/v1/01dp7jr64.json new file mode 100644 index 000000000..98d373a1c --- /dev/null +++ b/v1.50/v1/01dp7jr64.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01dp7jr64", + "name": "École Normale Supérieure", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -3.38193, + "lng": 29.36142, + "state": null, + "state_code": null, + "city": "Bujumbura", + "geonames_city": { + "id": 425378, + "city": "Bujumbura", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ens.edu.bi" + ], + "aliases": [ + "ENS de Bujumbura", + "École Normale Supérieure de Bujumbura" + ], + "acronyms": [ + "ENS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Burundi", + "country_code": "BI" + }, + "external_ids": { + "GRID": { + "all": "grid.508474.a", + "preferred": "grid.508474.a" + }, + "Wikidata": { + "all": [ + "Q97041886" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01fkg1209.json b/v1.50/v1/01fkg1209.json new file mode 100644 index 000000000..414d10ea0 --- /dev/null +++ b/v1.50/v1/01fkg1209.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/01fkg1209", + "name": "NorthEast Pacific Deep-sea Exploration Project", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Fisheries and Oceans Canada", + "type": "Parent", + "id": "https://ror.org/02qa1x782" + }, + { + "label": "University of Victoria", + "type": "Related", + "id": "https://ror.org/04s5mat29" + }, + { + "label": "Royal British Columbia Museum", + "type": "Related", + "id": "https://ror.org/00yxpmx15" + }, + { + "label": "Ocean Networks Canada Society", + "type": "Related", + "id": "https://ror.org/05gknh003" + }, + { + "label": "Council of the Haida Nation", + "type": "Related", + "id": "https://ror.org/021j0ne73" + }, + { + "label": "Nuu Chah Nulth Tribal Council", + "type": "Related", + "id": "https://ror.org/01g72me42" + } + ], + "addresses": [ + { + "lat": 48.4359, + "lng": -123.35155, + "state": null, + "state_code": null, + "city": "Victoria", + "geonames_city": { + "id": 6174041, + "city": "Victoria", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nepdep.com" + ], + "aliases": [], + "acronyms": [ + "NEPDEP" + ], + "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.50/v1/01frn9647.json b/v1.50/v1/01frn9647.json new file mode 100644 index 000000000..40e708891 --- /dev/null +++ b/v1.50/v1/01frn9647.json @@ -0,0 +1,181 @@ +{ + "id": "https://ror.org/01frn9647", + "name": "Université de Pau et des Pays de l'Adour", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Recherche sur la Langue et les Textes Basques", + "type": "Child", + "id": "https://ror.org/03bj0v820" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "Child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Institut des Sciences Analytiques et de Physico-Chimie pour l'Environnement et les Matériaux", + "type": "Child", + "id": "https://ror.org/00222yk13" + }, + { + "label": "Laboratoire de Mathématiques et de leurs Applications", + "type": "Child", + "id": "https://ror.org/00g669j87" + }, + { + "label": "Les Afriques dans le Monde", + "type": "Child", + "id": "https://ror.org/00721wn77" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Laboratoire des Fluides Complexes et leurs Réservoirs", + "type": "Child", + "id": "https://ror.org/03dg47v24" + }, + { + "label": "Ecologie Comportementale et Biologie des Populations de Poissons", + "type": "Child", + "id": "https://ror.org/02brsbg31" + }, + { + "label": "Laboratoire Interuniversitaire Expérience, Ressources culturelles, Education", + "type": "Child", + "id": "https://ror.org/0127n6542" + }, + { + "label": "DMEX Centre for X-ray Imaging", + "type": "Child", + "id": "https://ror.org/0213f8g15" + }, + { + "label": "Droit International Comparé et Européen", + "type": "Child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Transitions Energétiques et Environnementales", + "type": "Child", + "id": "https://ror.org/04cms1b08" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 43.31117, + "lng": -0.35583, + "state": null, + "state_code": null, + "city": "Pau", + "geonames_city": { + "id": 2988358, + "city": "Pau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-pau.fr" + ], + "aliases": [ + "University of Pau and Pays de l'Adour" + ], + "acronyms": [ + "UPPA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Pau_and_Pays_de_l'Adour", + "labels": [ + { + "label": "L'Université de Pau et des Pays de l'Adour", + "iso639": "fr" + }, + { + "label": "Paueko eta Aturrialdeko Unibertsitatea", + "iso639": "eu" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100018694" + ], + "preferred": "501100018694" + }, + "GRID": { + "all": "grid.5571.6", + "preferred": "grid.5571.6" + }, + "ISNI": { + "all": [ + "0000 0001 2289 818X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q572968" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01g72me42.json b/v1.50/v1/01g72me42.json new file mode 100644 index 000000000..e52693097 --- /dev/null +++ b/v1.50/v1/01g72me42.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01g72me42", + "name": "Nuu Chah Nulth Tribal Council", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "NorthEast Pacific Deep-sea Exploration Project", + "type": "Related", + "id": "https://ror.org/01fkg1209" + } + ], + "addresses": [ + { + "lat": 49.24133, + "lng": -124.8028, + "state": null, + "state_code": null, + "city": "Port Alberni", + "geonames_city": { + "id": 6111632, + "city": "Port Alberni", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nuuchahnulth.org/tribal-council/welcome.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nuu-chah-nulth_Tribal_Council", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.451131.3", + "preferred": "grid.451131.3" + }, + "Wikidata": { + "all": [ + "Q7070608" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01gg39979.json b/v1.50/v1/01gg39979.json new file mode 100644 index 000000000..dd47fad79 --- /dev/null +++ b/v1.50/v1/01gg39979.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01gg39979", + "name": "Eterna Therapeutics (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.eternatx.com" + ], + "aliases": [ + "Brooklyn ImmunoTherapeutics" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Eterna Therapeutics", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.509449.5", + "preferred": "grid.509449.5" + }, + "Wikidata": { + "all": [ + "Q104480793" + ], + "preferred": "Q104480793" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01gyxrk03.json b/v1.50/v1/01gyxrk03.json new file mode 100644 index 000000000..25e7d2149 --- /dev/null +++ b/v1.50/v1/01gyxrk03.json @@ -0,0 +1,273 @@ +{ + "id": "https://ror.org/01gyxrk03", + "name": "Université de Picardie Jules Verne", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Southeast Asian Studies", + "type": "Child", + "id": "https://ror.org/02cd98b83" + }, + { + "label": "Ecologie et Dynamique des Systèmes Anthropisés", + "type": "Child", + "id": "https://ror.org/02bhp7a56" + }, + { + "label": "Groupe de Recherche sur l'Alcool et les Pharmacodépendances", + "type": "Child", + "id": "https://ror.org/01c62av11" + }, + { + "label": "Laboratoire Amiénois de Mathématique Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/04smxbm79" + }, + { + "label": "Laboratoire de Réactivité et Chimie des Solides", + "type": "Child", + "id": "https://ror.org/02m9cs548" + }, + { + "label": "Laboratoire de Glycochimie, des Antimicrobiens et des Agroressources", + "type": "Child", + "id": "https://ror.org/01gje7n16" + }, + { + "label": "Maison Européenne des Sciences de l'Homme et de la Société", + "type": "Child", + "id": "https://ror.org/00m090414" + }, + { + "label": "Périnatalité & Risques Toxiques", + "type": "Child", + "id": "https://ror.org/05ewvzm89" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "Child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "Groupe de Recherches sur l’Analyse Multimodale de la Fonction Cérébrale", + "type": "Child", + "id": "https://ror.org/02a9mrq41" + }, + { + "label": "Centre universitaire de recherches sur l'Action Publique et le Politique Épistémologie & Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00rxdng69" + }, + { + "label": "Bassins - Réservoirs - Ressources", + "type": "Child", + "id": "https://ror.org/059424541" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Mécanismes physiopathologiques et conséquences des calcifications cardiovasculaires", + "type": "Child", + "id": "https://ror.org/00bgnvd66" + }, + { + "label": "Textes, représentations, archéologie, autorité et mémoire de l'antiquité à la renaissance", + "type": "Child", + "id": "https://ror.org/02ht85j57" + }, + { + "label": "Habiter le monde", + "type": "Child", + "id": "https://ror.org/02wdygz27" + }, + { + "label": "Centre d'histoire des sociétés, des sciences et des conflits", + "type": "Child", + "id": "https://ror.org/01jrmfs07" + }, + { + "label": "Conflits, représentations et dialogues dans l'univers anglo-saxon", + "type": "Child", + "id": "https://ror.org/03cs09e53" + }, + { + "label": "Centre d'études des relations et des contacts linguistiques et littéraires", + "type": "Child", + "id": "https://ror.org/00erb9339" + }, + { + "label": "Centre d'Etudes Hispaniques d'Amiens", + "type": "Child", + "id": "https://ror.org/05y441t49" + }, + { + "label": "Laboratoire d'Economie, Finance, Management et Innovation", + "type": "Child", + "id": "https://ror.org/00cctyp65" + }, + { + "label": "Centre de recherche sur les institutions, l'industrie et les systèmes économiques d'Amiens", + "type": "Child", + "id": "https://ror.org/01aba3e23" + }, + { + "label": "Laboratoire des technologies innovantes", + "type": "Child", + "id": "https://ror.org/00ry58h45" + }, + { + "label": "Eco-procédés, optimisation et aide à la décision", + "type": "Child", + "id": "https://ror.org/02bn7hs48" + }, + { + "label": "Laboratoire de physique des systèmes complexes", + "type": "Child", + "id": "https://ror.org/01s6bet72" + }, + { + "label": "Laboratoire de physique de la matière condensée", + "type": "Child", + "id": "https://ror.org/05brss208" + }, + { + "label": "Adaptation physiologiques à l'exercice et réadaptation à l'effort", + "type": "Child", + "id": "https://ror.org/04jvgth94" + }, + { + "label": "Laboratoire de physiologie cellulaire et moléculaire", + "type": "Child", + "id": "https://ror.org/03vv60b83" + }, + { + "label": "Centre de droit privé et de sciences criminelles d'Amiens", + "type": "Child", + "id": "https://ror.org/01v9vbn43" + }, + { + "label": "Simplification des soins chez les patients complexes", + "type": "Child", + "id": "https://ror.org/02at6c277" + }, + { + "label": "Chirurgie et extrêmité céphalique, caractérisation morphologique et fonctionnelle", + "type": "Child", + "id": "https://ror.org/012h8gy04" + }, + { + "label": "Agents infectieux, résistance et chimiothérapie", + "type": "Child", + "id": "https://ror.org/04mywez65" + }, + { + "label": "Centre de recherche en psychologie : cognition, psychisme et organisations", + "type": "Child", + "id": "https://ror.org/007a90f76" + }, + { + "label": "Hématopoïèse et immunologie", + "type": "Child", + "id": "https://ror.org/03keztm33" + }, + { + "label": "Centre amiénois de recherche en éducation et formation", + "type": "Child", + "id": "https://ror.org/04grq1g73" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-picardie.fr/" + ], + "aliases": [], + "acronyms": [ + "UPJV" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Picardie_Jules_Verne", + "labels": [ + { + "label": "Universitat de Picardia", + "iso639": "ca" + }, + { + "label": "University of Picardie Jules Verne", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.11162.35", + "preferred": "grid.11162.35" + }, + "ISNI": { + "all": [ + "0000 0001 0789 1385" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q947747" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01h0ffh48.json b/v1.50/v1/01h0ffh48.json new file mode 100644 index 000000000..354e768af --- /dev/null +++ b/v1.50/v1/01h0ffh48.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/01h0ffh48", + "name": "École Nationale Supérieure de Chimie de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "Child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Université de Rennes", + "type": "Parent", + "id": "https://ror.org/015m7wh34" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ensc-rennes.fr/" + ], + "aliases": [], + "acronyms": [ + "ENSCR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462898.9", + "preferred": "grid.462898.9" + }, + "ISNI": { + "all": [ + "0000 0004 0640 3791" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3578223" + ], + "preferred": "Q3578223" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01h2vtb84.json b/v1.50/v1/01h2vtb84.json new file mode 100644 index 000000000..85e6b3e9f --- /dev/null +++ b/v1.50/v1/01h2vtb84.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/01h2vtb84", + "name": "Rachel Carson Center for Environment and Society", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.carsoncenter.uni-muenchen.de/index.html" + ], + "aliases": [], + "acronyms": [ + "RCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rachel_Carson_Center_for_Environment_and_Society", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100014395" + ], + "preferred": "501100014395" + }, + "GRID": { + "all": "grid.501076.5", + "preferred": "grid.501076.5" + }, + "ISNI": { + "all": [ + "0000 0000 9792 4410" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7279184" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01h3wfd56.json b/v1.50/v1/01h3wfd56.json new file mode 100644 index 000000000..949a89455 --- /dev/null +++ b/v1.50/v1/01h3wfd56.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/01h3wfd56", + "name": "Nordzucker AG (Germany)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.26594, + "lng": 10.52673, + "state": null, + "state_code": null, + "city": "Braunschweig", + "geonames_city": { + "id": 2945024, + "city": "Braunschweig", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nordzucker.com" + ], + "aliases": [ + "Nordzucker" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Nordzucker AG", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q461095" + ], + "preferred": "Q461095" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01h85cx24.json b/v1.50/v1/01h85cx24.json new file mode 100644 index 000000000..47cca3a03 --- /dev/null +++ b/v1.50/v1/01h85cx24.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01h85cx24", + "name": "Institute of Geography", + "email_address": null, + "ip_addresses": [], + "established": 1938, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ministry of Science and Higher Education of the Republic of Kazakhstan", + "type": "Parent", + "id": "https://ror.org/05tyne317" + } + ], + "addresses": [ + { + "lat": 43.25, + "lng": 76.91667, + "state": null, + "state_code": null, + "city": "Almaty", + "geonames_city": { + "id": 1526384, + "city": "Almaty", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ingeo.kz/?lang=en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut geografii Respubliki Kazahstan", + "iso639": "ru" + }, + { + "label": "Институт географии", + "iso639": "kk" + } + ], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": { + "GRID": { + "all": "grid.493353.b", + "preferred": "grid.493353.b" + }, + "ISNI": { + "all": [ + "0000 0004 0605 9871" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01h8pf755.json b/v1.50/v1/01h8pf755.json new file mode 100644 index 000000000..1f5554f1e --- /dev/null +++ b/v1.50/v1/01h8pf755.json @@ -0,0 +1,162 @@ +{ + "id": "https://ror.org/01h8pf755", + "name": "Institut National des Sciences Appliquées de Toulouse", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre d’Élaboration de Matériaux et d’Études Structurales", + "type": "Child", + "id": "https://ror.org/03kwnqq69" + }, + { + "label": "Laboratoire National des Champs Magnétiques Intenses", + "type": "Child", + "id": "https://ror.org/045ktmd28" + }, + { + "label": "Institut Clément Ader", + "type": "Child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Biologiques et des Procédés", + "type": "Child", + "id": "https://ror.org/01yypjb30" + }, + { + "label": "Laboratoire de Physique et Chimie des Nano-Objets", + "type": "Child", + "id": "https://ror.org/042xmz674" + }, + { + "label": "Laboratoire d'Analyse et d'Architecture des Systèmes", + "type": "Child", + "id": "https://ror.org/03vcm6439" + }, + { + "label": "Laboratoire Matériaux et Durabilité des Constructions", + "type": "Child", + "id": "https://ror.org/02mkbvg40" + }, + { + "label": "Institut de Mathématiques de Toulouse", + "type": "Child", + "id": "https://ror.org/014vp6c30" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "Child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "CALMIP", + "type": "Child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Fédération de recherche Matière et Interactions", + "type": "Child", + "id": "https://ror.org/02wq1s711" + }, + { + "label": "Université de Toulouse", + "type": "Parent", + "id": "https://ror.org/004raaa70" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.insa-toulouse.fr/en/index.html" + ], + "aliases": [ + "INSA Toulouse" + ], + "acronyms": [ + "INSA", + "INSAT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_national_des_sciences_appliqu%C3%A9es_de_Toulouse", + "labels": [ + { + "label": "National Institute for Applied Sciences", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461574.5", + "preferred": "grid.461574.5" + }, + "ISNI": { + "all": [ + "0000 0001 2286 8343" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q858979" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01j7nq853.json b/v1.50/v1/01j7nq853.json new file mode 100644 index 000000000..8d84ec2fb --- /dev/null +++ b/v1.50/v1/01j7nq853.json @@ -0,0 +1,156 @@ +{ + "id": "https://ror.org/01j7nq853", + "name": "University of Alaska Fairbanks", + "email_address": null, + "ip_addresses": [], + "established": 1917, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Alaska Sea Grant", + "type": "Child", + "id": "https://ror.org/04j23ff69" + }, + { + "label": "Alaska Space Grant Program", + "type": "Child", + "id": "https://ror.org/022nyme12" + }, + { + "label": "Bonanza Creek Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/01nysf027" + }, + { + "label": "Northern Gulf of Alaska Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/01csn4944" + }, + { + "label": "Geophysical Detection of Nuclear Proliferation", + "type": "Child", + "id": "https://ror.org/02yryhg49" + }, + { + "label": "Alaska Climate Adaptation Science Center", + "type": "Child", + "id": "https://ror.org/00y4zmh56" + }, + { + "label": "International Arctic Research Center", + "type": "Child", + "id": "https://ror.org/012prxm53" + }, + { + "label": "University of Alaska System", + "type": "Parent", + "id": "https://ror.org/01mtkd993" + }, + { + "label": "Beaufort Lagoon Ecosystems Long Term Ecological Research Network", + "type": "Related", + "id": "https://ror.org/055a54548" + }, + { + "label": "Alaska Center for Energy and Power", + "type": "Child", + "id": "https://ror.org/00h01ex42" + } + ], + "addresses": [ + { + "lat": 64.83778, + "lng": -147.71639, + "state": null, + "state_code": null, + "city": "Fairbanks", + "geonames_city": { + "id": 5861897, + "city": "Fairbanks", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uaf.edu/" + ], + "aliases": [], + "acronyms": [ + "UAF" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Alaska_Fairbanks", + "labels": [ + { + "label": "Universidad de Alaska Fairbanks", + "iso639": "es" + }, + { + "label": "Université de l'alaska à fairbanks", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006024", + "100012574" + ], + "preferred": "100012574" + }, + "GRID": { + "all": "grid.70738.3b", + "preferred": "grid.70738.3b" + }, + "ISNI": { + "all": [ + "0000 0004 1936 981X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1285262", + "Q5535569" + ], + "preferred": "Q1285262" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01jn5wy42.json b/v1.50/v1/01jn5wy42.json new file mode 100644 index 000000000..3fd1a19cd --- /dev/null +++ b/v1.50/v1/01jn5wy42.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01jn5wy42", + "name": "Brest State A.S. Pushkin University", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.09755, + "lng": 23.68775, + "state": null, + "state_code": null, + "city": "Brest", + "geonames_city": { + "id": 629634, + "city": "Brest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.brsu.by" + ], + "aliases": [ + "A.S. Pushkin Brest State University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/A.S._Pushkin_Brest_State_University", + "labels": [ + { + "label": "Брестский государственный университет имени А. С. Пушкина", + "iso639": "ru" + }, + { + "label": "Брэсцкі дзяржаўны ўніверсітэт імя А. С. Пушкіна", + "iso639": "be" + } + ], + "country": { + "country_name": "Belarus", + "country_code": "BY" + }, + "external_ids": { + "GRID": { + "all": "grid.444993.7", + "preferred": "grid.444993.7" + }, + "Wikidata": { + "all": [ + "Q2638914" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01jrmfs07.json b/v1.50/v1/01jrmfs07.json new file mode 100644 index 000000000..d5d111578 --- /dev/null +++ b/v1.50/v1/01jrmfs07.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01jrmfs07", + "name": "Centre d'histoire des sociétés, des sciences et des conflits", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://chssc.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "CHSSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2097 4644" + ], + "preferred": "0000 0001 2097 4644" + }, + "Wikidata": { + "all": [ + "Q51784205" + ], + "preferred": "Q51784205" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01k7fr644.json b/v1.50/v1/01k7fr644.json new file mode 100644 index 000000000..643e0e863 --- /dev/null +++ b/v1.50/v1/01k7fr644.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/01k7fr644", + "name": "Universitas Muhammadiyah Kotabumi", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -5.42952, + "lng": 104.87479, + "state": null, + "state_code": null, + "city": "Sindangsari", + "geonames_city": { + "id": 7862858, + "city": "Sindangsari", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umko.ac.id" + ], + "aliases": [ + "University of Muhammadiyah Kotabumi" + ], + "acronyms": [ + "UMKO" + ], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Universitas_Muhammadiyah_Kotabumi", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/01kbr1737.json b/v1.50/v1/01kbr1737.json new file mode 100644 index 000000000..9a53fb64e --- /dev/null +++ b/v1.50/v1/01kbr1737.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01kbr1737", + "name": "PHotonique ELectronique et Ingénierie QuantiqueS", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cea.fr/drf/irig/Pages/Laboratoires/Pheliqs.aspx" + ], + "aliases": [], + "acronyms": [ + "PHELIQS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780340" + ], + "preferred": "Q51780340" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01kknrc90.json b/v1.50/v1/01kknrc90.json new file mode 100644 index 000000000..734ceb1ee --- /dev/null +++ b/v1.50/v1/01kknrc90.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/01kknrc90", + "name": "University of North Sumatra", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 3.58333, + "lng": 98.66667, + "state": null, + "state_code": null, + "city": "Medan", + "geonames_city": { + "id": 1214520, + "city": "Medan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://usu.ac.id" + ], + "aliases": [], + "acronyms": [ + "USU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_North_Sumatra", + "labels": [ + { + "label": "Universitas Sumatera Utara", + "iso639": "id" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100013375" + ], + "preferred": "501100013375" + }, + "GRID": { + "all": "grid.413127.2", + "preferred": "grid.413127.2" + }, + "ISNI": { + "all": [ + "0000 0001 0657 4011" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4200341" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01ktn5v16.json b/v1.50/v1/01ktn5v16.json new file mode 100644 index 000000000..bee992240 --- /dev/null +++ b/v1.50/v1/01ktn5v16.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/01ktn5v16", + "name": "Al-Rayan University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 14.48736, + "lng": 49.04427, + "state": null, + "state_code": null, + "city": "Fuwwah", + "geonames_city": { + "id": 75753, + "city": "Fuwwah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://alrayan-university.edu.ye" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "لجامعة الريان", + "iso639": "ar" + } + ], + "country": { + "country_name": "Yemen", + "country_code": "YE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/01m11mf96.json b/v1.50/v1/01m11mf96.json new file mode 100644 index 000000000..6139bf76e --- /dev/null +++ b/v1.50/v1/01m11mf96.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/01m11mf96", + "name": "Hôpital Broca", + "email_address": null, + "ip_addresses": [], + "established": 1832, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Groupe Hospitalier Cochin - Port-Royal, Hôtel-Dieu, Broca - La Collégiale", + "type": "Parent", + "id": "https://ror.org/02v5bgz72" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aphp.fr/contenu/hopital-broca-2" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/H%C3%B4pital_Broca", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.413802.c", + "preferred": "grid.413802.c" + }, + "ISNI": { + "all": [ + "0000 0001 0011 8533" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3145143" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01m7n4g71.json b/v1.50/v1/01m7n4g71.json new file mode 100644 index 000000000..8933d017a --- /dev/null +++ b/v1.50/v1/01m7n4g71.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01m7n4g71", + "name": "Centre for Health Law, Policy and Ethics", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ottawahealthlaw.ca" + ], + "aliases": [ + "Université d’Ottawa Centre de Droit, politique et éthique de la santé", + "uOttawa Centre for Health Law, Policy and Ethics" + ], + "acronyms": [ + "CHLPE" + ], + "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.50/v1/01mgaqp12.json b/v1.50/v1/01mgaqp12.json new file mode 100644 index 000000000..bcc409643 --- /dev/null +++ b/v1.50/v1/01mgaqp12.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01mgaqp12", + "name": "Aktobe Regional State University named after K.Zhubanov", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.27969, + "lng": 57.20718, + "state": null, + "state_code": null, + "city": "Aktobe", + "geonames_city": { + "id": 610611, + "city": "Aktobe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://zhubanov.edu.kz" + ], + "aliases": [ + "Zhubanov University", + "Ақтөбе мемлекеттік университеті" + ], + "acronyms": [ + "ARSU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Қ.Жұбанов атындағы Ақтөбе өңірлік мемлекеттік университет", + "iso639": "kk" + } + ], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": { + "GRID": { + "all": "grid.443407.0", + "preferred": "grid.443407.0" + }, + "Wikidata": { + "all": [ + "Q25502201" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01mvrj242.json b/v1.50/v1/01mvrj242.json new file mode 100644 index 000000000..b144cc956 --- /dev/null +++ b/v1.50/v1/01mvrj242.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01mvrj242", + "name": "Nanosystems Initiative Munich", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nano-initiative-munich.de/en/" + ], + "aliases": [], + "acronyms": [ + "NIM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nanosystems_Initiative_Munich", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.452665.6", + "preferred": "grid.452665.6" + }, + "Wikidata": { + "all": [ + "Q1964702" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01mz2wq83.json b/v1.50/v1/01mz2wq83.json new file mode 100644 index 000000000..42e35b6b3 --- /dev/null +++ b/v1.50/v1/01mz2wq83.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01mz2wq83", + "name": "Insilico Medicine (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.35843, + "lng": -71.05977, + "state": null, + "state_code": null, + "city": "Boston", + "geonames_city": { + "id": 4930956, + "city": "Boston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://insilico.com" + ], + "aliases": [ + "Insilico", + "Insilico US" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Insilico_Medicine", + "labels": [ + { + "label": "Insilico Medicine", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/01n6r0e97.json b/v1.50/v1/01n6r0e97.json new file mode 100644 index 000000000..7d3a27070 --- /dev/null +++ b/v1.50/v1/01n6r0e97.json @@ -0,0 +1,592 @@ +{ + "id": "https://ror.org/01n6r0e97", + "name": "Leibniz Association", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "ARL – Academy for Territorial Development in the Leibniz Association", + "type": "Child", + "id": "https://ror.org/010b6ag76" + }, + { + "label": "Bernhard Nocht Institute for Tropical Medicine", + "type": "Child", + "id": "https://ror.org/01evwfd48" + }, + { + "label": "Leibniz-Centre for Contemporary History", + "type": "Child", + "id": "https://ror.org/005xmsp39" + }, + { + "label": "Centre for European Economic Research", + "type": "Child", + "id": "https://ror.org/02qnsw591" + }, + { + "label": "DWI – Leibniz Institute for Interactive Materials", + "type": "Child", + "id": "https://ror.org/0186h8060" + }, + { + "label": "Deutsches Museum", + "type": "Child", + "id": "https://ror.org/00a7n7g54" + }, + { + "label": "Deutsches Schiffahrtsmuseum", + "type": "Child", + "id": "https://ror.org/02hdxnq28" + }, + { + "label": "FIZ Karlsruhe – Leibniz Institute for Information Infrastructure", + "type": "Child", + "id": "https://ror.org/0387prb75" + }, + { + "label": "Ferdinand-Braun-Institut", + "type": "Child", + "id": "https://ror.org/02be22443" + }, + { + "label": "Leibniz Institute for Educational Media | Georg Eckert Institute", + "type": "Child", + "id": "https://ror.org/01hnv8x68" + }, + { + "label": "Deutsches Diabetes-Zentrum e.V.", + "type": "Child", + "id": "https://ror.org/04ews3245" + }, + { + "label": "German Institute for Adult Education", + "type": "Child", + "id": "https://ror.org/04565hy55" + }, + { + "label": "German Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/0050vmv35" + }, + { + "label": "German Institute for Global and Area Studies", + "type": "Child", + "id": "https://ror.org/00681ts17" + }, + { + "label": "DIPF | Leibniz Institute for Research and Information in Education", + "type": "Child", + "id": "https://ror.org/0327sr118" + }, + { + "label": "German Institute of Human Nutrition", + "type": "Child", + "id": "https://ror.org/05xdczy51" + }, + { + "label": "Deutsches Bergbau-Museum Bochum", + "type": "Child", + "id": "https://ror.org/03k7cjr94" + }, + { + "label": "ZBW – Leibniz-Informationszentrum Wirtschaft", + "type": "Child", + "id": "https://ror.org/03a96gc12" + }, + { + "label": "Technische Informationsbibliothek (TIB)", + "type": "Child", + "id": "https://ror.org/04aj4c181" + }, + { + "label": "German Primate Center", + "type": "Child", + "id": "https://ror.org/02f99v835" + }, + { + "label": "German Rheumatism Research Centre", + "type": "Child", + "id": "https://ror.org/00shv0x82" + }, + { + "label": "Germanisches Nationalmuseum", + "type": "Child", + "id": "https://ror.org/02fv99722" + }, + { + "label": "Halle Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/03gjpvv92" + }, + { + "label": "Hans Knöll Institute", + "type": "Child", + "id": "https://ror.org/055s37c97" + }, + { + "label": "Hans-Bredow-Institute", + "type": "Child", + "id": "https://ror.org/021eps607" + }, + { + "label": "Leibniz Institute of Virology (LIV)", + "type": "Child", + "id": "https://ror.org/02r2q1d96" + }, + { + "label": "Herder Institute", + "type": "Child", + "id": "https://ror.org/00sngv739" + }, + { + "label": "Ifo Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/045495t75" + }, + { + "label": "Innovations for High Performance Microelectronics", + "type": "Child", + "id": "https://ror.org/0489gab80" + }, + { + "label": "Institut für Zeitgeschichte München–Berlin", + "type": "Child", + "id": "https://ror.org/008pp7a77" + }, + { + "label": "Leibniz Institute of Plant Genetics and Crop Plant Research", + "type": "Child", + "id": "https://ror.org/02skbsp27" + }, + { + "label": "Kiel Institute for the World Economy", + "type": "Child", + "id": "https://ror.org/032yym934" + }, + { + "label": "Leibniz Centre for Agricultural Landscape Research", + "type": "Child", + "id": "https://ror.org/01ygyzs83" + }, + { + "label": "Leibniz Centre for Tropical Marine Research", + "type": "Child", + "id": "https://ror.org/019w00969" + }, + { + "label": "Leibniz Institute DSMZ – German Collection of Microorganisms and Cell Cultures", + "type": "Child", + "id": "https://ror.org/02tyer376" + }, + { + "label": "Leibniz Institute for Agricultural Engineering and Bioeconomy", + "type": "Child", + "id": "https://ror.org/04d62a771" + }, + { + "label": "Leibniz Institute for Analytical Sciences - ISAS", + "type": "Child", + "id": "https://ror.org/02jhqqg57" + }, + { + "label": "Leibniz Institute for Applied Geophysics", + "type": "Child", + "id": "https://ror.org/05txczf44" + }, + { + "label": "Leibniz Institute for Astrophysics Potsdam", + "type": "Child", + "id": "https://ror.org/03mrbr458" + }, + { + "label": "Leibniz Institute for Baltic Sea Research", + "type": "Child", + "id": "https://ror.org/03xh9nq73" + }, + { + "label": "Leibniz Institute for Catalysis", + "type": "Child", + "id": "https://ror.org/029hg0311" + }, + { + "label": "Leibniz Institute for Crystal Growth", + "type": "Child", + "id": "https://ror.org/037p86664" + }, + { + "label": "Leibniz Institute for East and Southeast European Studies", + "type": "Child", + "id": "https://ror.org/039s64n79" + }, + { + "label": "Leibniz Institute for Educational Trajectories", + "type": "Child", + "id": "https://ror.org/04c14rw28" + }, + { + "label": "Leibniz Institute for Financial Research SAFE", + "type": "Child", + "id": "https://ror.org/05wxywg93" + }, + { + "label": "Leibniz Institute for Jewish History and Culture – Simon Dubnow", + "type": "Child", + "id": "https://ror.org/03j1wg370" + }, + { + "label": "Leibniz-Institut für Werkstofforientierte Technologien - IWT", + "type": "Child", + "id": "https://ror.org/01xc6bj88" + }, + { + "label": "Leibniz Institute for Neurobiology", + "type": "Child", + "id": "https://ror.org/01zwmgk08" + }, + { + "label": "Leibniz Institute for Plasma Science and Technology", + "type": "Child", + "id": "https://ror.org/004hd5y14" + }, + { + "label": "Leibniz Institute for Prevention Research and Epidemiology - BIPS", + "type": "Child", + "id": "https://ror.org/02c22vc57" + }, + { + "label": "Leibniz Institute for Psychology", + "type": "Child", + "id": "https://ror.org/0165gz615" + }, + { + "label": "Leibniz Institute for Regional Geography", + "type": "Child", + "id": "https://ror.org/02wt6e634" + }, + { + "label": "Leibniz Institute for Research on Society and Space", + "type": "Child", + "id": "https://ror.org/01rkqb281" + }, + { + "label": "Leibniz Institute for Resilience Research", + "type": "Child", + "id": "https://ror.org/00q5t0010" + }, + { + "label": "Leibniz Institute for Science and Mathematics Education", + "type": "Child", + "id": "https://ror.org/008n8dd57" + }, + { + "label": "Leibniz Institute for Solid State and Materials Research", + "type": "Child", + "id": "https://ror.org/04zb59n70" + }, + { + "label": "Leibniz Institute for Tropospheric Research", + "type": "Child", + "id": "https://ror.org/03a5xsc56" + }, + { + "label": "Leibniz Institute for Zoo and Wildlife Research", + "type": "Child", + "id": "https://ror.org/05nywn832" + }, + { + "label": "Leibniz Institute for the German Language", + "type": "Child", + "id": "https://ror.org/00hvwkt50" + }, + { + "label": "Leibniz Institute for the History and Culture of Eastern Europe (GWZO)", + "type": "Child", + "id": "https://ror.org/04tjfqn96" + }, + { + "label": "GESIS - Leibniz-Institute for the Social Sciences", + "type": "Child", + "id": "https://ror.org/018afyw53" + }, + { + "label": "Leibniz Institute of Agricultural Development in Transition Economies", + "type": "Child", + "id": "https://ror.org/03hkr1v69" + }, + { + "label": "Leibniz Institute of Atmospheric Physics at the Rostock University", + "type": "Child", + "id": "https://ror.org/04enhpe73" + }, + { + "label": "Leibniz Institute of Ecological Urban and Regional Development", + "type": "Child", + "id": "https://ror.org/02t26g637" + }, + { + "label": "Leibniz Institute of Environmental Medicine", + "type": "Child", + "id": "https://ror.org/0163xqp73" + }, + { + "label": "Leibniz Institute of European History", + "type": "Child", + "id": "https://ror.org/059dyrr28" + }, + { + "label": "Leibniz Institute of Freshwater Ecology and Inland Fisheries", + "type": "Child", + "id": "https://ror.org/01nftxb06" + }, + { + "label": "Leibniz Institute of Photonic Technology", + "type": "Child", + "id": "https://ror.org/02se0t636" + }, + { + "label": "Leibniz Institute of Plant Biochemistry", + "type": "Child", + "id": "https://ror.org/01mzk5576" + }, + { + "label": "Leibniz Institute of Polymer Research", + "type": "Child", + "id": "https://ror.org/01tspta37" + }, + { + "label": "Leibniz Institute of Surface Engineering", + "type": "Child", + "id": "https://ror.org/04vx4mk32" + }, + { + "label": "Leibniz Institute of Vegetable and Ornamental Crops", + "type": "Child", + "id": "https://ror.org/01a62v145" + }, + { + "label": "Leibniz Institute on Aging - Fritz Lipmann Institute (FLI)", + "type": "Child", + "id": "https://ror.org/039a53269" + }, + { + "label": "Leibniz Research Centre for Working Environment and Human Factors", + "type": "Child", + "id": "https://ror.org/05cj29x94" + }, + { + "label": "Leibniz-Centre General Linguistics", + "type": "Child", + "id": "https://ror.org/03wz9xk91" + }, + { + "label": "Leibniz-Forschungsinstitut für Molekulare Pharmakologie", + "type": "Child", + "id": "https://ror.org/010s54n03" + }, + { + "label": "Institut für Sonnenphysik", + "type": "Child", + "id": "https://ror.org/006g31f33" + }, + { + "label": "Leibniz-Institut für Wissensmedien", + "type": "Child", + "id": "https://ror.org/03hv28176" + }, + { + "label": "Leibniz-Institute for Food Systems Biology at the Technical University of Munich", + "type": "Child", + "id": "https://ror.org/04sy7nb49" + }, + { + "label": "Leibniz-Institute for New Materials", + "type": "Child", + "id": "https://ror.org/00g656d67" + }, + { + "label": "Leibniz-Zentrum Moderner Orient", + "type": "Child", + "id": "https://ror.org/03ty9wj75" + }, + { + "label": "Leibniz-Zentrum für Literatur- und Kulturforschung", + "type": "Child", + "id": "https://ror.org/00bpta863" + }, + { + "label": "Mathematical Research Institute of Oberwolfach", + "type": "Child", + "id": "https://ror.org/001zbj766" + }, + { + "label": "Max-Born-Institute for Nonlinear Optics and Short Pulse Spectroscopy", + "type": "Child", + "id": "https://ror.org/03jbf6q27" + }, + { + "label": "Museum für Naturkunde", + "type": "Child", + "id": "https://ror.org/052d1a351" + }, + { + "label": "Paul Drude Institute for Solid State Electronics", + "type": "Child", + "id": "https://ror.org/01mk1hj86" + }, + { + "label": "Peace Research Institute Frankfurt", + "type": "Child", + "id": "https://ror.org/021k10z87" + }, + { + "label": "Potsdam Institute for Climate Impact Research", + "type": "Child", + "id": "https://ror.org/03e8s1d88" + }, + { + "label": "RWI – Leibniz Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/02pse8162" + }, + { + "label": "Research Center Borstel - Leibniz Lung Center", + "type": "Child", + "id": "https://ror.org/036ragn25" + }, + { + "label": "LEIZA - Leibniz-Zentrum für Archäologie", + "type": "Child", + "id": "https://ror.org/0483qx226" + }, + { + "label": "Schloss Dagstuhl – Leibniz Center for Informatics", + "type": "Child", + "id": "https://ror.org/00k4h2615" + }, + { + "label": "Senckenberg Society for Nature Research", + "type": "Child", + "id": "https://ror.org/00xmqmx64" + }, + { + "label": "WZB Berlin Social Science Center", + "type": "Child", + "id": "https://ror.org/03k0z2z93" + }, + { + "label": "Weierstrass Institute for Applied Analysis and Stochastics", + "type": "Child", + "id": "https://ror.org/00h1x4t21" + }, + { + "label": "Zoological Research Museum Alexander Koenig", + "type": "Child", + "id": "https://ror.org/00wz4b049" + }, + { + "label": "Leibniz Institute for Immunotherapy", + "type": "Child", + "id": "https://ror.org/00xn1pr13" + }, + { + "label": "Leibniz Institute for the Analysis of Biodiversity Change", + "type": "Child", + "id": "https://ror.org/03k5bhd83" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.leibniz-gemeinschaft.de/en/home/" + ], + "aliases": [ + "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz" + ], + "acronyms": [ + "LG" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Leibniz_Association", + "labels": [ + { + "label": "Leibniz-Gemeinschaft", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001664" + ], + "preferred": null + }, + "GRID": { + "all": "grid.413453.4", + "preferred": "grid.413453.4" + }, + "ISNI": { + "all": [ + "0000 0001 2224 3060" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q680090" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01n7dqn92.json b/v1.50/v1/01n7dqn92.json new file mode 100644 index 000000000..03e5b58a9 --- /dev/null +++ b/v1.50/v1/01n7dqn92.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/01n7dqn92", + "name": "Janáček Academy of Performing Arts", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.19522, + "lng": 16.60796, + "state": null, + "state_code": null, + "city": "Brno", + "geonames_city": { + "id": 3078610, + "city": "Brno", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.jamu.cz" + ], + "aliases": [ + "Janáček Academy of Music and Performing Arts", + "Janáčkova Akademie Múzických Umění v Brně" + ], + "acronyms": [ + "JAMU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Jan%C3%A1%C4%8Dek_Academy_of_Music_and_Performing_Arts", + "labels": [ + { + "label": "Janáčkova akademie múzických umění", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.445467.0", + "preferred": "grid.445467.0" + }, + "ISNI": { + "all": [ + "0000 0000 8703 3286" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1683103" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01n8adr31.json b/v1.50/v1/01n8adr31.json new file mode 100644 index 000000000..318bd7b9d --- /dev/null +++ b/v1.50/v1/01n8adr31.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01n8adr31", + "name": "Kotebe University of Education", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 9.02497, + "lng": 38.74689, + "state": null, + "state_code": null, + "city": "Addis Ababa", + "geonames_city": { + "id": 344979, + "city": "Addis Ababa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kue.edu.et" + ], + "aliases": [ + "Kotebe College of Teacher Education", + "Kotebe Metropolitan University" + ], + "acronyms": [ + "KMU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ethiopia", + "country_code": "ET" + }, + "external_ids": { + "GRID": { + "all": "grid.493105.a", + "preferred": "grid.493105.a" + }, + "ISNI": { + "all": [ + "0000 0000 9089 2970" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q50039998" + ], + "preferred": "Q50039998" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01naq7912.json b/v1.50/v1/01naq7912.json new file mode 100644 index 000000000..bb4b2a137 --- /dev/null +++ b/v1.50/v1/01naq7912.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/01naq7912", + "name": "Télécom Paris", + "email_address": null, + "ip_addresses": [], + "established": 1878, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Gestion Scientifique", + "type": "Child", + "id": "https://ror.org/003y0kg83" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "ParisTech", + "type": "Parent", + "id": "https://ror.org/05c2qg481" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.telecom-paris.fr" + ], + "aliases": [ + "Télécom ParisTech", + "École Nationale Supérieure des Télécommunications" + ], + "acronyms": [ + "ENST" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/T%C3%A9l%C3%A9com_ParisTech", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100020299" + ], + "preferred": "100020299" + }, + "GRID": { + "all": "grid.463717.0", + "preferred": "grid.463717.0" + }, + "ISNI": { + "all": [ + "0000 0001 2108 2779" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2311820" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01nq33970.json b/v1.50/v1/01nq33970.json new file mode 100644 index 000000000..e5f5bc352 --- /dev/null +++ b/v1.50/v1/01nq33970.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01nq33970", + "name": "Instituto Tecnológico Superior Zacatecas Norte", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "National Technological Institute of Mexico", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 23.80631, + "lng": -103.06941, + "state": null, + "state_code": null, + "city": "Río Grande", + "geonames_city": { + "id": 8583996, + "city": "Río Grande", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.itszn.edu.mx" + ], + "aliases": [ + "ITS Zacatecas Norte", + "TecNM Campus Zacatecas Norte", + "TecNM Zacatecas Norte", + "Tecnológico Nacional de México Campus Zacatecas Norte", + "Tecnológico Nacional de México de Zacatecas Norte" + ], + "acronyms": [ + "ITSZN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 2738" + ], + "preferred": "0000 0004 1770 2738" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01nrtdp55.json b/v1.50/v1/01nrtdp55.json new file mode 100644 index 000000000..2d55bd0df --- /dev/null +++ b/v1.50/v1/01nrtdp55.json @@ -0,0 +1,277 @@ +{ + "id": "https://ror.org/01nrtdp55", + "name": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centrale Marseille", + "type": "Related", + "id": "https://ror.org/040baw385" + }, + { + "label": "Institut National des Sciences Appliquées de Toulouse", + "type": "Related", + "id": "https://ror.org/01h8pf755" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Related", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "Related", + "id": "https://ror.org/03sgyqj04" + }, + { + "label": "École Nationale Supérieure de Chimie de Rennes", + "type": "Related", + "id": "https://ror.org/01h0ffh48" + }, + { + "label": "Institut National des Sciences Appliquées de Rennes", + "type": "Related", + "id": "https://ror.org/04xaa4j22" + }, + { + "label": "Université de Pau et des Pays de l'Adour", + "type": "Related", + "id": "https://ror.org/01frn9647" + }, + { + "label": "Université Paris Dauphine-PSL", + "type": "Related", + "id": "https://ror.org/052bz7812" + }, + { + "label": "Chimie ParisTech", + "type": "Related", + "id": "https://ror.org/05q65zh81" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Related", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "Muséum national d'Histoire naturelle", + "type": "Related", + "id": "https://ror.org/03wkt5x30" + }, + { + "label": "École des Ponts ParisTech", + "type": "Related", + "id": "https://ror.org/02nwvxz07" + }, + { + "label": "École Polytechnique", + "type": "Related", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Related", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Université Paris-Est Créteil", + "type": "Related", + "id": "https://ror.org/05ggc9x40" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Related", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Related", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Related", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Related", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Polytechnique de Bordeaux", + "type": "Related", + "id": "https://ror.org/054qv7y42" + }, + { + "label": "Université de Strasbourg", + "type": "Related", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Related", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Aix-Marseille Université", + "type": "Related", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Université de Lorraine", + "type": "Related", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Université de Bordeaux", + "type": "Related", + "id": "https://ror.org/057qpr032" + }, + { + "label": "Sorbonne Université", + "type": "Related", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Related", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Paris-Saclay", + "type": "Related", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "CY Cergy Paris Université", + "type": "Related", + "id": "https://ror.org/043htjv09" + }, + { + "label": "Université Côte d'Azur", + "type": "Related", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Related", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université Gustave Eiffel", + "type": "Related", + "id": "https://ror.org/03x42jk29" + }, + { + "label": "Nantes Université", + "type": "Related", + "id": "https://ror.org/03gnr7b55" + }, + { + "label": "Université de Montpellier", + "type": "Related", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Lille", + "type": "Related", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université de Rennes", + "type": "Related", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://wiki.lct.jussieu.fr/gdrnbody/" + ], + "aliases": [ + "Groupement de Recherche : Problème quantique à N corps en chimie et physique", + "Groupement de Recherche NBODY: Quantum n-body problem in chemistry and physics" + ], + "acronyms": [ + "GDR NBODY" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "GDR NBODY: Quantum n-body problem in chemistry and physics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123694952" + ], + "preferred": "Q123694952" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01p0n4966.json b/v1.50/v1/01p0n4966.json new file mode 100644 index 000000000..6fad760ad --- /dev/null +++ b/v1.50/v1/01p0n4966.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/01p0n4966", + "name": "Open Modeling Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.41477, + "lng": -111.90931, + "state": null, + "state_code": null, + "city": "Tempe", + "geonames_city": { + "id": 5317058, + "city": "Tempe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.openmodelingfoundation.org" + ], + "aliases": [ + "Open Modelling Foundation", + "The Open Modeling Foundation" + ], + "acronyms": [ + "OMF" + ], + "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.50/v1/01pn4sd83.json b/v1.50/v1/01pn4sd83.json new file mode 100644 index 000000000..7615ce49a --- /dev/null +++ b/v1.50/v1/01pn4sd83.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/01pn4sd83", + "name": "Springer Nature (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Springer Nature (Germany)", + "type": "Parent", + "id": "https://ror.org/0117jxy09" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.springernature.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/01pwmqe95.json b/v1.50/v1/01pwmqe95.json new file mode 100644 index 000000000..ffc984fba --- /dev/null +++ b/v1.50/v1/01pwmqe95.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01pwmqe95", + "name": "World Data System", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "International Science Council", + "type": "Related", + "id": "https://ror.org/034s44556" + } + ], + "addresses": [ + { + "lat": 36.01036, + "lng": -84.26964, + "state": null, + "state_code": null, + "city": "Oak Ridge", + "geonames_city": { + "id": 4646571, + "city": "Oak Ridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://worlddatasystem.org" + ], + "aliases": [ + "ISC World Data System" + ], + "acronyms": [ + "ISC WDS", + "WDS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ISC_World_Data_System", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q17102557" + ], + "preferred": "Q17102557" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01qdjtw37.json b/v1.50/v1/01qdjtw37.json new file mode 100644 index 000000000..89b855aff --- /dev/null +++ b/v1.50/v1/01qdjtw37.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01qdjtw37", + "name": "Castleton University", + "email_address": null, + "ip_addresses": [], + "established": 1787, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Vermont State University", + "type": "Successor", + "id": "https://ror.org/03m6ee736" + } + ], + "addresses": [ + { + "lat": 43.61062, + "lng": -73.17983, + "state": null, + "state_code": null, + "city": "Castleton", + "geonames_city": { + "id": 5281166, + "city": "Castleton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.csc.vsc.edu/" + ], + "aliases": [ + "Castleton State College" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Castleton_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.454534.7", + "preferred": "grid.454534.7" + }, + "ISNI": { + "all": [ + "0000 0000 8651 3106" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1049687" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01r159865.json b/v1.50/v1/01r159865.json new file mode 100644 index 000000000..154aa5d63 --- /dev/null +++ b/v1.50/v1/01r159865.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/01r159865", + "name": "\"Silk Road\" International University of Tourism and Cultural Heritage", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.65417, + "lng": 66.95972, + "state": null, + "state_code": null, + "city": "Samarkand", + "geonames_city": { + "id": 1216265, + "city": "Samarkand", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-silkroad.uz" + ], + "aliases": [ + "Silk Road International University of Tourism and Cultural Heritage", + "Международнқй университет туриза и культурного наследия \"Ўелковқй путь\"" + ], + "acronyms": [ + "SIUTCH" + ], + "status": "active", + "wikipedia_url": "https://uz.wikipedia.org/wiki/Ipak_yo%CA%BBli_turizm_va_madaniy_meros_xalqaro_universiteti", + "labels": [], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q65283573" + ], + "preferred": "Q65283573" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01rk35k63.json b/v1.50/v1/01rk35k63.json new file mode 100644 index 000000000..89aa9725e --- /dev/null +++ b/v1.50/v1/01rk35k63.json @@ -0,0 +1,192 @@ +{ + "id": "https://ror.org/01rk35k63", + "name": "Université de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Biologie, Ingénierie et Imagerie de la Greffe de Cornée", + "type": "Child", + "id": "https://ror.org/037b3he73" + }, + { + "label": "Université Claude Bernard Lyon 1", + "type": "Child", + "id": "https://ror.org/029brtt94" + }, + { + "label": "Laboratoire de Mécanique des Contacts et des Structures", + "type": "Child", + "id": "https://ror.org/05s608j53" + }, + { + "label": "Institut National des Sciences Appliquées de Lyon", + "type": "Child", + "id": "https://ror.org/050jn9y42" + }, + { + "label": "Université Jean Monnet", + "type": "Child", + "id": "https://ror.org/04yznqr36" + }, + { + "label": "Université Jean Moulin Lyon III", + "type": "Child", + "id": "https://ror.org/05b5c0584" + }, + { + "label": "Laboratoire de Biotechnologies Végétales Appliquées aux Plantes Aromatiques et Médicinales", + "type": "Child", + "id": "https://ror.org/01j6cta96" + }, + { + "label": "Université Lumière Lyon 2", + "type": "Child", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "Mines Saint-Étienne", + "type": "Child", + "id": "https://ror.org/05a1dws80" + }, + { + "label": "Pathophysiology, Diagnosis and Treatment of Bone Diseases", + "type": "Child", + "id": "https://ror.org/040zr6b15" + }, + { + "label": "Centre Européen de Résonance Magnétique Nucléaire A Très Hauts Champs", + "type": "Child", + "id": "https://ror.org/00j29pk38" + }, + { + "label": "École Centrale de Lyon", + "type": "Child", + "id": "https://ror.org/05s6rge65" + }, + { + "label": "École Nationale d'Ingénieurs de Saint-Étienne", + "type": "Child", + "id": "https://ror.org/017cfeh02" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Child", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Centre Lyonnais d'Acoustique", + "type": "Child", + "id": "https://ror.org/05tqzgp98" + }, + { + "label": "LabEx PRIMES", + "type": "Child", + "id": "https://ror.org/050qe2074" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.universite-lyon.fr" + ], + "aliases": [ + "University of Lyon System" + ], + "acronyms": [ + "UDL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Lyon", + "labels": [ + { + "label": "Lyongo unibertsitatea", + "iso639": "eu" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100011074" + ], + "preferred": "501100011074" + }, + "GRID": { + "all": "grid.25697.3f", + "preferred": "grid.25697.3f" + }, + "ISNI": { + "all": [ + "0000 0001 2172 4233" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10176" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01s6bet72.json b/v1.50/v1/01s6bet72.json new file mode 100644 index 000000000..3ca89f3e0 --- /dev/null +++ b/v1.50/v1/01s6bet72.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01s6bet72", + "name": "Laboratoire de physique des systèmes complexes", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://psc.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "PSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780834" + ], + "preferred": "Q51780834" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01sgwka45.json b/v1.50/v1/01sgwka45.json new file mode 100644 index 000000000..efdfc9761 --- /dev/null +++ b/v1.50/v1/01sgwka45.json @@ -0,0 +1,234 @@ +{ + "id": "https://ror.org/01sgwka45", + "name": "Microscopie Fonctionnelle du Vivant", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National Polytechnique de Toulouse", + "type": "Related", + "id": "https://ror.org/033p9g875" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Related", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Institut polytechnique de Grenoble", + "type": "Related", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Université Jean Monnet", + "type": "Related", + "id": "https://ror.org/04yznqr36" + }, + { + "label": "Université de Reims Champagne-Ardenne", + "type": "Related", + "id": "https://ror.org/03hypw319" + }, + { + "label": "Université de Perpignan", + "type": "Related", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Université de Haute-Alsace", + "type": "Related", + "id": "https://ror.org/04k8k6n84" + }, + { + "label": "Institut Curie", + "type": "Related", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "ESPCI Paris", + "type": "Related", + "id": "https://ror.org/03zx86w41" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Related", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Related", + "id": "https://ror.org/046b3cj80" + }, + { + "label": "Université de Rouen Normandie", + "type": "Related", + "id": "https://ror.org/03nhjew95" + }, + { + "label": "Université de Poitiers", + "type": "Related", + "id": "https://ror.org/04xhy8q59" + }, + { + "label": "École Polytechnique", + "type": "Related", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Related", + "id": "https://ror.org/00e96v939" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Related", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Related", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Related", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Strasbourg", + "type": "Related", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Related", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Université de Lorraine", + "type": "Related", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Université de Bordeaux", + "type": "Related", + "id": "https://ror.org/057qpr032" + }, + { + "label": "Sorbonne Université", + "type": "Related", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Related", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Côte d'Azur", + "type": "Related", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Related", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université de Montpellier", + "type": "Related", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Lille", + "type": "Related", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "Université de Rennes", + "type": "Related", + "id": "https://ror.org/015m7wh34" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Biophotonique Microscopie Fonctionnelle du Vivant", + "GDR Microscopie Fonctionnelle du Vivant", + "Groupement de Recherche Microscopie Fonctionnelle du Vivant" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782436" + ], + "preferred": "Q51782436" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01ss0kv69.json b/v1.50/v1/01ss0kv69.json new file mode 100644 index 000000000..eafae7619 --- /dev/null +++ b/v1.50/v1/01ss0kv69.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01ss0kv69", + "name": "Data Literacy Research Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/data-literacy" + ], + "aliases": [ + "University of Ottawa Data Literacy Research Institute", + "Université d’Ottawa Institut de recherche en littératie des données", + "uOttawa Data Literacy Research Institute" + ], + "acronyms": [ + "DLRI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut de recherche en littératie des données", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/01trny179.json b/v1.50/v1/01trny179.json new file mode 100644 index 000000000..10992fa29 --- /dev/null +++ b/v1.50/v1/01trny179.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01trny179", + "name": "Klinik und Poliklinik für Strahlentherapie und Radioonkologie", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "LMU Klinikum", + "type": "Parent", + "id": "https://ror.org/02jet3w32" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.klinikum.uni-muenchen.de/de/das_klinikum/medizinische-einrichtungen/strahlentherapie/strahlen-und-radioonkoologie/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Klinikum_Gro%C3%9Fhadern", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.491993.f", + "preferred": "grid.491993.f" + }, + "Wikidata": { + "all": [ + "Q50038731" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01v9vbn43.json b/v1.50/v1/01v9vbn43.json new file mode 100644 index 000000000..153d3b09d --- /dev/null +++ b/v1.50/v1/01v9vbn43.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/01v9vbn43", + "name": "Centre de droit privé et de sciences criminelles d'Amiens", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ceprisca.fr" + ], + "aliases": [ + "Centre on Private Law and Criminal Science" + ], + "acronyms": [ + "CEPRISCA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0244 085X" + ], + "preferred": "0000 0001 0244 085X" + }, + "Wikidata": { + "all": [ + "Q51783091" + ], + "preferred": "Q51783091" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01vbc2y23.json b/v1.50/v1/01vbc2y23.json new file mode 100644 index 000000000..fc0aa52e9 --- /dev/null +++ b/v1.50/v1/01vbc2y23.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01vbc2y23", + "name": "ACR+", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.acrplus.org" + ], + "aliases": [ + "Association des cités et régions pour le recyclage et la gestion durable des Ressources" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Association of Cities and Regionsfor sustainable Resource management", + "iso639": "en" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "GRID": { + "all": "grid.473972.c", + "preferred": "grid.473972.c" + }, + "ISNI": { + "all": [ + "0000 0001 0389 3025" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01vgyse67.json b/v1.50/v1/01vgyse67.json new file mode 100644 index 000000000..94dbf3cf2 --- /dev/null +++ b/v1.50/v1/01vgyse67.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/01vgyse67", + "name": "Univerzitet Privredna akademija u Novom Sadu", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.25167, + "lng": 19.83694, + "state": null, + "state_code": null, + "city": "Novi Sad", + "geonames_city": { + "id": 3194360, + "city": "Novi Sad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.privrednaakademija.edu.rs" + ], + "aliases": [ + "University of Economics Academy Novi Sad" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://sr.wikipedia.org/wiki/%D0%A3%D0%BD%D0%B8%D0%B2%D0%B5%D1%80%D0%B7%D0%B8%D1%82%D0%B5%D1%82_%D0%9F%D1%80%D0%B8%D0%B2%D1%80%D0%B5%D0%B4%D0%BD%D0%B0_%D0%B0%D0%BA%D0%B0%D0%B4%D0%B5%D0%BC%D0%B8%D1%98%D0%B0", + "labels": [ + { + "label": "Sveučilište Privredna akademija", + "iso639": "hr" + }, + { + "label": "University Business Academy in Novi Sad", + "iso639": "en" + }, + { + "label": "Универзитет Привредна академија", + "iso639": "sr" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4660 7609" + ], + "preferred": "0000 0004 4660 7609" + }, + "Wikidata": { + "all": [ + "Q118185578" + ], + "preferred": "Q118185578" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01vhsdf43.json b/v1.50/v1/01vhsdf43.json new file mode 100644 index 000000000..ae2195fe7 --- /dev/null +++ b/v1.50/v1/01vhsdf43.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01vhsdf43", + "name": "Brooklyn Navy Yard", + "email_address": null, + "ip_addresses": [], + "established": 1801, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://brooklynnavyyard.org/" + ], + "aliases": [ + "Brooklyn Navy Yard Development Corporation" + ], + "acronyms": [ + "BNY", + "BNYDC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Brooklyn_Navy_Yard", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446390.c", + "preferred": "grid.446390.c" + }, + "Wikidata": { + "all": [ + "Q524435" + ], + "preferred": "Q524435" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01w4gn737.json b/v1.50/v1/01w4gn737.json new file mode 100644 index 000000000..7fb211140 --- /dev/null +++ b/v1.50/v1/01w4gn737.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01w4gn737", + "name": "All India Institute of Medical Sciences, Nagpur", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.14631, + "lng": 79.08491, + "state": null, + "state_code": null, + "city": "Nagpur", + "geonames_city": { + "id": 1262180, + "city": "Nagpur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://aiimsnagpur.edu.in" + ], + "aliases": [ + "AIIMS Nagpur" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/All_India_Institute_of_Medical_Sciences%2C_Nagpur", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7537 7857" + ], + "preferred": "0000 0004 7537 7857" + }, + "Wikidata": { + "all": [ + "Q60752875" + ], + "preferred": "Q60752875" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01wtxm109.json b/v1.50/v1/01wtxm109.json new file mode 100644 index 000000000..6d7df9383 --- /dev/null +++ b/v1.50/v1/01wtxm109.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01wtxm109", + "name": "Institute of Zoology", + "email_address": null, + "ip_addresses": [], + "established": 1943, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ministry of Science and Higher Education of the Republic of Kazakhstan", + "type": "Parent", + "id": "https://ror.org/05tyne317" + } + ], + "addresses": [ + { + "lat": 43.25, + "lng": 76.91667, + "state": null, + "state_code": null, + "city": "Almaty", + "geonames_city": { + "id": 1526384, + "city": "Almaty", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://zool.kz" + ], + "aliases": [ + "Institute of Zoology RK", + "Institute of Zoology of the Republic of Kazakhstan", + "Institute of Zoology, Republic of Kazakhstan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Зоология институты", + "iso639": "kk" + } + ], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": { + "GRID": { + "all": "grid.483442.d", + "preferred": "grid.483442.d" + }, + "Wikidata": { + "all": [ + "Q12546577" + ], + "preferred": "Q12546577" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01x441g73.json b/v1.50/v1/01x441g73.json new file mode 100644 index 000000000..8456ec94e --- /dev/null +++ b/v1.50/v1/01x441g73.json @@ -0,0 +1,130 @@ +{ + "id": "https://ror.org/01x441g73", + "name": "École Centrale de Lille", + "email_address": null, + "ip_addresses": [], + "established": 1854, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire d'Électrotechnique et d'Électronique de Puissance de Lille", + "type": "Child", + "id": "https://ror.org/0186z1m53" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "Child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Unité de catalyse et de chimie du solide de Lille", + "type": "Child", + "id": "https://ror.org/04vrqzz54" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "type": "Child", + "id": "https://ror.org/04f5rw142" + }, + { + "label": "Unité de Mécanique de Lille - Joseph Boussinesq", + "type": "Child", + "id": "https://ror.org/00tt79z10" + }, + { + "label": "École Nationale Supérieure de Chimie de Lille", + "type": "Child", + "id": "https://ror.org/041yg4h55" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://centralelille.fr" + ], + "aliases": [ + "Centrale Lille", + "EC-Lille" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_centrale_de_Lille", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462145.0", + "preferred": "grid.462145.0" + }, + "ISNI": { + "all": [ + "0000 0001 2203 4461" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273461" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01xkakk17.json b/v1.50/v1/01xkakk17.json new file mode 100644 index 000000000..9631b45d3 --- /dev/null +++ b/v1.50/v1/01xkakk17.json @@ -0,0 +1,153 @@ +{ + "id": "https://ror.org/01xkakk17", + "name": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO Arc", + "type": "Child", + "id": "https://ror.org/02zzkv309" + }, + { + "label": "HES-SO Fribourg", + "type": "Child", + "id": "https://ror.org/02kkwkt79" + }, + { + "label": "HES-SO Genève", + "type": "Child", + "id": "https://ror.org/007gfwn20" + }, + { + "label": "HES-SO Valais-Wallis", + "type": "Child", + "id": "https://ror.org/03r5zec51" + }, + { + "label": "HETSL - Haute école de travail social et de la santé Lausanne", + "type": "Child", + "id": "https://ror.org/0278ff426" + }, + { + "label": "HEMU - Haute École de Musique", + "type": "Child", + "id": "https://ror.org/028xjkf45" + }, + { + "label": "EHL Hospitality Business School", + "type": "Child", + "id": "https://ror.org/02kqs4h17" + }, + { + "label": "La Manufacture - Haute école des arts de la scène", + "type": "Child", + "id": "https://ror.org/0067qp350" + }, + { + "label": "HEIG-VD", + "type": "Child", + "id": "https://ror.org/02rzr3z90" + }, + { + "label": "CHANGINS - Haute école de viticulture et œnologie", + "type": "Child", + "id": "https://ror.org/03nf8d138" + }, + { + "label": "Haute École de Santé Vaud", + "type": "Child", + "id": "https://ror.org/04j47fz63" + } + ], + "addresses": [ + { + "lat": 47.36493, + "lng": 7.34453, + "state": null, + "state_code": null, + "city": "Delémont", + "geonames_city": { + "id": 2661035, + "city": "Delémont", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hes-so.ch" + ], + "aliases": [ + "Fachhochschule Westschweiz", + "Haute École Spécialisée de Suisse Occidentale", + "University of Applied Sciences and Arts Western Switzerland" + ], + "acronyms": [ + "HES-SO" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Applied_Sciences_Western_Switzerland", + "labels": [ + { + "label": "HES-SO Haute école spécialisée de Suisse occidentale", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.5681.a", + "preferred": "grid.5681.a" + }, + "ISNI": { + "all": [ + "0000 0001 0943 1999" + ], + "preferred": "0000 0001 0943 1999" + }, + "Wikidata": { + "all": [ + "Q168003" + ], + "preferred": "Q168003" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01z25am55.json b/v1.50/v1/01z25am55.json new file mode 100644 index 000000000..6f5462c62 --- /dev/null +++ b/v1.50/v1/01z25am55.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/01z25am55", + "name": "Center for Integrated Quantum Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Institute for Solid State Research", + "type": "Parent", + "id": "https://ror.org/005bk2339" + }, + { + "label": "University of Stuttgart", + "type": "Parent", + "id": "https://ror.org/04vnq7t77" + }, + { + "label": "Universität Ulm", + "type": "Parent", + "id": "https://ror.org/032000t02" + } + ], + "addresses": [ + { + "lat": 48.78232, + "lng": 9.17702, + "state": null, + "state_code": null, + "city": "Stuttgart", + "geonames_city": { + "id": 2825297, + "city": "Stuttgart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iqst.org/" + ], + "aliases": [], + "acronyms": [ + "IQST" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100021254" + ], + "preferred": "501100021254" + }, + "GRID": { + "all": "grid.495508.5", + "preferred": "grid.495508.5" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01zkyzz15.json b/v1.50/v1/01zkyzz15.json new file mode 100644 index 000000000..844ff4041 --- /dev/null +++ b/v1.50/v1/01zkyzz15.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/01zkyzz15", + "name": "Hôpital Fernand-Widal", + "email_address": null, + "ip_addresses": [], + "established": 1858, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hopital-lariboisiere.aphp.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.414095.d", + "preferred": "grid.414095.d" + }, + "ISNI": { + "all": [ + "0000 0004 1797 9913" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1643033" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/01zsaxn18.json b/v1.50/v1/01zsaxn18.json new file mode 100644 index 000000000..c2ef799c8 --- /dev/null +++ b/v1.50/v1/01zsaxn18.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/01zsaxn18", + "name": "National Coalition of Independent Scholars", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.85092, + "lng": -72.55787, + "state": null, + "state_code": null, + "city": "Brattleboro", + "geonames_city": { + "id": 5234141, + "city": "Brattleboro", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ncis.org" + ], + "aliases": [], + "acronyms": [ + "NCIS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Coalition_of_Independent_Scholars", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q18379416" + ], + "preferred": "Q18379416" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0203k1k48.json b/v1.50/v1/0203k1k48.json new file mode 100644 index 000000000..0f8c96797 --- /dev/null +++ b/v1.50/v1/0203k1k48.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/0203k1k48", + "name": "Leonardo (Poland)", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Leonardo (Italy)", + "type": "Parent", + "id": "https://ror.org/0470vke61" + } + ], + "addresses": [ + { + "lat": 51.21898, + "lng": 22.69621, + "state": null, + "state_code": null, + "city": "Świdnik", + "geonames_city": { + "id": 757692, + "city": "Świdnik", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.leonardo.com" + ], + "aliases": [ + "Finmeccanica Poland" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "GRID": { + "all": "grid.439131.d", + "preferred": "grid.439131.d" + }, + "Wikidata": { + "all": [ + "Q30292632" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/020f58t40.json b/v1.50/v1/020f58t40.json new file mode 100644 index 000000000..23edad33c --- /dev/null +++ b/v1.50/v1/020f58t40.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/020f58t40", + "name": "Regional Environmental Center For Central Asia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.25, + "lng": 76.91667, + "state": null, + "state_code": null, + "city": "Almaty", + "geonames_city": { + "id": 1526384, + "city": "Almaty", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://carececo.org" + ], + "aliases": [ + "Regionales Umweltzentrum für Zentralasien" + ], + "acronyms": [ + "CAREC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Региональный Экологический Центр Центральной Азии", + "iso639": "ru" + } + ], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/020ws7586.json b/v1.50/v1/020ws7586.json new file mode 100644 index 000000000..2a0d3ee84 --- /dev/null +++ b/v1.50/v1/020ws7586.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/020ws7586", + "name": "Institut National des Sciences Appliquées Rouen Normandie", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Complexe de Recherche Interprofessionnel en Aérothermochimie", + "type": "Child", + "id": "https://ror.org/01k1ngp50" + }, + { + "label": "Groupe de Physique des Matériaux", + "type": "Child", + "id": "https://ror.org/03c2k2909" + }, + { + "label": "Laboratoire COBRA", + "type": "Child", + "id": "https://ror.org/04e8pda19" + }, + { + "label": "Polymères, Biopolymères, Surfaces", + "type": "Child", + "id": "https://ror.org/04hd6wf14" + }, + { + "label": "Laboratoire de Sécurité des Procédés Chimiques", + "type": "Child", + "id": "https://ror.org/00wdpp052" + }, + { + "label": "Laboratoire d'Informatique, du Traitement de l'Information et des Systèmes", + "type": "Child", + "id": "https://ror.org/01f1vfy95" + }, + { + "label": "Laboratoire de Mathématiques de l'INSA de Rouen", + "type": "Child", + "id": "https://ror.org/009rwsd77" + }, + { + "label": "Laboratoire de Mécanique de Normandie", + "type": "Child", + "id": "https://ror.org/04s945776" + }, + { + "label": "Normandie Université", + "type": "Parent", + "id": "https://ror.org/01k40cz91" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + } + ], + "addresses": [ + { + "lat": 49.37794, + "lng": 1.10467, + "state": null, + "state_code": null, + "city": "Saint-Étienne-du-Rouvray", + "geonames_city": { + "id": 2980236, + "city": "Saint-Étienne-du-Rouvray", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.insa-rouen.fr" + ], + "aliases": [ + "INSA Rouen", + "INSA Rouen Normandie", + "INSA de Rouen", + "National Institute of Applied Sciences of Rouen" + ], + "acronyms": [ + "INSA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_national_des_sciences_appliqu%C3%A9es_de_Rouen", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007850" + ], + "preferred": null + }, + "GRID": { + "all": "grid.435013.0", + "preferred": "grid.435013.0" + }, + "Wikidata": { + "all": [ + "Q1665112" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/021a2zz52.json b/v1.50/v1/021a2zz52.json new file mode 100644 index 000000000..51eeaef45 --- /dev/null +++ b/v1.50/v1/021a2zz52.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/021a2zz52", + "name": "Hong Kong Chu Hai College", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.37137, + "lng": 114.11329, + "state": null, + "state_code": null, + "city": "Tsuen Wan", + "geonames_city": { + "id": 1818209, + "city": "Tsuen Wan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chuhai.edu.hk" + ], + "aliases": [ + "Chu Hai College", + "Chu Hai College of Higher Education", + "Chu Hai University in Guangzhou", + "珠海學院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Chu_Hai_College_of_Higher_Education", + "labels": [ + { + "label": "香港珠海學院", + "iso639": "zh" + } + ], + "country": { + "country_name": "Hong Kong", + "country_code": "HK" + }, + "external_ids": { + "GRID": { + "all": "grid.461950.f", + "preferred": "grid.461950.f" + }, + "ISNI": { + "all": [ + "0000 0004 1761 5167" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5115137" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/021j0ne73.json b/v1.50/v1/021j0ne73.json new file mode 100644 index 000000000..1b53f5a22 --- /dev/null +++ b/v1.50/v1/021j0ne73.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/021j0ne73", + "name": "Council of the Haida Nation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "NorthEast Pacific Deep-sea Exploration Project", + "type": "Related", + "id": "https://ror.org/01fkg1209" + } + ], + "addresses": [ + { + "lat": 53.00403, + "lng": -132.03425, + "state": null, + "state_code": null, + "city": "Haida Gwaii", + "geonames_city": { + "id": 6115068, + "city": "Haida Gwaii", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.haidanation.ca" + ], + "aliases": [ + "X̱aaydaG̱a Waadlux̱an Naay" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Council_of_the_Haida_Nation", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9606 3794" + ], + "preferred": "0000 0000 9606 3794" + }, + "Wikidata": { + "all": [ + "Q5176541" + ], + "preferred": "Q5176541" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/022knwr79.json b/v1.50/v1/022knwr79.json new file mode 100644 index 000000000..3469e3d4c --- /dev/null +++ b/v1.50/v1/022knwr79.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/022knwr79", + "name": "Centre for Interdisciplinary Research on Citizenship and Minorities", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/circem" + ], + "aliases": [ + "University of Ottawa Centre for Interdisciplinary Research on Citizenship and Minorities", + "Université d’Ottawa Centre interdisciplinaire de recherche sur la citoyenneté et les minorités", + "uOttawa Centre for Interdisciplinary Research on Citizenship and Minorities" + ], + "acronyms": [ + "CIRCEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre interdisciplinaire de recherche sur la citoyenneté et les minorités", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/0230c9q89.json b/v1.50/v1/0230c9q89.json new file mode 100644 index 000000000..a26692457 --- /dev/null +++ b/v1.50/v1/0230c9q89.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/0230c9q89", + "name": "ESIC University", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ESIC Business & Marketing School", + "type": "Related", + "id": "https://ror.org/01db19a87" + } + ], + "addresses": [ + { + "lat": 40.43293, + "lng": -3.81338, + "state": null, + "state_code": null, + "city": "Pozuelo de Alarcón", + "geonames_city": { + "id": 3112989, + "city": "Pozuelo de Alarcón", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.esic.edu" + ], + "aliases": [ + "Escuela Superior de Ingenieros Comerciales Universidad", + "Fundación de Estudios Superiores e Investigación ESIC" + ], + "acronyms": [ + "ESIC" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/ESIC_Universidad", + "labels": [ + { + "label": "ESIC Universidad", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q20977975" + ], + "preferred": "Q20977975" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0236dma10.json b/v1.50/v1/0236dma10.json new file mode 100644 index 000000000..dd01b0888 --- /dev/null +++ b/v1.50/v1/0236dma10.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/0236dma10", + "name": "Centre on Governance", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/centre-governance" + ], + "aliases": [ + "University of Ottawa Centre on Governance", + "Université d’Ottawa Centre d’études en gouvernance", + "uOttawa Centre on Governance" + ], + "acronyms": [ + "COG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre d’études en gouvernance", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/023c4vk26.json b/v1.50/v1/023c4vk26.json new file mode 100644 index 000000000..ce0a3da74 --- /dev/null +++ b/v1.50/v1/023c4vk26.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/023c4vk26", + "name": "Global Ecology Unit CREAF-CSIC-UAB", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "Parent", + "id": "https://ror.org/03abrgd14" + } + ], + "addresses": [ + { + "lat": 41.49109, + "lng": 2.14079, + "state": null, + "state_code": null, + "city": "Cerdanyola del Vallès", + "geonames_city": { + "id": 3109402, + "city": "Cerdanyola del Vallès", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://globalecology.creaf.cat" + ], + "aliases": [], + "acronyms": [], + "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.50/v1/023km2z79.json b/v1.50/v1/023km2z79.json new file mode 100644 index 000000000..0075032b1 --- /dev/null +++ b/v1.50/v1/023km2z79.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/023km2z79", + "name": "Hôpital de Vaugirard-Gabriel Pallez", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpitaux Universitaires Paris-Ouest", + "type": "Parent", + "id": "https://ror.org/01v676463" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hopital-vaugirard.aphp.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.510344.7", + "preferred": "grid.510344.7" + }, + "ISNI": { + "all": [ + "0000 0004 1799 4996" + ], + "preferred": "0000 0004 1799 4996" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0241zpm76.json b/v1.50/v1/0241zpm76.json new file mode 100644 index 000000000..d906fad31 --- /dev/null +++ b/v1.50/v1/0241zpm76.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/0241zpm76", + "name": "Algiers 2 University", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.73225, + "lng": 3.08746, + "state": null, + "state_code": null, + "city": "Algiers", + "geonames_city": { + "id": 2507480, + "city": "Algiers", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-alger2.dz" + ], + "aliases": [ + "University of Algiers 2", + "University of Algiers II", + "Université d'Alger II" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Algiers_2_University", + "labels": [ + { + "label": "Université d'Alger 2", + "iso639": "fr" + }, + { + "label": "جامعة الجزائر 2", + "iso639": "ar" + } + ], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q29901623" + ], + "preferred": "Q29901623" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02477a553.json b/v1.50/v1/02477a553.json new file mode 100644 index 000000000..349930783 --- /dev/null +++ b/v1.50/v1/02477a553.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02477a553", + "name": "Imam Ja’afar Al-Sadiq University", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.34058, + "lng": 44.40088, + "state": null, + "state_code": null, + "city": "Baghdad", + "geonames_city": { + "id": 98182, + "city": "Baghdad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ijsu.edu.iq" + ], + "aliases": [ + "جامعة الامام جعفر الصادق" + ], + "acronyms": [ + "IJSU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q12204403" + ], + "preferred": "Q12204403" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/025ng2310.json b/v1.50/v1/025ng2310.json new file mode 100644 index 000000000..2c8a6fd53 --- /dev/null +++ b/v1.50/v1/025ng2310.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/025ng2310", + "name": "Universidad Tecnológica de la Región Carbonífera", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.96054, + "lng": -101.3108, + "state": null, + "state_code": null, + "city": "San Juan de Sabinas", + "geonames_city": { + "id": 8583627, + "city": "San Juan de Sabinas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utrc.edu.mx" + ], + "aliases": [ + "Universidad Tecnológica de la Región Carbonífera De Coahuila" + ], + "acronyms": [ + "UTRC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/025vngs54.json b/v1.50/v1/025vngs54.json new file mode 100644 index 000000000..16324b854 --- /dev/null +++ b/v1.50/v1/025vngs54.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/025vngs54", + "name": "Universitätsmedizin Greifswald", + "email_address": null, + "ip_addresses": [], + "established": 1456, + "types": [ + "Education", + "Healthcare" + ], + "relationships": [ + { + "label": "Universität Greifswald", + "type": "Related", + "id": "https://ror.org/00r1edq15" + }, + { + "label": "Dietrich Bonhoeffer Klinikum", + "type": "Related", + "id": "https://ror.org/04qa46285" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.medizin.uni-greifswald.de" + ], + "aliases": [ + "University Medicine Greifswald" + ], + "acronyms": [ + "UMG" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Greifswald_University_Hospital", + "labels": [ + { + "label": "Greifswald University Hospital", + "iso639": "en" + }, + { + "label": "Greifswald University Medicine", + "iso639": "en" + }, + { + "label": "University Medicine of Greifswald", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.412469.c", + "preferred": "grid.412469.c" + }, + "ISNI": { + "all": [ + "0000 0000 9116 8976" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2496421" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/025z3z560.json b/v1.50/v1/025z3z560.json new file mode 100644 index 000000000..b19a0f939 --- /dev/null +++ b/v1.50/v1/025z3z560.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/025z3z560", + "name": "Munich Cluster for Systems Neurology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Technical University of Munich", + "type": "Parent", + "id": "https://ror.org/02kkvpp62" + }, + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.synergy-munich.de" + ], + "aliases": [ + "SyNergy" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.452617.3", + "preferred": "grid.452617.3" + }, + "Wikidata": { + "all": [ + "Q30296303" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0278ff426.json b/v1.50/v1/0278ff426.json new file mode 100644 index 000000000..02005b08d --- /dev/null +++ b/v1.50/v1/0278ff426.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/0278ff426", + "name": "HETSL - Haute école de travail social et de la santé Lausanne", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hetsl.ch" + ], + "aliases": [ + "HES-SO Haute école de travail social et de la santé Lausanne", + "HES-SO Hochschule für Soziale Arbeit und Gesundheit Lausanne", + "HES-SO School of Social Work and Health Sciences Lausanne", + "HES-SO School of Social Work and Health Sciences Lausanne - HETSL", + "Haute école de travail social et de la santé Lausanne" + ], + "acronyms": [ + "HETSL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02794jc95.json b/v1.50/v1/02794jc95.json new file mode 100644 index 000000000..6ada8588b --- /dev/null +++ b/v1.50/v1/02794jc95.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/02794jc95", + "name": "Klinik und Poliklinik für Frauenheilkunde und Geburtshilfe", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "LMU Klinikum", + "type": "Parent", + "id": "https://ror.org/02jet3w32" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lmu-klinikum.de/frauenheilkunde-und-geburtshilfe" + ], + "aliases": [], + "acronyms": [], + "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.50/v1/027defw95.json b/v1.50/v1/027defw95.json new file mode 100644 index 000000000..21327ba52 --- /dev/null +++ b/v1.50/v1/027defw95.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/027defw95", + "name": "Centre de Compétences NanoSciences Ile-de-France", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Ministère de l’Enseignement Supérieur et de la Recherche", + "type": "Parent", + "id": "https://ror.org/03sjk9a61" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://cnanoidf.org/en/" + ], + "aliases": [], + "acronyms": [ + "C'Nano IdF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006555" + ], + "preferred": null + }, + "GRID": { + "all": "grid.468120.9", + "preferred": "grid.468120.9" + }, + "ISNI": { + "all": [ + "0000 0004 5906 5378" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30264372" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/027nn6b17.json b/v1.50/v1/027nn6b17.json new file mode 100644 index 000000000..7157f860b --- /dev/null +++ b/v1.50/v1/027nn6b17.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/027nn6b17", + "name": "Data Observatory Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Adolfo Ibáñez University", + "type": "Parent", + "id": "https://ror.org/0326knt82" + }, + { + "label": "Ministry of Economy, Development and Tourism", + "type": "Parent", + "id": "https://ror.org/00as45r68" + } + ], + "addresses": [ + { + "lat": -33.45694, + "lng": -70.64827, + "state": null, + "state_code": null, + "city": "Santiago", + "geonames_city": { + "id": 3871336, + "city": "Santiago", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dataobservatory.net" + ], + "aliases": [ + "Data Observatory", + "Observatorio de Datos" + ], + "acronyms": [ + "DO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fundación Observatorio de Datos", + "iso639": "es" + } + ], + "country": { + "country_name": "Chile", + "country_code": "CL" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q112752001" + ], + "preferred": "Q112752001" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/028xjkf45.json b/v1.50/v1/028xjkf45.json new file mode 100644 index 000000000..e737f66f8 --- /dev/null +++ b/v1.50/v1/028xjkf45.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/028xjkf45", + "name": "HEMU - Haute École de Musique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.22739, + "lng": 7.35559, + "state": null, + "state_code": null, + "city": "Sion", + "geonames_city": { + "id": 2658576, + "city": "Sion", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hemu.ch" + ], + "aliases": [ + "HES-SO HEMU - Hochschule für Musik", + "HES-SO HEMU – Haute École de Musique" + ], + "acronyms": [ + "HEMU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/029brtt94.json b/v1.50/v1/029brtt94.json new file mode 100644 index 000000000..710cfd3e0 --- /dev/null +++ b/v1.50/v1/029brtt94.json @@ -0,0 +1,457 @@ +{ + "id": "https://ror.org/029brtt94", + "name": "Université Claude Bernard Lyon 1", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Archéologie et Archéométrie", + "type": "Child", + "id": "https://ror.org/02bq56641" + }, + { + "label": "Automation and Process Engineering Laboratory", + "type": "Child", + "id": "https://ror.org/03kfjwy31" + }, + { + "label": "Bioingénierie et Dynamique Microbienne aux Interfaces Alimentaires", + "type": "Child", + "id": "https://ror.org/048yvwh14" + }, + { + "label": "Biologie Fonctionnelle Insectes et Interactions", + "type": "Child", + "id": "https://ror.org/03d1jma17" + }, + { + "label": "Biologie Tissulaire et Ingénierie Thérapeutique", + "type": "Child", + "id": "https://ror.org/04fqvqs63" + }, + { + "label": "Laboratoire de Biomécanique et Mécanique des Chocs", + "type": "Child", + "id": "https://ror.org/02awy7178" + }, + { + "label": "Laboratoire de Biométrie et Biologie Evolutive", + "type": "Child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Centre de Recherche en Cancérologie de Lyon", + "type": "Child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "Child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Institut des Sciences Cognitives Marc Jeannerod", + "type": "Child", + "id": "https://ror.org/02he5dz58" + }, + { + "label": "Centre d'Énergétique et de Thermique de Lyon", + "type": "Child", + "id": "https://ror.org/01k383v05" + }, + { + "label": "Decision & Information Sciences for Production Systems", + "type": "Child", + "id": "https://ror.org/02stf8w13" + }, + { + "label": "Entrepôts, Représentation et Ingénierie des Connaissances", + "type": "Child", + "id": "https://ror.org/009frb846" + }, + { + "label": "Equipe de recherche de Lyon en Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/04y24xj84" + }, + { + "label": "Field Observatory in Urban Hydrology", + "type": "Child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "type": "Child", + "id": "https://ror.org/042fmc481" + }, + { + "label": "Institut Lumière Matière", + "type": "Child", + "id": "https://ror.org/0323bey33" + }, + { + "label": "Institut NeuroMyoGène", + "type": "Child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut de Biologie et de Chimie des Protéines", + "type": "Child", + "id": "https://ror.org/0019x5d05" + }, + { + "label": "Institut de Chimie et Biochimie Moléculaires et Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00gj33s30" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut des Nanotechnologies de Lyon", + "type": "Child", + "id": "https://ror.org/04jsk0b74" + }, + { + "label": "Institut des Sciences Cognitives", + "type": "Child", + "id": "https://ror.org/058hz8544" + }, + { + "label": "Institut des Sciences Analytiques", + "type": "Child", + "id": "https://ror.org/03s5z5x70" + }, + { + "label": "Institut de Recherches sur la Catalyse et l'Environnement de Lyon", + "type": "Child", + "id": "https://ror.org/04fy20a51" + }, + { + "label": "Centre International de Recherche en Infectiologie", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire Ampère", + "type": "Child", + "id": "https://ror.org/04xbczw40" + }, + { + "label": "Laboratoire CarMeN", + "type": "Child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire Hydrazines et Composés Energétiques Polyazotés", + "type": "Child", + "id": "https://ror.org/01racwh88" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "Child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "Child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Chimie", + "type": "Child", + "id": "https://ror.org/02gaw1s20" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "Child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Laboratoire de Physique de l'ENS de Lyon", + "type": "Child", + "id": "https://ror.org/00w5ay796" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire de Spectrométrie Ionique et Moléculaire", + "type": "Child", + "id": "https://ror.org/04b9q5f39" + }, + { + "label": "Laboratoire de l'Informatique du Parallélisme", + "type": "Child", + "id": "https://ror.org/04msnz457" + }, + { + "label": "Laboratoire des Multimatériaux et Interfaces", + "type": "Child", + "id": "https://ror.org/03cfem402" + }, + { + "label": "Ingenierie des Materiaux polymeres", + "type": "Child", + "id": "https://ror.org/02160my55" + }, + { + "label": "Laboratoire des applications Thérapeutiques des Ultrasons", + "type": "Child", + "id": "https://ror.org/059eam965" + }, + { + "label": "Centre de Recherche en Neurosciences de Lyon", + "type": "Child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Matériaux Ingénierie et Science", + "type": "Child", + "id": "https://ror.org/01rnfhz46" + }, + { + "label": "Ecologie Microbienne Lyon", + "type": "Child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Laboratoire de Microbiologie, Adaptation et Pathogénie", + "type": "Child", + "id": "https://ror.org/03p3f6k20" + }, + { + "label": "Institut Cellule Souche et Cerveau", + "type": "Child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Structural and Molecular Basis of Infectious Systems", + "type": "Child", + "id": "https://ror.org/00jv0wy06" + }, + { + "label": "Centre Européen de Résonance Magnétique Nucléaire A Très Hauts Champs", + "type": "Child", + "id": "https://ror.org/00j29pk38" + }, + { + "label": "Virologie et Pathologies Humaines", + "type": "Child", + "id": "https://ror.org/031xg0236" + }, + { + "label": "Institut de Physique des 2 Infinis de Lyon", + "type": "Child", + "id": "https://ror.org/02avf8f85" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "Child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Laboratoire d'Ecologie des Hydrosystèmes Naturels et Anthropisés", + "type": "Child", + "id": "https://ror.org/05pny1q12" + }, + { + "label": "Parcours santé systémique", + "type": "Child", + "id": "https://ror.org/00gd5av19" + }, + { + "label": "Sciences, Société, Historicité, Éducation et Pratiques", + "type": "Child", + "id": "https://ror.org/04cre2h49" + }, + { + "label": "Nutrition, Diabète et Cerveau", + "type": "Child", + "id": "https://ror.org/052yj6c27" + }, + { + "label": "Unité Mixte de Recherche Epidémiologique et de Surveillance Transport Travail Environnement", + "type": "Child", + "id": "https://ror.org/03vmza063" + }, + { + "label": "Research on healthcare performance", + "type": "Child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "Child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "Child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "Catalyse, Polymérisation, Procédés et Matériaux", + "type": "Child", + "id": "https://ror.org/02f6tst70" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre de Recherche Astrophysique de Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Observatoire de Lyon", + "type": "Child", + "id": "https://ror.org/03j307b25" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Hôpital Lyon Sud", + "type": "Related", + "id": "https://ror.org/023xgd207" + }, + { + "label": "Hospices Civils de Lyon", + "type": "Related", + "id": "https://ror.org/01502ca60" + }, + { + "label": "Laboratoire Interuniversitaire de Biologie de la Motricité", + "type": "Related", + "id": "https://ror.org/03sc1p174" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Structure Fédérative de Recherche Santé Lyon Est", + "type": "Child", + "id": "https://ror.org/05dh21g53" + } + ], + "addresses": [ + { + "lat": 45.76601, + "lng": 4.8795, + "state": null, + "state_code": null, + "city": "Villeurbanne", + "geonames_city": { + "id": 2968254, + "city": "Villeurbanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-lyon1.fr/home-759942.kjsp" + ], + "aliases": [ + "Université Lyon 1" + ], + "acronyms": [ + "UCBL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Claude_Bernard_University_Lyon_1", + "labels": [ + { + "label": "Claude Bernard University Lyon 1", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006687" + ], + "preferred": null + }, + "GRID": { + "all": "grid.7849.2", + "preferred": "grid.7849.2" + }, + "ISNI": { + "all": [ + "0000 0001 2150 7757" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4032" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02am8se85.json b/v1.50/v1/02am8se85.json new file mode 100644 index 000000000..8f65ab5f8 --- /dev/null +++ b/v1.50/v1/02am8se85.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02am8se85", + "name": "Klinik für Schweine", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Zentrum für Klinische Tiermedizin", + "type": "Parent", + "id": "https://ror.org/02qqvpd39" + } + ], + "addresses": [ + { + "lat": 48.25, + "lng": 11.56667, + "state": null, + "state_code": null, + "city": "Oberschleißheim", + "geonames_city": { + "id": 2859147, + "city": "Oberschleißheim", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.schweine.vetmed.uni-muenchen.de/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.506439.d", + "preferred": "grid.506439.d" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02arxvh93.json b/v1.50/v1/02arxvh93.json new file mode 100644 index 000000000..8576d322c --- /dev/null +++ b/v1.50/v1/02arxvh93.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02arxvh93", + "name": "READ Global", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.readglobal.org/" + ], + "aliases": [ + "READ Global", + "Rural Education and Development (READ) Global", + "Rural Education and Development Global" + ], + "acronyms": [ + "READ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/READ_Global", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.475624.6", + "preferred": "grid.475624.6" + }, + "Wikidata": { + "all": [ + "Q17086739" + ], + "preferred": "Q17086739" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02at6c277.json b/v1.50/v1/02at6c277.json new file mode 100644 index 000000000..f429694ea --- /dev/null +++ b/v1.50/v1/02at6c277.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02at6c277", + "name": "Simplification des soins chez les patients complexes", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sspc.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "SSPC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02bfwt286.json b/v1.50/v1/02bfwt286.json new file mode 100644 index 000000000..eb11a93bf --- /dev/null +++ b/v1.50/v1/02bfwt286.json @@ -0,0 +1,168 @@ +{ + "id": "https://ror.org/02bfwt286", + "name": "Monash University", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ARC Centre of Excellence for Integrative Brain Function", + "type": "Child", + "id": "https://ror.org/02yasb727" + }, + { + "label": "ARC Centre of Excellence in Advanced Molecular Imaging", + "type": "Child", + "id": "https://ror.org/051e7s436" + }, + { + "label": "Australian Regenerative Medicine Institute", + "type": "Child", + "id": "https://ror.org/02qa5kg76" + }, + { + "label": "IITB-Monash Research Academy", + "type": "Child", + "id": "https://ror.org/02r3nf527" + }, + { + "label": "National Trauma Research Institute", + "type": "Child", + "id": "https://ror.org/048t93218" + }, + { + "label": "ANZCA Clinical Trials Network", + "type": "Child", + "id": "https://ror.org/0555x2b41" + }, + { + "label": "ARC Centre of Excellence for Plant Success in Nature and Agriculture", + "type": "Child", + "id": "https://ror.org/058xdtn86" + }, + { + "label": "Box Hill Hospital", + "type": "Related", + "id": "https://ror.org/0484pjq71" + }, + { + "label": "Burnet Institute", + "type": "Related", + "id": "https://ror.org/05ktbsm52" + }, + { + "label": "Frankston Hospital", + "type": "Related", + "id": "https://ror.org/051b68e86" + }, + { + "label": "Jessie McPherson Private Hospital", + "type": "Related", + "id": "https://ror.org/00aeqjw83" + }, + { + "label": "Monash Medical Centre", + "type": "Related", + "id": "https://ror.org/036s9kg65" + }, + { + "label": "The Alfred Hospital", + "type": "Related", + "id": "https://ror.org/01wddqe20" + }, + { + "label": "Monash University European Research Foundation ETS", + "type": "Child", + "id": "https://ror.org/00jgk9c55" + } + ], + "addresses": [ + { + "lat": -37.814, + "lng": 144.96332, + "state": null, + "state_code": null, + "city": "Melbourne", + "geonames_city": { + "id": 2158177, + "city": "Melbourne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.monash.edu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Monash_University", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001779", + "501100001144", + "501100007917", + "501100000991", + "501100001198", + "501100006532" + ], + "preferred": "501100001779" + }, + "GRID": { + "all": "grid.1002.3", + "preferred": "grid.1002.3" + }, + "ISNI": { + "all": [ + "0000 0004 1936 7857" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q598841" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02bhgkk43.json b/v1.50/v1/02bhgkk43.json new file mode 100644 index 000000000..b49ef36a9 --- /dev/null +++ b/v1.50/v1/02bhgkk43.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02bhgkk43", + "name": "Universidad Centroamericana José Simeón Cañas", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centro de Recursos para el Aprendizaje y la Investigación P. Florentino Idoate S.J.", + "type": "Child", + "id": "https://ror.org/033z59547" + } + ], + "addresses": [ + { + "lat": 13.68935, + "lng": -89.18718, + "state": null, + "state_code": null, + "city": "San Salvador", + "geonames_city": { + "id": 3583361, + "city": "San Salvador", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uca.edu.sv/" + ], + "aliases": [], + "acronyms": [ + "UCA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Central_American_University", + "labels": [ + { + "label": "Central American University José Simeón Cañas", + "iso639": "en" + } + ], + "country": { + "country_name": "El Salvador", + "country_code": "SV" + }, + "external_ids": { + "GRID": { + "all": "grid.460701.4", + "preferred": "grid.460701.4" + }, + "ISNI": { + "all": [ + "0000 0001 2184 8981" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1814702" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02bn7hs48.json b/v1.50/v1/02bn7hs48.json new file mode 100644 index 000000000..6e0da2477 --- /dev/null +++ b/v1.50/v1/02bn7hs48.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02bn7hs48", + "name": "Eco-procédés, optimisation et aide à la décision", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-picardie.fr/eproad/" + ], + "aliases": [], + "acronyms": [ + "EPROAD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02c2jyf78.json b/v1.50/v1/02c2jyf78.json new file mode 100644 index 000000000..89d17131b --- /dev/null +++ b/v1.50/v1/02c2jyf78.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02c2jyf78", + "name": "Research Council of Zimbabwe", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -17.82772, + "lng": 31.05337, + "state": null, + "state_code": null, + "city": "Harare", + "geonames_city": { + "id": 890299, + "city": "Harare", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rcz.ac.zw" + ], + "aliases": [], + "acronyms": [ + "RCZ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Zimbabwe", + "country_code": "ZW" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02ck5yd04.json b/v1.50/v1/02ck5yd04.json new file mode 100644 index 000000000..3d9715b17 --- /dev/null +++ b/v1.50/v1/02ck5yd04.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02ck5yd04", + "name": "University of Ghardaia", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.49094, + "lng": 3.67347, + "state": null, + "state_code": null, + "city": "Ghardaïa", + "geonames_city": { + "id": 2496049, + "city": "Ghardaïa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-ghardaia.edu.dz" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "جامعة غرداية", + "iso639": "ar" + } + ], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": { + "GRID": { + "all": "grid.442442.0", + "preferred": "grid.442442.0" + }, + "ISNI": { + "all": [ + "0000 0004 1786 1341" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30294226" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02cp04407.json b/v1.50/v1/02cp04407.json new file mode 100644 index 000000000..ed9760a03 --- /dev/null +++ b/v1.50/v1/02cp04407.json @@ -0,0 +1,168 @@ +{ + "id": "https://ror.org/02cp04407", + "name": "Université de Limoges", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Recherche Interdisciplinaire en Histoire, Histoire de l’art et Musicologie", + "type": "Child", + "id": "https://ror.org/05vjwz959" + }, + { + "label": "Conditions Extrêmes et Matériaux Haute Température et Irradiation", + "type": "Child", + "id": "https://ror.org/02zs48f23" + }, + { + "label": "Contrôle de la Réponse Immune B et Lymphoproliférations", + "type": "Child", + "id": "https://ror.org/02zh2vx86" + }, + { + "label": "Institut d’Epidémiologie Neurologique et de Neurologie Tropicale", + "type": "Child", + "id": "https://ror.org/0529q4s79" + }, + { + "label": "Laboratoire de Géographie Physique et Environnementale", + "type": "Child", + "id": "https://ror.org/00e4pqm50" + }, + { + "label": "Institut de Recherche sur les Céramiques", + "type": "Child", + "id": "https://ror.org/044qpwz88" + }, + { + "label": "XLIM", + "type": "Child", + "id": "https://ror.org/00f7srh09" + }, + { + "label": "Groupe de Recherches Sociologiques sur les sociétés Contemporaines", + "type": "Child", + "id": "https://ror.org/01h67hk15" + }, + { + "label": "Pharmacologie et Transplantation", + "type": "Child", + "id": "https://ror.org/013dngs07" + }, + { + "label": "Anti-infectieux : supports moléculaires des résistances et innovations thérapeutiques", + "type": "Child", + "id": "https://ror.org/0458p8g61" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "Child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "Child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 45.83362, + "lng": 1.24759, + "state": null, + "state_code": null, + "city": "Limoges", + "geonames_city": { + "id": 2998286, + "city": "Limoges", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unilim.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Limoges", + "labels": [ + { + "label": "University of Limoges", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022107" + ], + "preferred": "501100022107" + }, + "GRID": { + "all": "grid.9966.0", + "preferred": "grid.9966.0" + }, + "ISNI": { + "all": [ + "0000 0001 2165 4861" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2661290" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02dcqy320.json b/v1.50/v1/02dcqy320.json new file mode 100644 index 000000000..f853ffc3e --- /dev/null +++ b/v1.50/v1/02dcqy320.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/02dcqy320", + "name": "Hôpital Robert-Debré", + "email_address": null, + "ip_addresses": [], + "established": 1901, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "ERN ITHACA", + "type": "Related", + "id": "https://ror.org/03va0yq34" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://robertdebre.aphp.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.413235.2", + "preferred": "grid.413235.2" + }, + "ISNI": { + "all": [ + "0000 0004 1937 0589" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02dd25k08.json b/v1.50/v1/02dd25k08.json new file mode 100644 index 000000000..5e09f5980 --- /dev/null +++ b/v1.50/v1/02dd25k08.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/02dd25k08", + "name": "Laboratoire de Chimie et Biologie des Métaux", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cbm-lab.fr" + ], + "aliases": [], + "acronyms": [ + "LCBM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462960.f", + "preferred": "grid.462960.f" + }, + "ISNI": { + "all": [ + "0000 0004 0384 0427" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261613" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02dd6pb80.json b/v1.50/v1/02dd6pb80.json new file mode 100644 index 000000000..0f0acef54 --- /dev/null +++ b/v1.50/v1/02dd6pb80.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02dd6pb80", + "name": "ISPA - Instituto Universitário", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ISPA - Instituto Universitário", + "type": "Successor", + "id": "https://ror.org/019yg0716" + } + ], + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ispa.pt" + ], + "aliases": [], + "acronyms": [ + "ISPA" + ], + "status": "withdrawn", + "wikipedia_url": "https://en.wikipedia.org/wiki/ISPA_%E2%80%93_Instituto_Universit%C3%A1rio", + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02dn7x778.json b/v1.50/v1/02dn7x778.json new file mode 100644 index 000000000..4befdc8d1 --- /dev/null +++ b/v1.50/v1/02dn7x778.json @@ -0,0 +1,208 @@ +{ + "id": "https://ror.org/02dn7x778", + "name": "Université Bourgogne Franche-Comté", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire de Mathématiques de Besançon", + "type": "Child", + "id": "https://ror.org/04nrhwg12" + }, + { + "label": "Laboratoire de recherches Intégratives en Neurosciences et psychologie Cognitive", + "type": "Child", + "id": "https://ror.org/020cm6143" + }, + { + "label": "Centre de Recherches Interdisciplinaires et Transculturelles", + "type": "Child", + "id": "https://ror.org/0511qfq70" + }, + { + "label": "Centre de recherches juridiques de l'Université de Franche-Comté", + "type": "Child", + "id": "https://ror.org/016cx2z26" + }, + { + "label": "Département de Recherche en Ingénierie des Véhicules pour l'Environnement", + "type": "Child", + "id": "https://ror.org/05yj2y557" + }, + { + "label": "Centre Lucien Febvre", + "type": "Child", + "id": "https://ror.org/0432d2f64" + }, + { + "label": "Logiques de l'agir", + "type": "Child", + "id": "https://ror.org/02rgyc156" + }, + { + "label": "Institut des Sciences et Techniques de l'Antiquité", + "type": "Child", + "id": "https://ror.org/00gy9rx06" + }, + { + "label": "Centre d'Investigation Clinique de Besançon", + "type": "Child", + "id": "https://ror.org/04nk3ny21" + }, + { + "label": "CIMEOS - Communications, Médiations, Organisations, Savoirs", + "type": "Child", + "id": "https://ror.org/01ssxvy26" + }, + { + "label": "Centre Pluridisciplinaire Textes et Cultures", + "type": "Child", + "id": "https://ror.org/02n7ax847" + }, + { + "label": "Centre de Recherche et d'Etude en Droit et Science Politique", + "type": "Child", + "id": "https://ror.org/017k05f91" + }, + { + "label": "Centre Interlangues", + "type": "Child", + "id": "https://ror.org/00j5eb891" + }, + { + "label": "Laboratoire Culture, Sport, Santé, Société", + "type": "Child", + "id": "https://ror.org/0538k6829" + }, + { + "label": "Edition, Littératures, Langages, Informatique, Arts, Didactiques, Discours", + "type": "Child", + "id": "https://ror.org/03x895t47" + }, + { + "label": "Institut de recherche sur l'éducation", + "type": "Child", + "id": "https://ror.org/019qdtz78" + }, + { + "label": "Laboratoire d'Immunologie et d'Immunothérapie des Cancers", + "type": "Child", + "id": "https://ror.org/01ds1xe75" + }, + { + "label": "Laboratoire Bio-peroxIL", + "type": "Child", + "id": "https://ror.org/03w0a9c02" + }, + { + "label": "Centre de REcherche En Gestion des Organisations", + "type": "Child", + "id": "https://ror.org/0292fgv83" + }, + { + "label": "Laboratoire d'économie de Dijon", + "type": "Child", + "id": "https://ror.org/02c01r047" + }, + { + "label": "Laboratoire de psychologie: dynamiques relationnelles et processus identitaires", + "type": "Child", + "id": "https://ror.org/053wack18" + }, + { + "label": "Physiopathologie et Epidémiologie Cérébro-Cardiovasculaires", + "type": "Child", + "id": "https://ror.org/0250h3a52" + }, + { + "label": "Vision pour la Robotique", + "type": "Child", + "id": "https://ror.org/02v6phz91" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + } + ], + "addresses": [ + { + "lat": 47.24878, + "lng": 6.01815, + "state": null, + "state_code": null, + "city": "Besançon", + "geonames_city": { + "id": 3033123, + "city": "Besançon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ubfc.fr/" + ], + "aliases": [], + "acronyms": [ + "UBFC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.493090.7", + "preferred": "grid.493090.7" + }, + "ISNI": { + "all": [ + "0000 0004 4910 6615" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02e9m1r40.json b/v1.50/v1/02e9m1r40.json new file mode 100644 index 000000000..495485a5f --- /dev/null +++ b/v1.50/v1/02e9m1r40.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02e9m1r40", + "name": "Hôpital Corentin-Celton", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpitaux Universitaires Paris-Ouest", + "type": "Parent", + "id": "https://ror.org/01v676463" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.82104, + "lng": 2.27718, + "state": null, + "state_code": null, + "city": "Issy-les-Moulineaux", + "geonames_city": { + "id": 3012649, + "city": "Issy-les-Moulineaux", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hopital-corentincelton.aphp.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.413885.3", + "preferred": "grid.413885.3" + }, + "ISNI": { + "all": [ + "0000 0000 9731 7223" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3145150" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02en5vm52.json b/v1.50/v1/02en5vm52.json new file mode 100644 index 000000000..7a27dccb3 --- /dev/null +++ b/v1.50/v1/02en5vm52.json @@ -0,0 +1,1131 @@ +{ + "id": "https://ror.org/02en5vm52", + "name": "Sorbonne Université", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Adaptation et Diversité en Milieu Marin", + "type": "Child", + "id": "https://ror.org/0293jn610" + }, + { + "label": "Laboratoire d'Ecogéochimie des Environnements Benthiques", + "type": "Child", + "id": "https://ror.org/049xh5y45" + }, + { + "label": "Biologie Intégrative des Organismes Marins", + "type": "Child", + "id": "https://ror.org/03wg93s13" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "Child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Centre André-Chastel", + "type": "Child", + "id": "https://ror.org/03jqm0b89" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre d’étude de la langue et des littératures françaises", + "type": "Child", + "id": "https://ror.org/059v8sw69" + }, + { + "label": "Centre de Recherche Saint-Antoine", + "type": "Child", + "id": "https://ror.org/03wxndv36" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "Child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de recherches sur la pensée antique", + "type": "Child", + "id": "https://ror.org/02d19mr69" + }, + { + "label": "Centre d'Écologie et des Sciences de la Conservation", + "type": "Child", + "id": "https://ror.org/00sad8321" + }, + { + "label": "Chimie de la Matière Condensée de Paris", + "type": "Child", + "id": "https://ror.org/028ta1f94" + }, + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "Child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Biologie évolutive et écologie des algues", + "type": "Child", + "id": "https://ror.org/051k70002" + }, + { + "label": "Géoazur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Groupe d'Étude des Méthodes de l'Analyse Sociologique de la Sorbonne", + "type": "Child", + "id": "https://ror.org/00kzsxx38" + }, + { + "label": "Institut Henri Poincaré", + "type": "Child", + "id": "https://ror.org/05dfxeg46" + }, + { + "label": "Institut Jean Le Rond d'Alembert", + "type": "Child", + "id": "https://ror.org/043we9s22" + }, + { + "label": "Institut Parisien de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04qwfwm19" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "Child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "Child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "Child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "Child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institut du Cerveau", + "type": "Child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "Child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "Child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institut de minéralogie, de physique des matériaux et de cosmochimie", + "type": "Child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "Institut de Myologie", + "type": "Child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "Child", + "id": "https://ror.org/01h14ww21" + }, + { + "label": "Laboratoire Interfaces et Systèmes Électrochimiques", + "type": "Child", + "id": "https://ror.org/00jb20a14" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "Child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Perrin", + "type": "Child", + "id": "https://ror.org/01ghvgs84" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "Child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Biodiversité et Biotechnologies Microbiennes", + "type": "Child", + "id": "https://ror.org/039p01270" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "Child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire de Biologie du Développement de Villefranche-sur-Mer", + "type": "Child", + "id": "https://ror.org/04hke8425" + }, + { + "label": "Laboratoire de Chimie Physique - Matière et Rayonnement", + "type": "Child", + "id": "https://ror.org/03z20vp15" + }, + { + "label": "Laboratoire de Chimie Théorique", + "type": "Child", + "id": "https://ror.org/00tmb7y09" + }, + { + "label": "Laboratoire de chimie des processus biologiques", + "type": "Child", + "id": "https://ror.org/02fv42846" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Physique Nucléaire et de Hautes Énergies", + "type": "Child", + "id": "https://ror.org/01hg8p552" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "Child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Laboratoire de Recherche en Informatique de Paris 6", + "type": "Child", + "id": "https://ror.org/05krcen59" + }, + { + "label": "Laboratoire de Réactivité de Surface", + "type": "Child", + "id": "https://ror.org/04vthwx70" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "Child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire d’Archéologie Moléculaire et Structurale", + "type": "Child", + "id": "https://ror.org/02ctqqq48" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratoire de Biologie Computationnelle et Quantitative", + "type": "Child", + "id": "https://ror.org/00pcqj134" + }, + { + "label": "Laboratoire de Biologie Intégrative des Modèles Marins", + "type": "Child", + "id": "https://ror.org/001c8pb03" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "Child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Laboratoire d'Océanographie Microbienne", + "type": "Child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratoire de Biologie Moléculaire et Cellulaire des Eucaryotes", + "type": "Child", + "id": "https://ror.org/05mx55f96" + }, + { + "label": "Laboratoire de Physique et d’Étude des Matériaux", + "type": "Child", + "id": "https://ror.org/00a72jq18" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratoire de Physique Théorique de la Matière Condensée", + "type": "Child", + "id": "https://ror.org/04zaaa143" + }, + { + "label": "Laboratoire de Physique Théorique et Hautes Energies", + "type": "Child", + "id": "https://ror.org/02mph9k76" + }, + { + "label": "Institut Langevin", + "type": "Child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Milieux environnementaux, transferts et interactions dans les hydrosystèmes et les sols", + "type": "Child", + "id": "https://ror.org/0229z0679" + }, + { + "label": "Molécule aux Nanos-objets : Réactivité, Interactions et Spectroscopies", + "type": "Child", + "id": "https://ror.org/02jkg8m11" + }, + { + "label": "Dynamique du noyau", + "type": "Child", + "id": "https://ror.org/04team556" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Orient & Méditerranée", + "type": "Child", + "id": "https://ror.org/051gvfp41" + }, + { + "label": "Institut des NanoSciences de Paris", + "type": "Child", + "id": "https://ror.org/03t2f0a12" + }, + { + "label": "Physique des Cellules et Cancers", + "type": "Child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "PHENIX laboratory", + "type": "Child", + "id": "https://ror.org/046htjf88" + }, + { + "label": "Biologie du chloroplaste et perception de la lumière chez les micro-algues", + "type": "Child", + "id": "https://ror.org/001r32c80" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "Child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "Child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "Child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "Child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Station Biologique de Roscoff", + "type": "Child", + "id": "https://ror.org/03s0pzj56" + }, + { + "label": "Sciences et Ingénierie de la Matière Molle", + "type": "Child", + "id": "https://ror.org/03f0z1g15" + }, + { + "label": "Chimie du Solide et Energie", + "type": "Child", + "id": "https://ror.org/03s877y45" + }, + { + "label": "Sorbonne - Identités, Relations Internationales et Civilisations de l’Europe", + "type": "Child", + "id": "https://ror.org/03ae8w006" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "Child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Systèmes de Référence Temps-Espace", + "type": "Child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Unité de Modélisation Mathématique et Informatique des Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/053kxkj53" + }, + { + "label": "Laboratoire d’Océanographie de Villefranche", + "type": "Child", + "id": "https://ror.org/05r5y6641" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "Child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre de Recherche sur l'Amérique Pré-hispanique", + "type": "Child", + "id": "https://ror.org/000nfmp17" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "Child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "Child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "Child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "Child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "Child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "Child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Institut de la Vision", + "type": "Child", + "id": "https://ror.org/000zhpw23" + }, + { + "label": "École des Neurosciences de Paris", + "type": "Child", + "id": "https://ror.org/05re0sm29" + }, + { + "label": "Laboratoire atmosphères, milieux, observations spatiales", + "type": "Child", + "id": "https://ror.org/05ppf7q77" + }, + { + "label": "ITER", + "type": "Child", + "id": "https://ror.org/01d7n9638" + }, + { + "label": "UMI MajuLab", + "type": "Child", + "id": "https://ror.org/027jrtw17" + }, + { + "label": "Laboratoire de Physique de l'ENS", + "type": "Child", + "id": "https://ror.org/03a26mh11" + }, + { + "label": "Institut Pierre-Simon Laplace", + "type": "Child", + "id": "https://ror.org/02haar591" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "Child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Autonomia", + "type": "Child", + "id": "https://ror.org/01ms54x07" + }, + { + "label": "Edition, Interprétation et traduction des textes anciens", + "type": "Child", + "id": "https://ror.org/015cf0x85" + }, + { + "label": "Centre de Recherches Interdisciplinaires sur les Mondes Ibéro-américains Contemporains", + "type": "Child", + "id": "https://ror.org/006jv0w93" + }, + { + "label": "Centre de Recherches sur l’Extrême Orient de Paris – Sorbonne", + "type": "Child", + "id": "https://ror.org/04vwsc311" + }, + { + "label": "Centre d'histoire du XIXe siècle", + "type": "Child", + "id": "https://ror.org/04hrxxd90" + }, + { + "label": "Métaphysique, histoires, transformations, actualités", + "type": "Child", + "id": "https://ror.org/04sv5r538" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "Child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "Child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "Fédération de recherche en sciences mathématiques de Paris centre", + "type": "Child", + "id": "https://ror.org/02jwwk370" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "Child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "Child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Troubles psychiatriques et développement", + "type": "Child", + "id": "https://ror.org/04nc8v966" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Centre Expert en Endométriose", + "type": "Child", + "id": "https://ror.org/00s0m4j44" + }, + { + "label": "Robotique et Innovation Chirurgicale", + "type": "Child", + "id": "https://ror.org/04shr9s31" + }, + { + "label": "Handicap moteur et cognitif et réadaptation", + "type": "Child", + "id": "https://ror.org/011gr5n11" + }, + { + "label": "Analyse, Recherche, Développement et Evaluation en Endourologie et Lithiase Urinaire", + "type": "Child", + "id": "https://ror.org/03f1mtj27" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Groupe de recherche interdisciplinaire sur les processus d'information et de communication", + "type": "Child", + "id": "https://ror.org/04p8das24" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "Child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Centre de linguistique en Sorbonne", + "type": "Child", + "id": "https://ror.org/02zzf0m94" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Réanimation et soins intensifs du patient en Insuffisance respiratoire aigüe", + "type": "Child", + "id": "https://ror.org/02qvhgb32" + }, + { + "label": "Méthodes et Outils pour les Sciences Participatives", + "type": "Child", + "id": "https://ror.org/05kytrf83" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "Child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Laboratoire Médiations", + "type": "Child", + "id": "https://ror.org/04tb23024" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Transplantation et Thérapies Innovantes de la Cornée", + "type": "Child", + "id": "https://ror.org/02g0s3c07" + }, + { + "label": "Biomarqueurs d’urgence et de réanimation", + "type": "Child", + "id": "https://ror.org/01jnrzt83" + }, + { + "label": "Groupe de REcherche en Cardio Oncologie", + "type": "Child", + "id": "https://ror.org/00b4yme84" + }, + { + "label": "Rome et ses renaissances", + "type": "Child", + "id": "https://ror.org/011hja523" + }, + { + "label": "CERES - Centre d'expérimentation en méthodes numériques pour les recherches en sciences humaines et sociales", + "type": "Child", + "id": "https://ror.org/00fyy4d45" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "Child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Institut des Sciences du Calcul et des Données", + "type": "Child", + "id": "https://ror.org/00y16rm59" + }, + { + "label": "Complications Cardiovasculaires et Métaboliques chez les patients vivant avec le VIH", + "type": "Child", + "id": "https://ror.org/00njafa27" + }, + { + "label": "Groupe de Recherche Clinique en Neuro-urologie", + "type": "Child", + "id": "https://ror.org/05gzcy376" + }, + { + "label": "Alzheimer Precision Medicine", + "type": "Child", + "id": "https://ror.org/058qr4y65" + }, + { + "label": "Onco-Urologie Prédictive", + "type": "Child", + "id": "https://ror.org/0138eq662" + }, + { + "label": "Histoire et Archéologie Maritimes", + "type": "Child", + "id": "https://ror.org/011mac819" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "Child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "Child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénierie des Connaissances en e-Santé", + "type": "Child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Enzymologie de l'ARN", + "type": "Child", + "id": "https://ror.org/05n2mnn68" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "Child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "Child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Histoire et Dynamique des Espaces Anglophones: du Réel au Virtuel", + "type": "Child", + "id": "https://ror.org/03vkkad71" + }, + { + "label": "Étude et Édition de Textes Médiévaux", + "type": "Child", + "id": "https://ror.org/037ptrs19" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Représentations et Identités. Espaces Germanique, Nordique et Néerlandophone", + "type": "Child", + "id": "https://ror.org/053sj3y70" + }, + { + "label": "Centre d'Études Médiévales Anglaises", + "type": "Child", + "id": "https://ror.org/01acw3598" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "Drépanocytose : groupe de Recherche de Paris – Sorbonne Université", + "type": "Child", + "id": "https://ror.org/015tg7676" + }, + { + "label": "IMAGES : La médecine de la femme et de l’enfant assistée par l’image", + "type": "Child", + "id": "https://ror.org/00x677422" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "Child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "Civilisations et littératures d'Espagne et d'Amérique du Moyen-Age aux Lumières", + "type": "Child", + "id": "https://ror.org/04xy2by41" + }, + { + "label": "Sens, Texte, Informatique, Histoire", + "type": "Child", + "id": "https://ror.org/02q5emw59" + }, + { + "label": "Centre de Recherche en Littérature Comparée", + "type": "Child", + "id": "https://ror.org/015th7t48" + }, + { + "label": "Équipe Littérature et Culture italiennes", + "type": "Child", + "id": "https://ror.org/05ntgv723" + }, + { + "label": "Groupe d’Étude sur l’HyperTension Intra Crânienne idiopathique", + "type": "Child", + "id": "https://ror.org/013s2ts57" + }, + { + "label": "Groupe de recherche clinique en anesthésie réanimation médecine périopératoire", + "type": "Child", + "id": "https://ror.org/02zn90974" + }, + { + "label": "Groupe de recherche clinique – Tumeurs Thyroïdiennes", + "type": "Child", + "id": "https://ror.org/04n40rk24" + }, + { + "label": "THERANOSCAN : Biomarqueurs Théranostiques des Cancers Bronchiques Non à Petites Cellules", + "type": "Child", + "id": "https://ror.org/02qe0rk31" + }, + { + "label": "Groupe de recherche clinique Amylose AA Sorbonne Université", + "type": "Child", + "id": "https://ror.org/01zpxh127" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "Child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "NeurON : Interface Neuro-machine", + "type": "Child", + "id": "https://ror.org/00a8q8z31" + }, + { + "label": "PremUP", + "type": "Child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "Child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Voix Anglophones : Littérature et Esthétique", + "type": "Child", + "id": "https://ror.org/02m26fm05" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "Child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Remodelage et Reparation du Tissu Renal", + "type": "Child", + "id": "https://ror.org/01sra1980" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "Child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Child", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Related", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "European Marine Biological Resource Centre", + "type": "Related", + "id": "https://ror.org/0038zss60" + }, + { + "label": "Hôpital Armand-Trousseau", + "type": "Related", + "id": "https://ror.org/00yfbr841" + }, + { + "label": "Hôpital Tenon", + "type": "Related", + "id": "https://ror.org/05h5v3c50" + }, + { + "label": "Hôpital Charles-Foix", + "type": "Related", + "id": "https://ror.org/04v3xcy66" + }, + { + "label": "Hôpital Rothschild", + "type": "Related", + "id": "https://ror.org/009kb8w74" + }, + { + "label": "Hôpital Saint-Antoine", + "type": "Related", + "id": "https://ror.org/01875pg84" + }, + { + "label": "Pitié-Salpêtrière Hospital", + "type": "Related", + "id": "https://ror.org/02mh9a093" + }, + { + "label": "Hôpital de la Roche-Guyon", + "type": "Related", + "id": "https://ror.org/02t1zz428" + }, + { + "label": "Centre hospitalier national d'ophtalmologie des Quinze-Vingts", + "type": "Related", + "id": "https://ror.org/024v1ns19" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sorbonne-universite.fr" + ], + "aliases": [ + "Pierre and Marie Curie University", + "University of Paris-Sorbonne" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Sorbonne_University", + "labels": [ + { + "label": "Sorbonne University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005737", + "501100019125", + "100012946" + ], + "preferred": "501100019125" + }, + "GRID": { + "all": "grid.462844.8", + "preferred": "grid.462844.8" + }, + "ISNI": { + "all": [ + "0000 0001 2308 1657" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q41497113", + "Q3491150", + "Q546118", + "Q1144549" + ], + "preferred": "Q41497113" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02epwtt47.json b/v1.50/v1/02epwtt47.json new file mode 100644 index 000000000..82c112163 --- /dev/null +++ b/v1.50/v1/02epwtt47.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/02epwtt47", + "name": "OLS", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.50925, + "lng": 0.08416, + "state": null, + "state_code": null, + "city": "Wimblington", + "geonames_city": { + "id": 2633864, + "city": "Wimblington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://openlifesci.org" + ], + "aliases": [ + "Open Life Science", + "Open Life Science Limited" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q37530266" + ], + "preferred": "Q37530266" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02feahw73.json b/v1.50/v1/02feahw73.json new file mode 100644 index 000000000..e723f9e8e --- /dev/null +++ b/v1.50/v1/02feahw73.json @@ -0,0 +1,1966 @@ +{ + "id": "https://ror.org/02feahw73", + "name": "Centre National de la Recherche Scientifique", + "email_address": null, + "ip_addresses": [], + "established": 1939, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre de Recherche en Cancérologie de Toulouse", + "type": "Child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Centre Max Weber", + "type": "Child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "Child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "Child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Child", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Direction Générale Déléguée à la Science", + "type": "Child", + "id": "https://ror.org/043nepn57" + }, + { + "label": "Délégation Bretagne et Pays de la Loire", + "type": "Child", + "id": "https://ror.org/02t220m45" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "Child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Image and Pervasive Access Laboratory", + "type": "Child", + "id": "https://ror.org/00m3mb357" + }, + { + "label": "Institut Clément Ader", + "type": "Child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Institut Français d'Études Anatoliennes", + "type": "Child", + "id": "https://ror.org/0331qyx19" + }, + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Child", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Child", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "Child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Chimie", + "type": "Child", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Institut de Physique", + "type": "Child", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "Child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Child", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Child", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Child", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "CNRS Ingénierie", + "type": "Child", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Child", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institut de Mécanique et d'Ingénierie", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Aménagement Économie Transports", + "type": "Child", + "id": "https://ror.org/01yw97595" + }, + { + "label": "Laboratoire d'Annecy-le-Vieux de Physique Théorique", + "type": "Child", + "id": "https://ror.org/010hz2d37" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "Child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "Child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratoire Souterrain à Bas Bruit", + "type": "Child", + "id": "https://ror.org/05gscwg02" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Réseau sur le Stockage Electrochimique de l'énergie", + "type": "Child", + "id": "https://ror.org/00190j002" + }, + { + "label": "Centre CEA de Saclay", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Synchrotron soleil", + "type": "Child", + "id": "https://ror.org/01ydb3330" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "Child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Histoire Judiciaire", + "type": "Child", + "id": "https://ror.org/00g32ep81" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "Child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "AERIS/ICARE Data and Services Center", + "type": "Child", + "id": "https://ror.org/013z99a51" + }, + { + "label": "Institut de Recherche sur les Composants logiciels et matériels pour l'Information et la Communication Avancée", + "type": "Child", + "id": "https://ror.org/010nk4c68" + }, + { + "label": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "type": "Child", + "id": "https://ror.org/04f5rw142" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Arènes: politique, santé publique, environnement, médias", + "type": "Child", + "id": "https://ror.org/00m4rxj18" + }, + { + "label": "Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "Institut de génétique et de développement de Rennes", + "type": "Child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "Child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "Child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "Child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Ethologie animale et humaine", + "type": "Child", + "id": "https://ror.org/02evk6c51" + }, + { + "label": "Laboratoire d'études de genre et de sexualité", + "type": "Child", + "id": "https://ror.org/005w2mm89" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "Child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Institut de l'Ouest : Droit et Europe", + "type": "Child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Maison des Sciences de l'Homme Mondes", + "type": "Child", + "id": "https://ror.org/00wx1mx58" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Centre Émile Durkheim", + "type": "Child", + "id": "https://ror.org/01k7w0p97" + }, + { + "label": "Laboratoire de Mathématiques de Besançon", + "type": "Child", + "id": "https://ror.org/04nrhwg12" + }, + { + "label": "Laboratoire architecture anthropologie", + "type": "Child", + "id": "https://ror.org/05wy2cj05" + }, + { + "label": "Biologie du Développement et Cellules Souches", + "type": "Child", + "id": "https://ror.org/02af93v77" + }, + { + "label": "Centre de recherche sur les Inégalités Sociales", + "type": "Child", + "id": "https://ror.org/02a4c5q78" + }, + { + "label": "Centre International de Rencontres Mathématiques", + "type": "Child", + "id": "https://ror.org/04e3d6y73" + }, + { + "label": "Musée Curie", + "type": "Child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Architecture, Milieu, Paysage", + "type": "Child", + "id": "https://ror.org/048289s82" + }, + { + "label": "Géographie de l'environnement", + "type": "Child", + "id": "https://ror.org/01p4g5p84" + }, + { + "label": "Geo-Ocean", + "type": "Child", + "id": "https://ror.org/007dbrz84" + }, + { + "label": "Centre d'Études et de Recherches sur le Développement International", + "type": "Child", + "id": "https://ror.org/01hg13988" + }, + { + "label": "Laboratoire d'Acoustique de l'Université du Mans", + "type": "Child", + "id": "https://ror.org/001aevc89" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "Child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Laboratoire de Médiévistique Occidentale de Paris", + "type": "Child", + "id": "https://ror.org/00z0af360" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "Child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Laboratoire d'Ecologie des Hydrosystèmes Naturels et Anthropisés", + "type": "Child", + "id": "https://ror.org/05pny1q12" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Centre de droit comparé du travail et de la sécurité sociale", + "type": "Child", + "id": "https://ror.org/041ctrc20" + }, + { + "label": "Enzyme and Cell Engineering - Molecular Recognition and Biocatalysis", + "type": "Child", + "id": "https://ror.org/001tmq304" + }, + { + "label": "Sciences pour l'Environnement", + "type": "Child", + "id": "https://ror.org/016nwev19" + }, + { + "label": "Laboratoire Morphodynamique Continentale et Côtière", + "type": "Child", + "id": "https://ror.org/05k1a6w82" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "Child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Langues et Civilisations à Tradition Orale", + "type": "Child", + "id": "https://ror.org/025esck76" + }, + { + "label": "Laboratoire de Mathématiques Nicolas Oresme", + "type": "Child", + "id": "https://ror.org/03jm2hc44" + }, + { + "label": "Centre d'études sociologiques et politiques Raymond-Aron", + "type": "Child", + "id": "https://ror.org/04aq4ab28" + }, + { + "label": "Laboratoire Caribéen de Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00srrcb42" + }, + { + "label": "Laboratoire de Physique Théorique et Modélisation", + "type": "Child", + "id": "https://ror.org/05nhcdk38" + }, + { + "label": "Institut des sciences juridique et philosophique de la Sorbonne", + "type": "Child", + "id": "https://ror.org/0041am420" + }, + { + "label": "RIATE - Centre pour l'analyse spatiale et la géovisualisation", + "type": "Child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "France, Amériques, Espagne, Sociétés, Pouvoirs, Acteurs", + "type": "Child", + "id": "https://ror.org/04daj8721" + }, + { + "label": "Laboratoire des Fluides Complexes et leurs Réservoirs", + "type": "Child", + "id": "https://ror.org/03dg47v24" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "Child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Maison des Sciences de l'Homme et de la Société Sud-Est", + "type": "Child", + "id": "https://ror.org/02ygac863" + }, + { + "label": "Maison Asie Pacifique", + "type": "Child", + "id": "https://ror.org/03e2syc87" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "Child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "Center for Mathematical Modeling", + "type": "Child", + "id": "https://ror.org/00wz2vk41" + }, + { + "label": "Service des Avions Français Instrumentés pour la Recherche en Environnement", + "type": "Child", + "id": "https://ror.org/02qdgbw61" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "Child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "Child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Archéologie des Sociétés Méditerranéennes", + "type": "Child", + "id": "https://ror.org/04n9eyw42" + }, + { + "label": "Laboratoire de Microbiologie Fondamentale et Pathogénicité", + "type": "Child", + "id": "https://ror.org/03e4tg734" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Praxiling", + "type": "Child", + "id": "https://ror.org/03ym2w748" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "Child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Centre d'études franco-russe de Moscou", + "type": "Child", + "id": "https://ror.org/00zmdjj30" + }, + { + "label": "Centre d'Études et de Documentation Économiques, Juridiques et sociales", + "type": "Child", + "id": "https://ror.org/008bf9746" + }, + { + "label": "Maison Française d'Oxford", + "type": "Child", + "id": "https://ror.org/022psxk94" + }, + { + "label": "Centre de recherche français à Jérusalem", + "type": "Child", + "id": "https://ror.org/04ahb2147" + }, + { + "label": "Centre d'études Alexandrines", + "type": "Child", + "id": "https://ror.org/02km70587" + }, + { + "label": "Institut français du Proche-Orient", + "type": "Child", + "id": "https://ror.org/02t9nm044" + }, + { + "label": "Institut français d'études sur l'Asie centrale", + "type": "Child", + "id": "https://ror.org/026t9b832" + }, + { + "label": "Lieux, Identités, eSpaces, Activités", + "type": "Child", + "id": "https://ror.org/00nbhg292" + }, + { + "label": "Ecology and Conservation Science for Sustainable Seas", + "type": "Child", + "id": "https://ror.org/021zcv334" + }, + { + "label": "AMURE - Centre de droit et d'économie de la mer", + "type": "Child", + "id": "https://ror.org/00ss0a232" + }, + { + "label": "Maison méditerranéenne des sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/01ejp3f31" + }, + { + "label": "Centre Franco-Égyptien d’Étude des Temples de Karnak", + "type": "Child", + "id": "https://ror.org/0502mw613" + }, + { + "label": "Centre de Recherche sur la Conservation", + "type": "Child", + "id": "https://ror.org/05q3pap39" + }, + { + "label": "Institut d'Histoire du Droit Jean Gaudemet", + "type": "Child", + "id": "https://ror.org/04j9ztm78" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "Child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "Child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Savoirs et Mondes Indiens", + "type": "Child", + "id": "https://ror.org/04gxn9h90" + }, + { + "label": "Laboratoire de Mathématiques de Reims", + "type": "Child", + "id": "https://ror.org/01xkfnd03" + }, + { + "label": "Centre Michel de Boüard", + "type": "Child", + "id": "https://ror.org/03rnz7p05" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "Child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "Child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Sommeil, Addiction et Neuropsychiatrie", + "type": "Child", + "id": "https://ror.org/04k8wt746" + }, + { + "label": "Plateforme d'Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/05r25mc45" + }, + { + "label": "TBM-Core", + "type": "Child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Génomique évolutive, modélisation et santé", + "type": "Child", + "id": "https://ror.org/026ddbz68" + }, + { + "label": "Takuvik Joint International Laboratory", + "type": "Child", + "id": "https://ror.org/04bzgtz06" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Bordeaux Imaging Center", + "type": "Child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "Child", + "id": "https://ror.org/034bena10" + }, + { + "label": "CEPN - Centre d'Economie de l'Université Paris Nord", + "type": "Child", + "id": "https://ror.org/03k32n603" + }, + { + "label": "Chimie, Structures et Propriétés de Biomatériaux et d'Agents Thérapeutiques", + "type": "Child", + "id": "https://ror.org/0343fpq57" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "Child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Laboratoire écologie, évolution, interactions des systèmes amazoniens", + "type": "Child", + "id": "https://ror.org/00gj7r351" + }, + { + "label": "STELLA MARE", + "type": "Child", + "id": "https://ror.org/040r8ry56" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "Child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Bases de données sur la Biodiversité, Ecologie, Environnement et Sociétés", + "type": "Child", + "id": "https://ror.org/034gk7456" + }, + { + "label": "DMEX Centre for X-ray Imaging", + "type": "Child", + "id": "https://ror.org/0213f8g15" + }, + { + "label": "Unité en Sciences Biologiques et Biotechnologies de Nantes", + "type": "Child", + "id": "https://ror.org/05ef4v550" + }, + { + "label": "Matrice Extracellulaire et Dynamique Cellulaire MEDyC", + "type": "Child", + "id": "https://ror.org/017p6sq53" + }, + { + "label": "Institut de Recherche sur la Biologie de l'Insecte UMR 7261", + "type": "Child", + "id": "https://ror.org/04rp2mn26" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "Child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "Laboratoire Ligérien de Linguistique", + "type": "Child", + "id": "https://ror.org/04s6f1186" + }, + { + "label": "Droit International Comparé et Européen", + "type": "Child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Lasers, Plasmas et Procédés Photoniques", + "type": "Child", + "id": "https://ror.org/01qfjp710" + }, + { + "label": "Centre universitaire de recherches sur l'Action Publique et le Politique Épistémologie & Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00rxdng69" + }, + { + "label": "Centre Gilles-Gaston Granger", + "type": "Child", + "id": "https://ror.org/00axatv03" + }, + { + "label": "Irasia Recherche", + "type": "Child", + "id": "https://ror.org/03bcyhr16" + }, + { + "label": "Institut de Recherches et d'Etudes sur les Mondes Arabes et Musulmans", + "type": "Child", + "id": "https://ror.org/037f3ga09" + }, + { + "label": "Laboratoire d'Archéologie Médiévale et Moderne en Méditerranée", + "type": "Child", + "id": "https://ror.org/05tb4mb78" + }, + { + "label": "Institut d'ethnologie méditerranéenne européenne et comparative", + "type": "Child", + "id": "https://ror.org/050gdsq06" + }, + { + "label": "Temps, espaces, langages, Europe méridionale, Méditerranée", + "type": "Child", + "id": "https://ror.org/010bhn875" + }, + { + "label": "Matériaux Divisés, Interfaces, Réactivité, Electrochimie", + "type": "Child", + "id": "https://ror.org/00m587853" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Macromoléculaires", + "type": "Child", + "id": "https://ror.org/02hwc1z56" + }, + { + "label": "Centre d'études supérieures de civilisation médiévale", + "type": "Child", + "id": "https://ror.org/005hw9085" + }, + { + "label": "Laboratoire de Mathématiques et Applications", + "type": "Child", + "id": "https://ror.org/02p2rk609" + }, + { + "label": "Laboratoire Interdisciplinaire de Recherches \"Sociétés, Sensibilités, Soin\"", + "type": "Child", + "id": "https://ror.org/01rb31945" + }, + { + "label": "Centre d’études en sciences sociales du religieux", + "type": "Child", + "id": "https://ror.org/01kysxr05" + }, + { + "label": "Trajectoires. De la sédentarisation à l’État", + "type": "Child", + "id": "https://ror.org/03wdx6c48" + }, + { + "label": "Structure et Dynamique des Langues", + "type": "Child", + "id": "https://ror.org/019df2r84" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "Child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Laboratoire Information Génomique et Structurale", + "type": "Child", + "id": "https://ror.org/05v0fms67" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Chimie Biologique pour le Vivant", + "type": "Child", + "id": "https://ror.org/03cjyj977" + }, + { + "label": "Biologie Moléculaire Structurale et Processus Infectieux", + "type": "Child", + "id": "https://ror.org/009b91528" + }, + { + "label": "Centre de Recherche d'Albi en génie des Procédés, des SOlides Divisés, de l'Énergie et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03cxnrt47" + }, + { + "label": "Acquisition et Analyse de Données pour l'Histoire naturelle", + "type": "Child", + "id": "https://ror.org/05qhnf349" + }, + { + "label": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "Child", + "id": "https://ror.org/00t7axd27" + }, + { + "label": "Chronobiotron", + "type": "Child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Observatoire pour la Conservation de la Mégafaune Marine", + "type": "Child", + "id": "https://ror.org/04wbg2z51" + }, + { + "label": "Architecture Histoire Technique Territoire Patrimoine", + "type": "Child", + "id": "https://ror.org/05j8sgr10" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "Child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Maison des Sciences de l'Homme Val de Loire", + "type": "Child", + "id": "https://ror.org/03v4gsj38" + }, + { + "label": "GeoRessources", + "type": "Child", + "id": "https://ror.org/04mq2px33" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Observatoire Terre et environnement de Lorraine", + "type": "Child", + "id": "https://ror.org/02cyw3861" + }, + { + "label": "Huma-Num", + "type": "Child", + "id": "https://ror.org/04ces3204" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "Child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Laboratoire de Mathématiques et Modélisation d'Évry", + "type": "Child", + "id": "https://ror.org/03jca6281" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie Biologie Innovation", + "type": "Child", + "id": "https://ror.org/04bgzse17" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "Child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "Child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "Child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "Child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "CALMIP", + "type": "Child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Plateforme de chimie biologique intégrative de Strasbourg", + "type": "Child", + "id": "https://ror.org/052pqt102" + }, + { + "label": "LINK - Laboratory for Innovative Key Materials and Structures", + "type": "Child", + "id": "https://ror.org/03qt6f440" + }, + { + "label": "OpenEdition Center", + "type": "Child", + "id": "https://ror.org/02aja8v82" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Laboratoire de Chimie-Physique Macromoléculaire", + "type": "Child", + "id": "https://ror.org/0371yc337" + }, + { + "label": "Centre pour les humanités numériques et l'histoire de la justice", + "type": "Child", + "id": "https://ror.org/02yvha224" + }, + { + "label": "AlgoSolis", + "type": "Child", + "id": "https://ror.org/05481me13" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "Child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Passages", + "type": "Child", + "id": "https://ror.org/00s40r567" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "Child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "Child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Climat, Environnement, Couplages et Incertitudes", + "type": "Child", + "id": "https://ror.org/05t8ct211" + }, + { + "label": "Laboratoire de Linguistique de Nantes", + "type": "Child", + "id": "https://ror.org/0009eec40" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "Child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "Child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "Child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "Child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "ScanMAT", + "type": "Child", + "id": "https://ror.org/04fsxy317" + }, + { + "label": "PatriNat", + "type": "Child", + "id": "https://ror.org/037eda396" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "Child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Institut Denis Poisson", + "type": "Child", + "id": "https://ror.org/05djhd259" + }, + { + "label": "Temps, Mondes, Sociétés", + "type": "Child", + "id": "https://ror.org/01nhp3z94" + }, + { + "label": "Laboratoire Lorrain de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/020azc393" + }, + { + "label": "Laboratoire de Physique et Chimie Théoriques", + "type": "Child", + "id": "https://ror.org/02atkd403" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Vision pour la Robotique", + "type": "Child", + "id": "https://ror.org/02v6phz91" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Epigenetics, Data, Politics", + "type": "Child", + "id": "https://ror.org/00rg8bd79" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Centre Neurosciences intégratives et Cognition", + "type": "Child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "Child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "Child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire interdisciplinaire d’études sur les réflexivités - Fonds Yan Thomas", + "type": "Child", + "id": "https://ror.org/046dap961" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "Child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Light, nanomaterials, nanotechnologies", + "type": "Child", + "id": "https://ror.org/01waxag60" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "Child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Centre de recherche sur le monde iranien", + "type": "Child", + "id": "https://ror.org/0302qeq32" + }, + { + "label": "RESTORE", + "type": "Child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "Child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "Child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "Child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Transitions Energétiques et Environnementales", + "type": "Child", + "id": "https://ror.org/04cms1b08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "Child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "Child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Bordeaux Sciences Économiques", + "type": "Child", + "id": "https://ror.org/014vz2d20" + }, + { + "label": "Microscopies, imageries et ressources analytiques en région Centre-Val de Loire", + "type": "Child", + "id": "https://ror.org/050x42563" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "Child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Catalyse, Polymérisation, Procédés et Matériaux", + "type": "Child", + "id": "https://ror.org/02f6tst70" + }, + { + "label": "Fédération de recherche Matière et Interactions", + "type": "Child", + "id": "https://ror.org/02wq1s711" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "Child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "Child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "Child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "Child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "Child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "Child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "Child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "Child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "Child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "Child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "Child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "Child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Archéologie, Terre, Histoire, Sociétés", + "type": "Child", + "id": "https://ror.org/011hdpx94" + }, + { + "label": "Institut de Chimie Moléculaire de l'Université de Bourgogne", + "type": "Child", + "id": "https://ror.org/011ygpb73" + }, + { + "label": "Institut Chevreul", + "type": "Child", + "id": "https://ror.org/048k52v18" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "Child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "Laboratoire Ondes et Milieux Complexes", + "type": "Child", + "id": "https://ror.org/02sb3b652" + }, + { + "label": "Centre de Nanosciences et de Nanotechnologies", + "type": "Child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Département de mathématiques et applications", + "type": "Child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "Child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "Child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Intégrité du génome, ARN et cancer", + "type": "Child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "Child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "Child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "Child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "Child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "Child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut de Biologie Intégrative de la Cellule", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "Child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "Child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "Child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "Child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratoire de Physique Théorique et Modèles Statistiques", + "type": "Child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "Child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "Child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "Child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratoire Leprince-Ringuet", + "type": "Child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "Laboratoire de Recherche sur la Croissance Cellulaire, la Réparation et la Régénération Tissulaires", + "type": "Child", + "id": "https://ror.org/041dsyz88" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Laboratoire interdisciplinaire en études culturelles", + "type": "Child", + "id": "https://ror.org/03820wq39" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "Child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Centre de Recherche en Économie et Management", + "type": "Child", + "id": "https://ror.org/0047rmf80" + }, + { + "label": "Institut de Physique de Rennes", + "type": "Child", + "id": "https://ror.org/022b0h879" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "Child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Pacte", + "type": "Child", + "id": "https://ror.org/026j45x50" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "Child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Institut Carnot PolyNat", + "type": "Child", + "id": "https://ror.org/047p7mf25" + }, + { + "label": "Centre de Recherche et de Documentation sur l'Océanie (CREDO)", + "type": "Child", + "id": "https://ror.org/00jj62164" + }, + { + "label": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "type": "Child", + "id": "https://ror.org/005yfhm28" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Laboratoire Interdisciplinaire de Physique", + "type": "Child", + "id": "https://ror.org/023n9q531" + }, + { + "label": "Centre d'études sud-asiatiques et himalayennes", + "type": "Child", + "id": "https://ror.org/039bex249" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "Child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Techniques, Territoires et Sociétés", + "type": "Child", + "id": "https://ror.org/05fc1hn07" + }, + { + "label": "Laboratoire Navier", + "type": "Child", + "id": "https://ror.org/029hkd614" + }, + { + "label": "Imagerie et Stratégies Thérapeutiques pour les Cancers et Tissus cérébraux", + "type": "Child", + "id": "https://ror.org/04b9vs620" + }, + { + "label": "Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scène", + "type": "Child", + "id": "https://ror.org/055q9jt53" + }, + { + "label": "Laboratory of Pathogens and Host Immunity", + "type": "Child", + "id": "https://ror.org/00rt27171" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Child", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Maison des sciences de l'homme Lorraine", + "type": "Child", + "id": "https://ror.org/01petg633" + }, + { + "label": "Institut de Biologie Moléculaire et Cellulaire", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Centre d'Anthropobiologie et de Génomique de Toulouse", + "type": "Child", + "id": "https://ror.org/045p8nc06" + }, + { + "label": "Haute Technologie Animale Grenobloise", + "type": "Child", + "id": "https://ror.org/03vyv3y87" + }, + { + "label": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "type": "Child", + "id": "https://ror.org/0535cbn94" + }, + { + "label": "Institut Universitaire Européen de la Mer", + "type": "Child", + "id": "https://ror.org/04pfr1b11" + }, + { + "label": "Indo-French Centre for Applied Mathematics", + "type": "Child", + "id": "https://ror.org/05rnj8444" + }, + { + "label": "Institut d'Études Scientifiques de Cargèse", + "type": "Child", + "id": "https://ror.org/044mrv955" + }, + { + "label": "Groupe de Recherche en Management", + "type": "Child", + "id": "https://ror.org/023cs7p87" + }, + { + "label": "Centre de Radiofréquences, Optique et Micro-nanoélectronique des Alpes", + "type": "Child", + "id": "https://ror.org/050rs7291" + }, + { + "label": "UMR Géographie-cités", + "type": "Related", + "id": "https://ror.org/05yqfzf35" + }, + { + "label": "Campus Condorcet", + "type": "Related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "Institut Montpelliérain Alexander Grothendieck", + "type": "Related", + "id": "https://ror.org/044kxby82" + }, + { + "label": "Modèles et simulations pour l'Architecture et le Patrimoine", + "type": "Child", + "id": "https://ror.org/050a1gn71" + }, + { + "label": "Centre de Recherche sur la Biodiversité et l'Environnement", + "type": "Child", + "id": "https://ror.org/03v2c3v44" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Structure Fédérative de Recherche Santé Lyon Est", + "type": "Child", + "id": "https://ror.org/05dh21g53" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CNRS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Centre_national_de_la_recherche_scientifique", + "labels": [ + { + "label": "French National Centre for Scientific Research", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004794" + ], + "preferred": null + }, + "GRID": { + "all": "grid.4444.0", + "preferred": "grid.4444.0" + }, + "ISNI": { + "all": [ + "0000 0001 2259 7504" + ], + "preferred": "0000 0001 2259 7504" + }, + "Wikidata": { + "all": [ + "Q280413", + "Q39411466" + ], + "preferred": "Q280413" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02fsd1928.json b/v1.50/v1/02fsd1928.json new file mode 100644 index 000000000..f5889385c --- /dev/null +++ b/v1.50/v1/02fsd1928.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/02fsd1928", + "name": "Centre Scientifique et Technique du Bâtiment", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ministère de la Transition écologique et de la Cohésion des territoires", + "type": "Parent", + "id": "https://ror.org/00g8rx069" + } + ], + "addresses": [ + { + "lat": 48.85, + "lng": 2.6, + "state": null, + "state_code": null, + "city": "Champs-sur-Marne", + "geonames_city": { + "id": 3027014, + "city": "Champs-sur-Marne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cstb.fr" + ], + "aliases": [], + "acronyms": [ + "CSTB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Scientific_and_Technical_Centre_for_Building", + "labels": [ + { + "label": "Scientific and Technical Center for Building", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100012518" + ], + "preferred": "501100012518" + }, + "GRID": { + "all": "grid.423793.8", + "preferred": "grid.423793.8" + }, + "ISNI": { + "all": [ + "0000 0001 2153 8043" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2946043" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02g07ds81.json b/v1.50/v1/02g07ds81.json new file mode 100644 index 000000000..d529e9bc1 --- /dev/null +++ b/v1.50/v1/02g07ds81.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02g07ds81", + "name": "University of Duhok", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.86709, + "lng": 42.98845, + "state": null, + "state_code": null, + "city": "Dihok", + "geonames_city": { + "id": 96994, + "city": "Dihok", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uod.ac" + ], + "aliases": [], + "acronyms": [ + "UoD" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Duhok", + "labels": [ + { + "label": "جامعة دهوك", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "FundRef": { + "all": [ + "100019133" + ], + "preferred": "100019133" + }, + "GRID": { + "all": "grid.413095.a", + "preferred": "grid.413095.a" + }, + "ISNI": { + "all": [ + "0000 0001 1895 1777" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3666468" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02g1jdz81.json b/v1.50/v1/02g1jdz81.json new file mode 100644 index 000000000..08fa4bbdc --- /dev/null +++ b/v1.50/v1/02g1jdz81.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/02g1jdz81", + "name": "Al Hikma University", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 15.35472, + "lng": 44.20667, + "state": null, + "state_code": null, + "city": "Sanaa", + "geonames_city": { + "id": 71137, + "city": "Sanaa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hikma.edu.ye" + ], + "aliases": [ + "Hikma University", + "جامعة الحكمة" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Yemen", + "country_code": "YE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02gm62a96.json b/v1.50/v1/02gm62a96.json new file mode 100644 index 000000000..68d3d176f --- /dev/null +++ b/v1.50/v1/02gm62a96.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02gm62a96", + "name": "Prague Advanced Technology and Research Innovation Center, a.s.", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://patric.expert" + ], + "aliases": [ + "PATRIC, a.s.", + "Prague Advanced Technology and Research Innovation Center" + ], + "acronyms": [ + "PATRIC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q121621471" + ], + "preferred": "Q121621471" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02gndyy51.json b/v1.50/v1/02gndyy51.json new file mode 100644 index 000000000..49e41f0f1 --- /dev/null +++ b/v1.50/v1/02gndyy51.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/02gndyy51", + "name": "Czech Botanical Society", + "email_address": null, + "ip_addresses": [], + "established": 1912, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + } + ], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://botanospol.cz" + ], + "aliases": [ + "Česká Botanická Společnost" + ], + "acronyms": [ + "CBS", + "ČBS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Česká botanická společnost", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.447757.2", + "preferred": "grid.447757.2" + }, + "ISNI": { + "all": [ + "0000 0001 1017 546X" + ], + "preferred": "0000 0001 1017 546X" + }, + "Wikidata": { + "all": [ + "Q30258440" + ], + "preferred": "Q30258440" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02gsv2389.json b/v1.50/v1/02gsv2389.json new file mode 100644 index 000000000..a43e35d76 --- /dev/null +++ b/v1.50/v1/02gsv2389.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02gsv2389", + "name": "Nexus for Quantum Technologies Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/quantum-institute" + ], + "aliases": [ + "University of Ottawa Nexus for Quantum Technologies Institute", + "Université d’Ottawa Institut Nexus de technologies quantiques", + "uOttawa Nexus for Quantum Technologies Institute" + ], + "acronyms": [ + "NEXQT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Nexus de technologies quantiques", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02gzkyr25.json b/v1.50/v1/02gzkyr25.json new file mode 100644 index 000000000..d5b04608e --- /dev/null +++ b/v1.50/v1/02gzkyr25.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02gzkyr25", + "name": "Research Centre on the Future of Cities", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/future-cities" + ], + "aliases": [ + "University of Ottawa Research Centre on the Future of Cities", + "Université d’Ottawa Centre de recherche sur le futur des villes", + "uOttawa Research Centre on the Future of Cities" + ], + "acronyms": [ + "RCFC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de recherche sur le futur des villes", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02hfps373.json b/v1.50/v1/02hfps373.json new file mode 100644 index 000000000..2d4da2dcf --- /dev/null +++ b/v1.50/v1/02hfps373.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02hfps373", + "name": "Medicines360", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://medicines360.org" + ], + "aliases": [ + "Medicines 360", + "Meds360" + ], + "acronyms": [ + "M360" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6008 5544" + ], + "preferred": "0000 0004 6008 5544" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02ht85j57.json b/v1.50/v1/02ht85j57.json new file mode 100644 index 000000000..456890a00 --- /dev/null +++ b/v1.50/v1/02ht85j57.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02ht85j57", + "name": "Textes, représentations, archéologie, autorité et mémoire de l'antiquité à la renaissance", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://trame.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "TRAME" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51779978" + ], + "preferred": "Q51779978" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02hxb7v96.json b/v1.50/v1/02hxb7v96.json new file mode 100644 index 000000000..7c1b54dda --- /dev/null +++ b/v1.50/v1/02hxb7v96.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02hxb7v96", + "name": "Society for Ecological Restoration", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ser.org" + ], + "aliases": [], + "acronyms": [ + "SER" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Society_for_Ecological_Restoration", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9946 1309" + ], + "preferred": "0000 0000 9946 1309" + }, + "Wikidata": { + "all": [ + "Q42026765" + ], + "preferred": "Q42026765" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02j78kr76.json b/v1.50/v1/02j78kr76.json new file mode 100644 index 000000000..0dcbedb99 --- /dev/null +++ b/v1.50/v1/02j78kr76.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02j78kr76", + "name": "Kempelen Institute of Intelligent Technologies", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.14816, + "lng": 17.10674, + "state": null, + "state_code": null, + "city": "Bratislava", + "geonames_city": { + "id": 3060972, + "city": "Bratislava", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kinit.sk" + ], + "aliases": [ + "Kempelenov inštitút inteligentných technológií" + ], + "acronyms": [ + "KInIT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Slovakia", + "country_code": "SK" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9338 1040" + ], + "preferred": "0000 0004 9338 1040" + }, + "Wikidata": { + "all": [ + "Q116695834" + ], + "preferred": "Q116695834" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02jd4yc28.json b/v1.50/v1/02jd4yc28.json new file mode 100644 index 000000000..287ed4252 --- /dev/null +++ b/v1.50/v1/02jd4yc28.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02jd4yc28", + "name": "Istituto Italiano di Studi Germanici", + "email_address": null, + "ip_addresses": [], + "established": 1931, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.studigermanici.it" + ], + "aliases": [], + "acronyms": [ + "IISG" + ], + "status": "active", + "wikipedia_url": "https://it.wikipedia.org/wiki/Istituto_italiano_di_studi_germanici", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9361 3761" + ], + "preferred": "0000 0004 9361 3761" + }, + "Wikidata": { + "all": [ + "Q1249519" + ], + "preferred": "Q1249519" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02jet3w32.json b/v1.50/v1/02jet3w32.json new file mode 100644 index 000000000..9e5427025 --- /dev/null +++ b/v1.50/v1/02jet3w32.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/02jet3w32", + "name": "LMU Klinikum", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Related", + "id": "https://ror.org/05591te55" + }, + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + }, + { + "label": "Klinik und Poliklinik für Orthopädie, Physikalische Medizin und Rehabilitation", + "type": "Child", + "id": "https://ror.org/05fw3y429" + }, + { + "label": "Klinik und Poliklinik für Psychiatrie und Psychotherapie", + "type": "Child", + "id": "https://ror.org/03j546b66" + }, + { + "label": "Klinik und Poliklinik für Strahlentherapie und Radioonkologie", + "type": "Child", + "id": "https://ror.org/01trny179" + }, + { + "label": "Klinik und Poliklinik für Frauenheilkunde und Geburtshilfe", + "type": "Child", + "id": "https://ror.org/02794jc95" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lmu-klinikum.de/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Klinikum_der_Universit%C3%A4t_M%C3%BCnchen", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.411095.8", + "preferred": "grid.411095.8" + }, + "ISNI": { + "all": [ + "0000 0004 0477 2585" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q598814" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02jfe2t95.json b/v1.50/v1/02jfe2t95.json new file mode 100644 index 000000000..ccd02fed2 --- /dev/null +++ b/v1.50/v1/02jfe2t95.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02jfe2t95", + "name": "Escola Superior de Saúde da Fundação 'Fernando Pessoa'", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.14961, + "lng": -8.61099, + "state": null, + "state_code": null, + "city": "Porto", + "geonames_city": { + "id": 2735943, + "city": "Porto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ess.fernandopessoa.pt" + ], + "aliases": [ + "Higher School of Health Fernando Pessoa" + ], + "acronyms": [ + "ESS-FP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9340 3414" + ], + "preferred": "0000 0004 9340 3414" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02jhjzd11.json b/v1.50/v1/02jhjzd11.json new file mode 100644 index 000000000..51ebfdf1d --- /dev/null +++ b/v1.50/v1/02jhjzd11.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/02jhjzd11", + "name": "Ecole Nationale du Génie de l'Eau et de l'Environnement de Strasbourg (ENGEES)", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "GESTE - Gestion Territoriale de l'Eau et de l'Environnement", + "type": "Child", + "id": "https://ror.org/00pz29t13" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://engees.unistra.fr" + ], + "aliases": [ + "Ecole Nationale du Génie de l'Eau et de l'Environnement de Strasbourg", + "National School for Water and Environmental Engineering" + ], + "acronyms": [ + "ENGEES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100019834" + ], + "preferred": "501100019834" + }, + "GRID": { + "all": "grid.466385.a", + "preferred": "grid.466385.a" + }, + "ISNI": { + "all": [ + "0000 0000 8652 7065" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3578160" + ], + "preferred": "Q3578160" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02jjvb954.json b/v1.50/v1/02jjvb954.json new file mode 100644 index 000000000..9b28197ee --- /dev/null +++ b/v1.50/v1/02jjvb954.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02jjvb954", + "name": "Collegium Carolinum", + "email_address": null, + "ip_addresses": [], + "established": 1956, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Related", + "id": "https://ror.org/05591te55" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.collegium-carolinum.de/en/home.html" + ], + "aliases": [ + "Collegium Carolinum – Výskumný ústav dejín Čiech a Slovenska", + "Collegium Carolinum – Výzkumný ústav pro dějiny Česka a Slovenska" + ], + "acronyms": [ + "CC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.461602.7", + "preferred": "grid.461602.7" + }, + "ISNI": { + "all": [ + "0000 0001 2254 4541" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02jqj7156.json b/v1.50/v1/02jqj7156.json new file mode 100644 index 000000000..f8418d02a --- /dev/null +++ b/v1.50/v1/02jqj7156.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/02jqj7156", + "name": "George Mason University", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Statistical Assessment Service", + "type": "Related", + "id": "https://ror.org/03n3k9q60" + }, + { + "label": "Virginia Serious Game Institute", + "type": "Child", + "id": "https://ror.org/037130043" + }, + { + "label": "Roy Rosenzweig Center for History and New Media", + "type": "Child", + "id": "https://ror.org/04smycn12" + } + ], + "addresses": [ + { + "lat": 38.84622, + "lng": -77.30637, + "state": null, + "state_code": null, + "city": "Fairfax", + "geonames_city": { + "id": 4758023, + "city": "Fairfax", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gmu.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/George_Mason_University", + "labels": [ + { + "label": "Universidad George Mason", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006369", + "100005907", + "100009979" + ], + "preferred": "100006369" + }, + "GRID": { + "all": "grid.22448.38", + "preferred": "grid.22448.38" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8032" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1411222" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02kj53224.json b/v1.50/v1/02kj53224.json new file mode 100644 index 000000000..7ce6deb4c --- /dev/null +++ b/v1.50/v1/02kj53224.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/02kj53224", + "name": "Tecnológico Nacional de México Campus Ciudad Serdán", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 18.98856, + "lng": -97.44643, + "state": null, + "state_code": null, + "city": "Ciudad Serdán", + "geonames_city": { + "id": 3530584, + "city": "Ciudad Serdán", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itsciudadserdan.edu.mx" + ], + "aliases": [ + "Instituto Tecnológico Superior De Ciudad Serdán", + "TecNM Campus Ciudad Serdán", + "TecSerdan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Tecnol%C3%B3gico_Nacional_de_M%C3%A9xico", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02kkvpp62.json b/v1.50/v1/02kkvpp62.json new file mode 100644 index 000000000..5e666a341 --- /dev/null +++ b/v1.50/v1/02kkvpp62.json @@ -0,0 +1,141 @@ +{ + "id": "https://ror.org/02kkvpp62", + "name": "Technical University of Munich", + "email_address": null, + "ip_addresses": [], + "established": 1868, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre for Advanced Laser Applications", + "type": "Child", + "id": "https://ror.org/04j4kfb22" + }, + { + "label": "Institute of Biological and Medical Imaging", + "type": "Child", + "id": "https://ror.org/05g95eg64" + }, + { + "label": "Klinikum rechts der Isar", + "type": "Child", + "id": "https://ror.org/04jc43x05" + }, + { + "label": "Center for Integrated Protein Science Munich", + "type": "Child", + "id": "https://ror.org/032hzb643" + }, + { + "label": "Munich Cluster for Systems Neurology", + "type": "Child", + "id": "https://ror.org/025z3z560" + }, + { + "label": "Deutsches Herzzentrum München", + "type": "Child", + "id": "https://ror.org/04hbwba26" + }, + { + "label": "Berufsgenossenschaftliche Unfallklinik Murnau", + "type": "Related", + "id": "https://ror.org/01fgmnw14" + }, + { + "label": "TU9", + "type": "Related", + "id": "https://ror.org/02nx8n605" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tum.de/en/" + ], + "aliases": [], + "acronyms": [ + "TUM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Technische_Universit%C3%A4t_M%C3%BCnchen", + "labels": [ + { + "label": "Technische Universität München", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005713", + "501100009375" + ], + "preferred": null + }, + "GRID": { + "all": "grid.6936.a", + "preferred": "grid.6936.a" + }, + "ISNI": { + "all": [ + "0000 0001 2322 2966" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q157808" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02kkwkt79.json b/v1.50/v1/02kkwkt79.json new file mode 100644 index 000000000..618667255 --- /dev/null +++ b/v1.50/v1/02kkwkt79.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/02kkwkt79", + "name": "HES-SO Fribourg", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.80237, + "lng": 7.15128, + "state": null, + "state_code": null, + "city": "Fribourg", + "geonames_city": { + "id": 2660718, + "city": "Fribourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hefr.ch/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fachhochschule Westschweiz Freiburg", + "iso639": "de" + }, + { + "label": "Haute École Spécialisée de Suisse Occidentale de Fribourg", + "iso639": "fr" + }, + { + "label": "University of Applied Sciences and Arts Western Switzerland Fribourg", + "iso639": "en" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.483302.e", + "preferred": "grid.483302.e" + }, + "ISNI": { + "all": [ + "0000 0004 0445 2688" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q33121300" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02kqs4h17.json b/v1.50/v1/02kqs4h17.json new file mode 100644 index 000000000..d4fd24c2a --- /dev/null +++ b/v1.50/v1/02kqs4h17.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/02kqs4h17", + "name": "EHL Hospitality Business School", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ehl.edu" + ], + "aliases": [ + "HES-SO EHL Hospitality Business School" + ], + "acronyms": [ + "EHL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02kvxyf05.json b/v1.50/v1/02kvxyf05.json new file mode 100644 index 000000000..cf9287d27 --- /dev/null +++ b/v1.50/v1/02kvxyf05.json @@ -0,0 +1,318 @@ +{ + "id": "https://ror.org/02kvxyf05", + "name": "Institut national de recherche en informatique et en automatique", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire de Biométrie et Biologie Evolutive", + "type": "Child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Centre de Mathématiques Appliquées", + "type": "Child", + "id": "https://ror.org/012e1xn46" + }, + { + "label": "Cognition Behaviour Technology", + "type": "Child", + "id": "https://ror.org/04d9wv909" + }, + { + "label": "Laboratoire d'Informatique de l'École Polytechnique", + "type": "Child", + "id": "https://ror.org/04afed728" + }, + { + "label": "Département d'Informatique", + "type": "Child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Laboratoire d'Informatique de Grenoble", + "type": "Child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Centre de Recherche Inria Bordeaux - Sud-Ouest", + "type": "Child", + "id": "https://ror.org/03tjcj052" + }, + { + "label": "Centre Inria de l'Université Grenoble Alpes", + "type": "Child", + "id": "https://ror.org/00n8d6z93" + }, + { + "label": "Centre Inria de l'Université de Lorraine", + "type": "Child", + "id": "https://ror.org/03fcjvn64" + }, + { + "label": "Inria Rennes - Bretagne Atlantique Research Centre", + "type": "Child", + "id": "https://ror.org/04040yw90" + }, + { + "label": "Inria Saclay - Île de France", + "type": "Child", + "id": "https://ror.org/0315e5x55" + }, + { + "label": "Centre de recherche Inria Lille - Nord Europe", + "type": "Child", + "id": "https://ror.org/04eej9726" + }, + { + "label": "Institut de Mathématiques de Bordeaux", + "type": "Child", + "id": "https://ror.org/05m3r1b84" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "Child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut Élie Cartan de Lorraine", + "type": "Child", + "id": "https://ror.org/04rvw8791" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "Child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Paul Painlevé", + "type": "Child", + "id": "https://ror.org/043n4fm24" + }, + { + "label": "Laboratoire d'Informatique, Signaux et Systèmes de Sophia Antipolis", + "type": "Child", + "id": "https://ror.org/01215r597" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "Child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "Child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratoire de Mathématiques et de leurs Applications", + "type": "Child", + "id": "https://ror.org/00g669j87" + }, + { + "label": "Laboratoire Lorrain de Recherche en Informatique et ses Applications", + "type": "Child", + "id": "https://ror.org/02vnf0c38" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Laboratoire d'Informatique, de Robotique et de Microélectronique de Montpellier", + "type": "Child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Research Centre Inria Sophia Antipolis - Méditerranée", + "type": "Child", + "id": "https://ror.org/01nzkaw91" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Unité de Mathématiques Pures et Appliquées", + "type": "Child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Propagation des Ondes : Étude Mathématique et Simulation", + "type": "Child", + "id": "https://ror.org/03gvm2667" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "InBio: Experimental and Computational Methods for Modeling Cellular Processes", + "type": "Child", + "id": "https://ror.org/01tnxwc41" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Inria Lyon Centre", + "type": "Child", + "id": "https://ror.org/022gakr41" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.8205, + "lng": 2.1311, + "state": null, + "state_code": null, + "city": "Le Chesnay-Rocquencourt", + "geonames_city": { + "id": 6455402, + "city": "Le Chesnay-Rocquencourt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.inria.fr/en/" + ], + "aliases": [ + "Institut de recherche en informatique et en automatique" + ], + "acronyms": [ + "INRIA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/French_Institute_for_Research_in_Computer_Science_and_Automation", + "labels": [ + { + "label": "French Institute for Research in Computer Science and Automation", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012950" + ], + "preferred": "100012950" + }, + "GRID": { + "all": "grid.5328.c", + "preferred": "grid.5328.c" + }, + "ISNI": { + "all": [ + "0000 0001 2186 3954", + "0000 0001 2164 1438" + ], + "preferred": "0000 0001 2164 1438" + }, + "Wikidata": { + "all": [ + "Q1146208" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02kxjxy06.json b/v1.50/v1/02kxjxy06.json new file mode 100644 index 000000000..355d857a1 --- /dev/null +++ b/v1.50/v1/02kxjxy06.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02kxjxy06", + "name": "Centre Hospitalier Sainte-Anne", + "email_address": null, + "ip_addresses": [], + "established": 1651, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Centre Paul Broca", + "type": "Related", + "id": "https://ror.org/00earpg61" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ch-sainte-anne.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.414435.3", + "preferred": "grid.414435.3" + }, + "ISNI": { + "all": [ + "0000 0001 2200 9055" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02kzqn938.json b/v1.50/v1/02kzqn938.json new file mode 100644 index 000000000..ad4678726 --- /dev/null +++ b/v1.50/v1/02kzqn938.json @@ -0,0 +1,508 @@ +{ + "id": "https://ror.org/02kzqn938", + "name": "Université de Lille", + "email_address": null, + "ip_addresses": [], + "established": 1559, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Infection and Immunity of Lille", + "type": "Child", + "id": "https://ror.org/00dyt5s15" + }, + { + "label": "Centre Lillois d'Etudes et de Recherches Sociologiques et Economiques", + "type": "Child", + "id": "https://ror.org/00mghmd60" + }, + { + "label": "Centre d'Etudes en Civilisations, Langues et Littératures Etrangères", + "type": "Child", + "id": "https://ror.org/03629my43" + }, + { + "label": "Institut Charles Viollette", + "type": "Child", + "id": "https://ror.org/0018c4h73" + }, + { + "label": "Institut de Biologie de Lille", + "type": "Child", + "id": "https://ror.org/05gd4yq49" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de Recherches Historiques du Septentrion", + "type": "Child", + "id": "https://ror.org/021ddkf20" + }, + { + "label": "Institut d'électronique de microélectronique et de nanotechnologie", + "type": "Child", + "id": "https://ror.org/02q4res37" + }, + { + "label": "Integrated Genomics and Metabolic Diseases Modeling", + "type": "Child", + "id": "https://ror.org/0300mzg60" + }, + { + "label": "Laboratoire Génie et Matériaux Textiles", + "type": "Child", + "id": "https://ror.org/038sy2k93" + }, + { + "label": "Laboratoire Paul Painlevé", + "type": "Child", + "id": "https://ror.org/043n4fm24" + }, + { + "label": "Laboratoire d'Optique Atmosphérique", + "type": "Child", + "id": "https://ror.org/02mdnkg28" + }, + { + "label": "Laboratoire d'Électrotechnique et d'Électronique de Puissance de Lille", + "type": "Child", + "id": "https://ror.org/0186z1m53" + }, + { + "label": "Laboratoire de Génétique & Evolution des Populations Végétales", + "type": "Child", + "id": "https://ror.org/01h0a3k64" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "Child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Laboratoire de Physique des Lasers, Atomes et Molécules", + "type": "Child", + "id": "https://ror.org/04e89s906" + }, + { + "label": "Laboratoire de Spectroscopie pour les Interactions, la Réactivité et l'Environnement", + "type": "Child", + "id": "https://ror.org/01tv2ca73" + }, + { + "label": "Laboratoire d’Océanologie et de Géosciences", + "type": "Child", + "id": "https://ror.org/05m14rs93" + }, + { + "label": "Unité de catalyse et de chimie du solide de Lille", + "type": "Child", + "id": "https://ror.org/04vrqzz54" + }, + { + "label": "Centre d'Etudes et de Recherches Administratives, Politiques et Sociales", + "type": "Child", + "id": "https://ror.org/03n91q085" + }, + { + "label": "Lille Inflammation Research International Center", + "type": "Child", + "id": "https://ror.org/03c3m6m66" + }, + { + "label": "Lille Économie Management", + "type": "Child", + "id": "https://ror.org/05bz47575" + }, + { + "label": "Maison Européenne des Sciences de l'Homme et de la Société", + "type": "Child", + "id": "https://ror.org/00m090414" + }, + { + "label": "Miniaturisation pour la Synthèse, l'Analyse et la Protéomique", + "type": "Child", + "id": "https://ror.org/02s4dmd79" + }, + { + "label": "PhysicoChimie des Processus de Combustion et de l'Atmosphère", + "type": "Child", + "id": "https://ror.org/03k9wer31" + }, + { + "label": "Protéomique, Réponse Inflammatoire et Spectrométrie de Masse", + "type": "Child", + "id": "https://ror.org/05dm3m993" + }, + { + "label": "Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète", + "type": "Child", + "id": "https://ror.org/05xanhp90" + }, + { + "label": "Savoirs, Textes, Langage", + "type": "Child", + "id": "https://ror.org/003fs1j49" + }, + { + "label": "Sciences Cognitives et Sciences Affectives", + "type": "Child", + "id": "https://ror.org/05rqwc876" + }, + { + "label": "Territoires, Villes, Environnement & Société", + "type": "Child", + "id": "https://ror.org/04kwqat20" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "Child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "Child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "Unité de Recherche Pluridisciplinaire Sport, Santé, Société", + "type": "Child", + "id": "https://ror.org/03eq8fa86" + }, + { + "label": "Unité Évolution, Écologie et Paléontologie", + "type": "Child", + "id": "https://ror.org/04y91dy23" + }, + { + "label": "Systèmes avancés de délivrance de principes actifs", + "type": "Child", + "id": "https://ror.org/053ppfe96" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "Child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Histoire Judiciaire", + "type": "Child", + "id": "https://ror.org/00g32ep81" + }, + { + "label": "Centre d'Investigation Clinique - Innovation Technologique de Lille", + "type": "Child", + "id": "https://ror.org/04p4jgt68" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "Groupe de Recherche sur les formes Injectables et les Technologies Associées", + "type": "Child", + "id": "https://ror.org/02dvx0516" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "Child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "AERIS/ICARE Data and Services Center", + "type": "Child", + "id": "https://ror.org/013z99a51" + }, + { + "label": "IMPact de l'Environnement Chimique sur la Santé humaine", + "type": "Child", + "id": "https://ror.org/0455vgw31" + }, + { + "label": "Institute for Translational Research in Inflammation", + "type": "Child", + "id": "https://ror.org/03qy9z186" + }, + { + "label": "Institut de Recherche sur les Composants logiciels et matériels pour l'Information et la Communication Avancée", + "type": "Child", + "id": "https://ror.org/010nk4c68" + }, + { + "label": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "type": "Child", + "id": "https://ror.org/04f5rw142" + }, + { + "label": "Laboratoire de Génie Civil et Géo Environnement", + "type": "Child", + "id": "https://ror.org/00fh1dw28" + }, + { + "label": "Lille Neurosciences & Cognition", + "type": "Child", + "id": "https://ror.org/04p94ax69" + }, + { + "label": "Médicaments et Molécules pour Agir sur les Systèmes Vivants", + "type": "Child", + "id": "https://ror.org/0086epd30" + }, + { + "label": "Adiposité Médullaire et Os", + "type": "Child", + "id": "https://ror.org/00hz02a80" + }, + { + "label": "Evaluation des technologies de santé et des pratiques médicales", + "type": "Child", + "id": "https://ror.org/01qygwc68" + }, + { + "label": "OncoThAI", + "type": "Child", + "id": "https://ror.org/04q29nn62" + }, + { + "label": "Laboratoire de Physiologie Cellulaire", + "type": "Child", + "id": "https://ror.org/05fjffm04" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Facteurs de risque et déterminants moléculaires des maladies liées au vieillissement", + "type": "Child", + "id": "https://ror.org/03rvrjk28" + }, + { + "label": "Recherche translationnelle sur le diabète", + "type": "Child", + "id": "https://ror.org/03pbmtd68" + }, + { + "label": "Unité de Mécanique de Lille - Joseph Boussinesq", + "type": "Child", + "id": "https://ror.org/00tt79z10" + }, + { + "label": "Analyses Littéraires et Histoire de la Langue", + "type": "Child", + "id": "https://ror.org/05q5m4q74" + }, + { + "label": "Centre d'Etude des Arts Contemporains", + "type": "Child", + "id": "https://ror.org/00bwykg15" + }, + { + "label": "Centre de Recherche \"Individus, Epreuves, Sociétés\"", + "type": "Child", + "id": "https://ror.org/016w4zy25" + }, + { + "label": "Centre Interuniversitaire de Recherche en Education de Lille", + "type": "Child", + "id": "https://ror.org/00ccaam24" + }, + { + "label": "Centre de Recherche Droits et Perspectives du droit", + "type": "Child", + "id": "https://ror.org/047y28a09" + }, + { + "label": "Groupe d'Etudes et de Recherche Interdisciplinaire en Information et Communication", + "type": "Child", + "id": "https://ror.org/02tznxc41" + }, + { + "label": "Laboratoire de Virologie - Pathogenèse virale", + "type": "Child", + "id": "https://ror.org/006vqpx82" + }, + { + "label": "LACTH - Laboratoire d'Architecture Conception Territoire Histoire Matérialité", + "type": "Child", + "id": "https://ror.org/0409gk363" + }, + { + "label": "Lille School of Management Research Center", + "type": "Child", + "id": "https://ror.org/00jsgkx16" + }, + { + "label": "Lille University Management", + "type": "Child", + "id": "https://ror.org/02hkbys70" + }, + { + "label": "Psychologie : Interactions, Temps, Emotions, Cognition", + "type": "Child", + "id": "https://ror.org/044xe8e90" + }, + { + "label": "Unité de Taphonomie Médico-Légale", + "type": "Child", + "id": "https://ror.org/03ya3d516" + }, + { + "label": "Laboratoire de Didactique André Revuz", + "type": "Child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Maladies RAres du DEveloppement embryonnaire et du MEtabolisme", + "type": "Child", + "id": "https://ror.org/04dsjbp13" + }, + { + "label": "Centre Hospitalier Universitaire de Lille", + "type": "Related", + "id": "https://ror.org/02ppyfa04" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-lille.fr/home/" + ], + "aliases": [ + "Ulille", + "univ-lille" + ], + "acronyms": [ + "UDL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Lille", + "labels": [ + { + "label": "University of Lille", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015872" + ], + "preferred": "100015872" + }, + "GRID": { + "all": "grid.503422.2", + "preferred": "grid.503422.2" + }, + "ISNI": { + "all": [ + "0000 0001 2242 6780" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3551621" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02m9kbe37.json b/v1.50/v1/02m9kbe37.json new file mode 100644 index 000000000..7dff9dab1 --- /dev/null +++ b/v1.50/v1/02m9kbe37.json @@ -0,0 +1,183 @@ +{ + "id": "https://ror.org/02m9kbe37", + "name": "Université de Toulon", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Physique Théorique", + "type": "Child", + "id": "https://ror.org/052bbtn31" + }, + { + "label": "Institut des Matériaux, de Microélectronique et des Nanosciences de Provence", + "type": "Child", + "id": "https://ror.org/0238zyh04" + }, + { + "label": "Laboratoire Motricité Humaine Éducation Sport Santé", + "type": "Child", + "id": "https://ror.org/03fd87035" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "Child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Institut Méditerranéen d’Océanologie", + "type": "Child", + "id": "https://ror.org/05258q350" + }, + { + "label": "Institut Méditerranéen des Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/00c62kq26" + }, + { + "label": "Droit International Comparé et Européen", + "type": "Child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Institut de Mathématiques de Toulon", + "type": "Child", + "id": "https://ror.org/038a20b58" + }, + { + "label": "Laboratoire d'économie appliquée au développement", + "type": "Child", + "id": "https://ror.org/04wdvc711" + }, + { + "label": "Conception de Systèmes Mécaniques et Robotiques", + "type": "Child", + "id": "https://ror.org/03jc88607" + }, + { + "label": "Laboratoire Babel", + "type": "Child", + "id": "https://ror.org/00sg8gh54" + }, + { + "label": "Centre d'études et de recherche sur les contentieux", + "type": "Child", + "id": "https://ror.org/03rvwhn52" + }, + { + "label": "Jeunesse - Activité Physique et Sportive, santé", + "type": "Child", + "id": "https://ror.org/05d95p271" + }, + { + "label": "Centre d'Etudes et de Recherche en Gestion d'Aix-Marseille", + "type": "Child", + "id": "https://ror.org/02gam0808" + }, + { + "label": "Matériaux Polymères Interfaces - Environnement Marin", + "type": "Child", + "id": "https://ror.org/03jqp8097" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 43.12468, + "lng": 6.01033, + "state": null, + "state_code": null, + "city": "La Garde", + "geonames_city": { + "id": 3009223, + "city": "La Garde", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-tln.fr/" + ], + "aliases": [], + "acronyms": [ + "UTLN" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_the_South,_Toulon-Var", + "labels": [ + { + "label": "Universitat de Tolon", + "iso639": "ca" + }, + { + "label": "University of Toulon", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.12611.35", + "preferred": "grid.12611.35" + }, + "ISNI": { + "all": [ + "0000 0000 8843 7055" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1816857" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02mkvtw30.json b/v1.50/v1/02mkvtw30.json new file mode 100644 index 000000000..93d02c7ba --- /dev/null +++ b/v1.50/v1/02mkvtw30.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/02mkvtw30", + "name": "Brooklyn Perinatal Network", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bpnetwork.org/nyc/" + ], + "aliases": [], + "acronyms": [ + "BPN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.484251.e", + "preferred": "grid.484251.e" + }, + "Wikidata": { + "all": [ + "Q33121981" + ], + "preferred": "Q33121981" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02mqtne57.json b/v1.50/v1/02mqtne57.json new file mode 100644 index 000000000..c476259c3 --- /dev/null +++ b/v1.50/v1/02mqtne57.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/02mqtne57", + "name": "Hôpital Lariboisière", + "email_address": null, + "ip_addresses": [], + "established": 1832, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hopital-lariboisiere.aphp.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lariboisi%C3%A8re_Hospital", + "labels": [ + { + "label": "Lariboisière Hospital", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.411296.9", + "preferred": "grid.411296.9" + }, + "ISNI": { + "all": [ + "0000 0000 9725 279X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1130784" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02msan859.json b/v1.50/v1/02msan859.json new file mode 100644 index 000000000..d950456e6 --- /dev/null +++ b/v1.50/v1/02msan859.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/02msan859", + "name": "European University Viadrina", + "email_address": null, + "ip_addresses": [], + "established": 1506, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Collegium Polonicum", + "type": "Child", + "id": "https://ror.org/03v4vk244" + } + ], + "addresses": [ + { + "lat": 52.34714, + "lng": 14.55062, + "state": null, + "state_code": null, + "city": "Frankfurt", + "geonames_city": { + "id": 2925535, + "city": "Frankfurt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.europa-uni.de/en/index.html" + ], + "aliases": [ + "European University Viadrina Frankfurt (Oder)", + "University of Frankfurt (Oder)" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Viadrina_European_University", + "labels": [ + { + "label": "Europa-Universität Viadrina Frankfurt", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.33018.39", + "preferred": "grid.33018.39" + }, + "ISNI": { + "all": [ + "0000 0001 2298 6761" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q149481" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02n9c6y33.json b/v1.50/v1/02n9c6y33.json new file mode 100644 index 000000000..71bcdee12 --- /dev/null +++ b/v1.50/v1/02n9c6y33.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02n9c6y33", + "name": "University of Al-Hamdaniya", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.27093, + "lng": 43.37758, + "state": null, + "state_code": null, + "city": "Al-Hamdaniya District", + "geonames_city": { + "id": 92430, + "city": "Al-Hamdaniya District", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uohamdaniya.edu.iq" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Al-Hamdaniya", + "labels": [ + { + "label": "جامعة الحمدانية", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q25450318" + ], + "preferred": "Q25450318" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02nwvxz07.json b/v1.50/v1/02nwvxz07.json new file mode 100644 index 000000000..adab8120b --- /dev/null +++ b/v1.50/v1/02nwvxz07.json @@ -0,0 +1,179 @@ +{ + "id": "https://ror.org/02nwvxz07", + "name": "École des Ponts ParisTech", + "email_address": null, + "ip_addresses": [], + "established": 1747, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "CERMICS", + "type": "Child", + "id": "https://ror.org/03wct8w46" + }, + { + "label": "Centre d'Enseignement et de Recherche en Environnement Atmosphérique", + "type": "Child", + "id": "https://ror.org/03a84yw54" + }, + { + "label": "Hydrologie Météorologie et Complexité", + "type": "Child", + "id": "https://ror.org/04fbd1w03" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Navier", + "type": "Child", + "id": "https://ror.org/029hkd614" + }, + { + "label": "Laboratoire Techniques, Territoires et Sociétés", + "type": "Child", + "id": "https://ror.org/05fc1hn07" + }, + { + "label": "Laboratoire Ville Mobilité Transport", + "type": "Child", + "id": "https://ror.org/056vbnz12" + }, + { + "label": "Laboratoire d'Informatique Gaspard-Monge", + "type": "Child", + "id": "https://ror.org/04t50yk91" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire d'Hydraulique Saint-Venant", + "type": "Child", + "id": "https://ror.org/049yaph28" + }, + { + "label": "Laboratoire Eau, Environnement et Systèmes Urbains", + "type": "Child", + "id": "https://ror.org/02nqy7n35" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "ParisTech", + "type": "Parent", + "id": "https://ror.org/05c2qg481" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ecoledesponts.fr" + ], + "aliases": [ + "Ecole Nationale des Ponts et Chaussees", + "Ecole des Ponts ParisTech", + "Les Ponts", + "École Nationale des Ponts et Chaussées" + ], + "acronyms": [ + "ENPC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_des_ponts_ParisTech", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.424447.5", + "preferred": "grid.424447.5" + }, + "ISNI": { + "all": [ + "0000 0004 0641 4845" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273523" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02p4sx080.json b/v1.50/v1/02p4sx080.json new file mode 100644 index 000000000..08f5f6596 --- /dev/null +++ b/v1.50/v1/02p4sx080.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02p4sx080", + "name": "Northamptonshire County Council", + "email_address": null, + "ip_addresses": [], + "established": 1889, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "North Northamptonshire Council", + "type": "Successor", + "id": "https://ror.org/00b03qn53" + }, + { + "label": "West Northamptonshire Council", + "type": "Successor", + "id": "https://ror.org/00s2fy654" + } + ], + "addresses": [ + { + "lat": 52.25, + "lng": -0.88333, + "state": null, + "state_code": null, + "city": "Northampton", + "geonames_city": { + "id": 2641430, + "city": "Northampton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.northamptonshire.gov.uk/en/Pages/HomePage.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Northamptonshire_County_Council", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.466958.0", + "preferred": "grid.466958.0" + }, + "ISNI": { + "all": [ + "0000 0000 9413 8836" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q14942414" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02pbyft41.json b/v1.50/v1/02pbyft41.json new file mode 100644 index 000000000..3015c91ee --- /dev/null +++ b/v1.50/v1/02pbyft41.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02pbyft41", + "name": "Southwest Alaska Inventory and Monitoring Network", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Park Service", + "type": "Parent", + "id": "https://ror.org/044zqqy65" + } + ], + "addresses": [ + { + "lat": 61.21806, + "lng": -149.90028, + "state": null, + "state_code": null, + "city": "Anchorage", + "geonames_city": { + "id": 5879400, + "city": "Anchorage", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nps.gov/im/swan/index.htm" + ], + "aliases": [ + "NPS Southwest Alaska Inventory and Monitoring Network", + "National Park Service - Southwest Alaska Inventory and Monitoring Network" + ], + "acronyms": [ + "NPS SWAN", + "SWAN" + ], + "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.50/v1/02pcazp65.json b/v1.50/v1/02pcazp65.json new file mode 100644 index 000000000..94da3c251 --- /dev/null +++ b/v1.50/v1/02pcazp65.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02pcazp65", + "name": "BLOOM", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bloomassociation.org" + ], + "aliases": [ + "BLOOM Association" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02qa1x782.json b/v1.50/v1/02qa1x782.json new file mode 100644 index 000000000..98a46e42d --- /dev/null +++ b/v1.50/v1/02qa1x782.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/02qa1x782", + "name": "Fisheries and Oceans Canada", + "email_address": null, + "ip_addresses": [], + "established": 1868, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Canadian Hydrographic Service", + "type": "Child", + "id": "https://ror.org/01dbm1232" + }, + { + "label": "Government of Canada", + "type": "Parent", + "id": "https://ror.org/010q4q527" + }, + { + "label": "St. Lawrence Global Observatory", + "type": "Related", + "id": "https://ror.org/03wfagk22" + }, + { + "label": "NorthEast Pacific Deep-sea Exploration Project", + "type": "Child", + "id": "https://ror.org/01fkg1209" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dfo-mpo.gc.ca" + ], + "aliases": [ + "Department of Fisheries and Oceans" + ], + "acronyms": [ + "DFO", + "MPO" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Fisheries_and_Oceans_Canada", + "labels": [ + { + "label": "Pêches et Océans Canada", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100000041" + ], + "preferred": null + }, + "GRID": { + "all": "grid.23618.3e", + "preferred": "grid.23618.3e" + }, + "ISNI": { + "all": [ + "0000 0004 0449 2129" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q349666" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02qqvpd39.json b/v1.50/v1/02qqvpd39.json new file mode 100644 index 000000000..4c5b7a7d4 --- /dev/null +++ b/v1.50/v1/02qqvpd39.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02qqvpd39", + "name": "Zentrum für Klinische Tiermedizin", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + }, + { + "label": "Klinik für Schweine", + "type": "Child", + "id": "https://ror.org/02am8se85" + } + ], + "addresses": [ + { + "lat": 48.25, + "lng": 11.56667, + "state": null, + "state_code": null, + "city": "Oberschleißheim", + "geonames_city": { + "id": 2859147, + "city": "Oberschleißheim", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vetmed.uni-muenchen.de/einrichtungen/klini_einrichtungen/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q101378210" + ], + "preferred": "Q101378210" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02rg1r889.json b/v1.50/v1/02rg1r889.json new file mode 100644 index 000000000..d04d9ceaf --- /dev/null +++ b/v1.50/v1/02rg1r889.json @@ -0,0 +1,145 @@ +{ + "id": "https://ror.org/02rg1r889", + "name": "Tribhuvan University", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institute of Engineering", + "type": "Child", + "id": "https://ror.org/03ny67e60" + }, + { + "label": "Institute of Science and Technology", + "type": "Child", + "id": "https://ror.org/02wxm3f24" + }, + { + "label": "Bir Hospital", + "type": "Related", + "id": "https://ror.org/0024qhz65" + }, + { + "label": "Manmohan Memorial Institute of Health Sciences", + "type": "Related", + "id": "https://ror.org/04636qj46" + }, + { + "label": "Sai Krishna Medical College & Hospital", + "type": "Related", + "id": "https://ror.org/00737wk38" + }, + { + "label": "Tribhuvan University Teaching Hospital", + "type": "Related", + "id": "https://ror.org/02me73n88" + }, + { + "label": "Kantipur Engineering College", + "type": "Related", + "id": "https://ror.org/00xw9d516" + }, + { + "label": "Janaki Medical College", + "type": "Related", + "id": "https://ror.org/00bmp7042" + }, + { + "label": "Nepal Mountain Academy", + "type": "Related", + "id": "https://ror.org/02ws75w34" + }, + { + "label": "Institute of Agriculture and Animal Science", + "type": "Child", + "id": "https://ror.org/04gq09j61" + } + ], + "addresses": [ + { + "lat": 27.70169, + "lng": 85.3206, + "state": null, + "state_code": null, + "city": "Kathmandu", + "geonames_city": { + "id": 1283240, + "city": "Kathmandu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://tribhuvan-university.edu.np/" + ], + "aliases": [], + "acronyms": [ + "TU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Tribhuvan_University", + "labels": [], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018335" + ], + "preferred": "100018335" + }, + "GRID": { + "all": "grid.80817.36", + "preferred": "grid.80817.36" + }, + "ISNI": { + "all": [ + "0000 0001 2114 6728" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q588239" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02rk7kr02.json b/v1.50/v1/02rk7kr02.json new file mode 100644 index 000000000..42afcf8d1 --- /dev/null +++ b/v1.50/v1/02rk7kr02.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02rk7kr02", + "name": "Universitas Mochammad Sroedji Jember", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -8.17211, + "lng": 113.69953, + "state": null, + "state_code": null, + "city": "Jember", + "geonames_city": { + "id": 1642588, + "city": "Jember", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umsj.ac.id" + ], + "aliases": [ + "Universitas Moch Sroedji Jember" + ], + "acronyms": [ + "UMSJ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "GRID": { + "all": "grid.443501.7", + "preferred": "grid.443501.7" + }, + "ISNI": { + "all": [ + "0000 0004 0386 5472" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30294501" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02rx3b187.json b/v1.50/v1/02rx3b187.json new file mode 100644 index 000000000..3afaf1e49 --- /dev/null +++ b/v1.50/v1/02rx3b187.json @@ -0,0 +1,560 @@ +{ + "id": "https://ror.org/02rx3b187", + "name": "Université Grenoble Alpes", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Interuniversitaire de MicroElectronique et Nanotechnologies", + "type": "Child", + "id": "https://ror.org/000tdrn36" + }, + { + "label": "Laboratoire d'Economie Appliquée de Grenoble", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Institut polytechnique de Grenoble", + "type": "Child", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut Néel", + "type": "Child", + "id": "https://ror.org/04dbzz632" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut des Géosciences de l'Environnement", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Interdisciplinaire de Physique", + "type": "Child", + "id": "https://ror.org/023n9q531" + }, + { + "label": "Laboratoire de Linguistique et Didactique des Langues Etrangères et Maternelles", + "type": "Child", + "id": "https://ror.org/05588ks88" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratoire de Physique Subatomique et de Cosmologie", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "Child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "Institut Carnot PolyNat", + "type": "Child", + "id": "https://ror.org/047p7mf25" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Laboratoire de Recherche sur les Apprentissages en Contexte", + "type": "Child", + "id": "https://ror.org/05c99vk74" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Laboratoire Inter-universitaire de Psychologie: Personnalité, Cognition, Changement Social", + "type": "Child", + "id": "https://ror.org/03jrb0276" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "Child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Laboratoire Modélisation et Exploration des Matériaux", + "type": "Child", + "id": "https://ror.org/00ndvqf03" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "Child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "Child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Centre d'Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique", + "type": "Child", + "id": "https://ror.org/04ndt7n58" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Centre d'Etudes et de Recherches Appliquées à la Gestion", + "type": "Child", + "id": "https://ror.org/0509qp208" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Laboratoire d'Informatique de Grenoble", + "type": "Child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "Child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Pacte", + "type": "Child", + "id": "https://ror.org/026j45x50" + }, + { + "label": "Laboratoire de Conception et d'Intégration des Systèmes", + "type": "Child", + "id": "https://ror.org/04eg25g76" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "Child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scène", + "type": "Child", + "id": "https://ror.org/055q9jt53" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Child", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Centre de recherches juridiques de Grenoble", + "type": "Child", + "id": "https://ror.org/04e2ndp15" + }, + { + "label": "Centre de recherche en économie de Grenoble", + "type": "Child", + "id": "https://ror.org/05bw7ad85" + }, + { + "label": "Laboratoire EcoSystèmes et Sociétés En Montagne", + "type": "Child", + "id": "https://ror.org/01a0ez112" + }, + { + "label": "Méthodes et Histoire de l'architecture", + "type": "Child", + "id": "https://ror.org/00genbz89" + }, + { + "label": "Centre d'études sur la sécurité internationale et les coopérations européennes", + "type": "Child", + "id": "https://ror.org/033d95m27" + }, + { + "label": "Sport et environnement social", + "type": "Child", + "id": "https://ror.org/00t9pwh21" + }, + { + "label": "Architecture, Environnement & Cultures Constructives", + "type": "Child", + "id": "https://ror.org/02wrd4e19" + }, + { + "label": "Laboratoire Universitaire Histoire Cultures Italie Europe", + "type": "Child", + "id": "https://ror.org/00y523k32" + }, + { + "label": "Institut de philosophie de Grenoble", + "type": "Child", + "id": "https://ror.org/01554y636" + }, + { + "label": "Groupe de recherche sur les enjeux de la communication", + "type": "Child", + "id": "https://ror.org/00awrf758" + }, + { + "label": "Laboratoire des Sciences pour la Conception, l'Optimisation et la Production", + "type": "Child", + "id": "https://ror.org/00rv5x925" + }, + { + "label": "Institut Fourier", + "type": "Child", + "id": "https://ror.org/05rwrfh97" + }, + { + "label": "Techniques of Informatics and Microelectronics for Integrated Systems Architecture", + "type": "Child", + "id": "https://ror.org/000063q30" + }, + { + "label": "Translational Innovation in Medicine and Complexity", + "type": "Child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "Child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Autonomie, Gérontologie, E-santé, Imagerie et Société", + "type": "Child", + "id": "https://ror.org/01aj0bf86" + }, + { + "label": "Laboratoire Biosciences et bioingénierie pour la Santé", + "type": "Child", + "id": "https://ror.org/039j4x695" + }, + { + "label": "Brain Tech Laboratory", + "type": "Child", + "id": "https://ror.org/01027m165" + }, + { + "label": "Laboratoire Biologie et Biotechnologie pour la Santé", + "type": "Child", + "id": "https://ror.org/0557vhy43" + }, + { + "label": "Institut de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Centre de Recherches sur les Macromolécules Végétales", + "type": "Child", + "id": "https://ror.org/0003ege03" + }, + { + "label": "Département de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/010rs2a38" + }, + { + "label": "Hypoxie et Physiopathologies cardiovasculaires et respiratoires", + "type": "Child", + "id": "https://ror.org/0459x4g44" + }, + { + "label": "Haute Technologie Animale Grenobloise", + "type": "Child", + "id": "https://ror.org/03vyv3y87" + }, + { + "label": "Institut pour l'avancée des biosciences", + "type": "Child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "Child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire d'Écologie Alpine", + "type": "Child", + "id": "https://ror.org/03x1z2w73" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire de Radiopharmaceutiques Biocliniques", + "type": "Child", + "id": "https://ror.org/01273vs09" + }, + { + "label": "Laboratory of Fundamental and Applied Bioenergetics", + "type": "Child", + "id": "https://ror.org/05514hp74" + }, + { + "label": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "type": "Child", + "id": "https://ror.org/0535cbn94" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Laboratoire Rhéologie et Procédés", + "type": "Child", + "id": "https://ror.org/044ggyg50" + }, + { + "label": "Laboratoire National des Champs Magnétiques Intenses", + "type": "Child", + "id": "https://ror.org/045ktmd28" + }, + { + "label": "Laboratoire de génie des procédés pour la bioraffinerie, les matériaux bio-sourcés et l’impression fonctionnelle", + "type": "Child", + "id": "https://ror.org/02z8yps18" + }, + { + "label": "Institut de Planétologie et d'Astrophysique de Grenoble", + "type": "Child", + "id": "https://ror.org/01kcrnc96" + }, + { + "label": "Laboratoire des Écoulements Géophysiques et Industriels", + "type": "Child", + "id": "https://ror.org/043pfpy19" + }, + { + "label": "Sols, Solides, Structures, Risques", + "type": "Child", + "id": "https://ror.org/03bcdsr62" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "Child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Laboratoire des Matériaux et du Génie Physique", + "type": "Child", + "id": "https://ror.org/014n97s28" + }, + { + "label": "Laboratoire de Physique et Modélisation des Milieux Condensés", + "type": "Child", + "id": "https://ror.org/02mc6qk71" + }, + { + "label": "Laboratoire des Technologies de la Microélectronique", + "type": "Child", + "id": "https://ror.org/036zswm25" + }, + { + "label": "Laboratoire de Génie Électrique de Grenoble", + "type": "Child", + "id": "https://ror.org/05hyx5a17" + }, + { + "label": "Science et Ingénierie des Matériaux et Procédés", + "type": "Child", + "id": "https://ror.org/00m7zca23" + }, + { + "label": "Centre de Radiofréquences, Optique et Micro-nanoélectronique des Alpes", + "type": "Child", + "id": "https://ror.org/050rs7291" + }, + { + "label": "Département des Systèmes Basses Températures", + "type": "Child", + "id": "https://ror.org/009ps2x93" + }, + { + "label": "Université Pierre Mendès France", + "type": "Predecessor", + "id": "https://ror.org/02f7wz369" + }, + { + "label": "Centre Hospitalier Universitaire de Grenoble", + "type": "Related", + "id": "https://ror.org/041rhpw39" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 45.1787, + "lng": 5.76281, + "state": null, + "state_code": null, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 2978317, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-grenoble-alpes.fr" + ], + "aliases": [], + "acronyms": [ + "UGA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Grenoble_Alpes_University", + "labels": [ + { + "label": "Grenoble Alpes University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012952", + "100013349" + ], + "preferred": "100012952" + }, + "GRID": { + "all": "grid.450307.5", + "preferred": "grid.450307.5" + }, + "Wikidata": { + "all": [ + "Q945876" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02rzr3z90.json b/v1.50/v1/02rzr3z90.json new file mode 100644 index 000000000..b13a124e6 --- /dev/null +++ b/v1.50/v1/02rzr3z90.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/02rzr3z90", + "name": "HEIG-VD", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.77852, + "lng": 6.64115, + "state": null, + "state_code": null, + "city": "Yverdon-les-Bains", + "geonames_city": { + "id": 2657941, + "city": "Yverdon-les-Bains", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://heig-vd.ch" + ], + "aliases": [ + "HES-SO Haute Ecole d'Ingénierie et de Gestion du Canton de Vaud", + "HES-SO Haute Ecole d'Ingénierie et de Gestion du Canton de Vaud - HEIG-VD", + "HES-SO School of Engineering and Management Vaud", + "HES-SO School of Engineering and Management Vaud - HEIG-VD" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Haute Ecole d'Ingénierie et de Gestion du Canton de Vaud", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02tcssc12.json b/v1.50/v1/02tcssc12.json new file mode 100644 index 000000000..34db2b808 --- /dev/null +++ b/v1.50/v1/02tcssc12.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/02tcssc12", + "name": "Assalam International University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.20892, + "lng": 16.58866, + "state": null, + "state_code": null, + "city": "Sirte", + "geonames_city": { + "id": 2210554, + "city": "Sirte", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aiu.edu.ly" + ], + "aliases": [ + "AIU-Sirte", + "Assalam International University - Sirte" + ], + "acronyms": [ + "AIU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "جامعة السلام الدولية - سرت", + "iso639": "ar" + } + ], + "country": { + "country_name": "Libya", + "country_code": "LY" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02ttsq026.json b/v1.50/v1/02ttsq026.json new file mode 100644 index 000000000..9cf1ac0a2 --- /dev/null +++ b/v1.50/v1/02ttsq026.json @@ -0,0 +1,192 @@ +{ + "id": "https://ror.org/02ttsq026", + "name": "University of Colorado Boulder", + "email_address": null, + "ip_addresses": [], + "established": 1876, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Colorado Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/01m9s4d25" + }, + { + "label": "Cooperative Institute for Research in Environmental Sciences", + "type": "Child", + "id": "https://ror.org/00bdqav06" + }, + { + "label": "Institute of Arctic and Alpine Research", + "type": "Child", + "id": "https://ror.org/00924z688" + }, + { + "label": "Joint Institute for Laboratory Astrophysics", + "type": "Child", + "id": "https://ror.org/008hybe55" + }, + { + "label": "Laboratory for Atmospheric and Space Physics", + "type": "Child", + "id": "https://ror.org/01fcjzv38" + }, + { + "label": "McMurdo Dry Valleys Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/04r3s7465" + }, + { + "label": "Niwot Ridge Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/02ep77d74" + }, + { + "label": "Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support", + "type": "Child", + "id": "https://ror.org/01v6d0b34" + }, + { + "label": "University of Colorado System", + "type": "Parent", + "id": "https://ror.org/00jc20583" + }, + { + "label": "Children's Hospital Colorado", + "type": "Related", + "id": "https://ror.org/00mj9k629" + }, + { + "label": "Fitzsimons Army Medical Center", + "type": "Related", + "id": "https://ror.org/02epjsz02" + }, + { + "label": "National Jewish Health", + "type": "Related", + "id": "https://ror.org/016z2bp30" + }, + { + "label": "Space Science Institute", + "type": "Related", + "id": "https://ror.org/046a9q865" + }, + { + "label": "University of Colorado Cancer Center", + "type": "Related", + "id": "https://ror.org/04cqn7d42" + }, + { + "label": "University of Colorado Hospital", + "type": "Related", + "id": "https://ror.org/006jjmw19" + }, + { + "label": "North Central Climate Adaptation Science Center", + "type": "Child", + "id": "https://ror.org/00ctmtz16" + } + ], + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.colorado.edu/" + ], + "aliases": [ + "CU-Boulder" + ], + "acronyms": [ + "UCB" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Colorado_Boulder", + "labels": [ + { + "label": "Universidad de Colorado en Boulder", + "iso639": "es" + }, + { + "label": "Université du Colorado à Boulder", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007493", + "100008618", + "100006015", + "100005573", + "100006473", + "100007494", + "100013186" + ], + "preferred": "100007493" + }, + "GRID": { + "all": "grid.266190.a", + "preferred": "grid.266190.a" + }, + "ISNI": { + "all": [ + "0000 0000 9621 4564" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q736674" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02tvvdy44.json b/v1.50/v1/02tvvdy44.json new file mode 100644 index 000000000..7a95ffa82 --- /dev/null +++ b/v1.50/v1/02tvvdy44.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02tvvdy44", + "name": "Pew Research Center", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Pew Charitable Trusts", + "type": "Parent", + "id": "https://ror.org/02xhk2825" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pewresearch.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pew_Research_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.479573.b", + "preferred": "grid.479573.b" + }, + "ISNI": { + "all": [ + "0000 0000 9827 1941" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1635722" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02tz8r820.json b/v1.50/v1/02tz8r820.json new file mode 100644 index 000000000..1909bf3b5 --- /dev/null +++ b/v1.50/v1/02tz8r820.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02tz8r820", + "name": "Institute of Soil Biology", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + }, + { + "label": "Czech Academy of Sciences, Biology Centre", + "type": "Successor", + "id": "https://ror.org/05pq4yn02" + } + ], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.upb.cas.cz/en" + ], + "aliases": [ + "Ústav Půdní Biologie" + ], + "acronyms": [ + "ISB" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448363.e", + "preferred": "grid.448363.e" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02v5bgz72.json b/v1.50/v1/02v5bgz72.json new file mode 100644 index 000000000..3b2a881e1 --- /dev/null +++ b/v1.50/v1/02v5bgz72.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/02v5bgz72", + "name": "Groupe Hospitalier Cochin - Port-Royal, Hôtel-Dieu, Broca - La Collégiale", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpital Broca", + "type": "Child", + "id": "https://ror.org/01m11mf96" + }, + { + "label": "Hôpital Cochin", + "type": "Child", + "id": "https://ror.org/00ph8tk69" + }, + { + "label": "Hôtel-Dieu de Paris", + "type": "Child", + "id": "https://ror.org/03jmjy508" + }, + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hopitaux-paris-centre.aphp.fr/" + ], + "aliases": [ + "Groupe Hospitalier Hôpitaux Universitaires Paris Centre" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.510332.6", + "preferred": "grid.510332.6" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02v6kpv12.json b/v1.50/v1/02v6kpv12.json new file mode 100644 index 000000000..09c4f736d --- /dev/null +++ b/v1.50/v1/02v6kpv12.json @@ -0,0 +1,373 @@ +{ + "id": "https://ror.org/02v6kpv12", + "name": "Université Toulouse III - Paul Sabatier", + "email_address": null, + "ip_addresses": [], + "established": 1229, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de recherche cerveau et cognition", + "type": "Child", + "id": "https://ror.org/04fhrs205" + }, + { + "label": "Centre de Recherche en Cancérologie de Toulouse", + "type": "Child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Centre d'Étude et de Recherche Travail Organisation Pouvoir", + "type": "Child", + "id": "https://ror.org/02hbzmb19" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Digestive Health Research Institute", + "type": "Child", + "id": "https://ror.org/034nb0f30" + }, + { + "label": "Laboratoire National des Champs Magnétiques Intenses", + "type": "Child", + "id": "https://ror.org/045ktmd28" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Institut Clément Ader", + "type": "Child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Institut de Mécanique des Fluides de Toulouse", + "type": "Child", + "id": "https://ror.org/025nmxp11" + }, + { + "label": "Institut de Pharmacologie et de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/016zvc994" + }, + { + "label": "Centre Interuniversitaire de Recherche et d’Ingénierie des Matériaux", + "type": "Child", + "id": "https://ror.org/03xhggy77" + }, + { + "label": "Laboratoire Epidémiologie et Analyses en Santé Publique : Risques, Maladies Chroniques et Handicaps", + "type": "Child", + "id": "https://ror.org/02ywmqv15" + }, + { + "label": "Laboratoire Hétérochimie Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/02v2svk17" + }, + { + "label": "Laboratoire d'Aérologie", + "type": "Child", + "id": "https://ror.org/017d9yp59" + }, + { + "label": "Laboratoire de Génie Chimique", + "type": "Child", + "id": "https://ror.org/003jnac13" + }, + { + "label": "Laboratoire de Microbiologie et Génétique Moléculaires", + "type": "Child", + "id": "https://ror.org/04rrj3a80" + }, + { + "label": "Laboratoire de Recherche en Sciences Végétales", + "type": "Child", + "id": "https://ror.org/047z5as19" + }, + { + "label": "Softmat - Chimie des colloïdes, polymères & assemblages complexes", + "type": "Child", + "id": "https://ror.org/0171mae58" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "Child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire d’Étude et de Recherche sur l’Économie, les Politiques et les Systèmes Sociaux", + "type": "Child", + "id": "https://ror.org/05tcnbj64" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "Child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Laboratoire Evolution et Diversite Biologique", + "type": "Child", + "id": "https://ror.org/02xh23b55" + }, + { + "label": "Laboratoire d'Analyse et d'Architecture des Systèmes", + "type": "Child", + "id": "https://ror.org/03vcm6439" + }, + { + "label": "Laboratoire Plasma et Conversion d'Energie", + "type": "Child", + "id": "https://ror.org/02w5mvk98" + }, + { + "label": "Pharmacochimie et Pharmacologie pour le Développement", + "type": "Child", + "id": "https://ror.org/03p7xrr08" + }, + { + "label": "Centre de Recherches sur la Cognition Animale", + "type": "Child", + "id": "https://ror.org/0111s2360" + }, + { + "label": "Institut de Recherche en Astrophysique et Planétologie", + "type": "Child", + "id": "https://ror.org/05hm2ja81" + }, + { + "label": "Station d’Écologie Théorique et Expérimentale", + "type": "Child", + "id": "https://ror.org/05d6wfd23" + }, + { + "label": "Institut de Mathématiques de Toulouse", + "type": "Child", + "id": "https://ror.org/014vp6c30" + }, + { + "label": "Toxalim Research Centre in Food Toxicology", + "type": "Child", + "id": "https://ror.org/0111a5077" + }, + { + "label": "Laboratoire des 2 Infinis Toulouse", + "type": "Child", + "id": "https://ror.org/00j50jx72" + }, + { + "label": "Laboratoire d'Études et de Recherches Appliquées en Sciences Sociales", + "type": "Child", + "id": "https://ror.org/01bxfc994" + }, + { + "label": "Centre d’Investigation Clinique 1436", + "type": "Child", + "id": "https://ror.org/033z83z59" + }, + { + "label": "Télescope Bernard Lyot", + "type": "Child", + "id": "https://ror.org/03wa9cd25" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "Child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "CALMIP", + "type": "Child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "RESTORE", + "type": "Child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "Child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Laboratoire de Chimie et Physique Quantiques", + "type": "Child", + "id": "https://ror.org/056g7f250" + }, + { + "label": "Fédération de recherche Matière et Interactions", + "type": "Child", + "id": "https://ror.org/02wq1s711" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Centre d'Anthropobiologie et de Génomique de Toulouse", + "type": "Child", + "id": "https://ror.org/045p8nc06" + }, + { + "label": "Université de Toulouse", + "type": "Parent", + "id": "https://ror.org/004raaa70" + }, + { + "label": "Centre Hospitalier Universitaire de Toulouse", + "type": "Related", + "id": "https://ror.org/017h5q109" + }, + { + "label": "Hôpital Purpan", + "type": "Related", + "id": "https://ror.org/03vcx3f97" + }, + { + "label": "Hôpital Rangueil", + "type": "Related", + "id": "https://ror.org/034zn5b34" + }, + { + "label": "Centre de Recherche sur la Biodiversité et l'Environnement", + "type": "Child", + "id": "https://ror.org/03v2c3v44" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-tlse3.fr/" + ], + "aliases": [ + "Paul Sabatier University", + "Université Toulouse III" + ], + "acronyms": [ + "UPS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Paul_Sabatier_University", + "labels": [ + { + "label": "Université Paul-Sabatier", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009160" + ], + "preferred": "501100009160" + }, + "GRID": { + "all": "grid.15781.3a", + "preferred": "grid.15781.3a" + }, + "ISNI": { + "all": [ + "0000 0001 0723 035X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1273188" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02v6n4042.json b/v1.50/v1/02v6n4042.json new file mode 100644 index 000000000..4ed94a623 --- /dev/null +++ b/v1.50/v1/02v6n4042.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/02v6n4042", + "name": "Instituto Europeu de Estudos Superiores", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Escola Superior de Tecnologias de Fafe", + "type": "Child", + "id": "https://ror.org/04qs3nf63" + } + ], + "addresses": [ + { + "lat": 41.45083, + "lng": -8.17258, + "state": null, + "state_code": null, + "city": "Fafe", + "geonames_city": { + "id": 2739788, + "city": "Fafe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iees.pt" + ], + "aliases": [ + "European Institute of Higher Studies" + ], + "acronyms": [ + "IEES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02vb93k64.json b/v1.50/v1/02vb93k64.json new file mode 100644 index 000000000..dfd143339 --- /dev/null +++ b/v1.50/v1/02vb93k64.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02vb93k64", + "name": "Institute of the Environment", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/environment" + ], + "aliases": [ + "University of Ottawa Institute of the Environment", + "Université d'Ottawa Institut de l'environnement", + "uOttawa Institute of the Environment" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut de l'environnement", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/02vjkv261.json b/v1.50/v1/02vjkv261.json new file mode 100644 index 000000000..cb0e3c223 --- /dev/null +++ b/v1.50/v1/02vjkv261.json @@ -0,0 +1,1369 @@ +{ + "id": "https://ror.org/02vjkv261", + "name": "Inserm", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Adaptateurs de Signalisation en Hématologie", + "type": "Child", + "id": "https://ror.org/03837fc46" + }, + { + "label": "Laboratoire Adhésion et inflammation", + "type": "Child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Centre de Recherche en Cancérologie de Lyon", + "type": "Child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Centre de Recherche en Cancérologie de Toulouse", + "type": "Child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Institut Thématique Cancer", + "type": "Child", + "id": "https://ror.org/04zdwr798" + }, + { + "label": "Institut thématique Biologie cellulaire, développement et évolution", + "type": "Child", + "id": "https://ror.org/024k3xe80" + }, + { + "label": "Centre Interdisciplinaire de Recherche en Biologie", + "type": "Child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "Child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Centre de Recherche Médecine, Sciences, Santé, Santé Mentale, Société", + "type": "Child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Centre de Recherche sur l'Inflammation", + "type": "Child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre Méditerranéen de Médecine Moléculaire", + "type": "Child", + "id": "https://ror.org/029rfe283" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "Child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "Child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "Child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "Child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Référence Déficits Immunitaires Héréditaires", + "type": "Child", + "id": "https://ror.org/009p5nb11" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "Child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Cognition, Action, and Sensorimotor Plasticity", + "type": "Child", + "id": "https://ror.org/03xe54902" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "Child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Délégation Paris 11", + "type": "Child", + "id": "https://ror.org/0589k3111" + }, + { + "label": "Délégation Paris 12", + "type": "Child", + "id": "https://ror.org/00sbttv49" + }, + { + "label": "Délégation Paris 5", + "type": "Child", + "id": "https://ror.org/02e0y6e06" + }, + { + "label": "Délégation Paris 6", + "type": "Child", + "id": "https://ror.org/03rt48n94" + }, + { + "label": "Délégation Paris 7", + "type": "Child", + "id": "https://ror.org/00bw5n526" + }, + { + "label": "Délégation Régionale Auvergne-Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/0530j9m17" + }, + { + "label": "Délégation Régionale Est", + "type": "Child", + "id": "https://ror.org/04kv7c795" + }, + { + "label": "Délégation Régionale Grand Ouest", + "type": "Child", + "id": "https://ror.org/01qa4rf46" + }, + { + "label": "Délégation Régionale Nord Ouest", + "type": "Child", + "id": "https://ror.org/00jmxvy70" + }, + { + "label": "Délégation Régionale Nouvelle-Aquitaine", + "type": "Child", + "id": "https://ror.org/044rb3f07" + }, + { + "label": "Délégation Régionale Occitanie Méditerranée", + "type": "Child", + "id": "https://ror.org/01ddr6d46" + }, + { + "label": "Délégation Régionale Occitanie Pyrénées", + "type": "Child", + "id": "https://ror.org/03xssrp53" + }, + { + "label": "Délégation Régionale Provence-Alpes-Côte d’Azur et Corse", + "type": "Child", + "id": "https://ror.org/01s8rwd67" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Equipe Soutenue par la Région et par l'Inserm", + "type": "Child", + "id": "https://ror.org/03e801006" + }, + { + "label": "Institut thématique Génétique, génomique et bioinformatique", + "type": "Child", + "id": "https://ror.org/01rfstj90" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "Child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "Child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "Child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Institut des Maladies Génétiques Imagine", + "type": "Child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Imagerie et Cerveau", + "type": "Child", + "id": "https://ror.org/01eem7c55" + }, + { + "label": "Immunité et Cancer", + "type": "Child", + "id": "https://ror.org/01zefvs55" + }, + { + "label": "Institut thématique Immunologie, inflammation, infectiologie et microbiologie", + "type": "Child", + "id": "https://ror.org/00r454w59" + }, + { + "label": "Inserm Transfert", + "type": "Child", + "id": "https://ror.org/01wftfc57" + }, + { + "label": "Institut pour l'avancée des biosciences", + "type": "Child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Institut Cochin", + "type": "Child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "Child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut Jacques Monod", + "type": "Child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "Child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "Child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut d'Économie Publique", + "type": "Child", + "id": "https://ror.org/014ycqe77" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "Child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie de Lille", + "type": "Child", + "id": "https://ror.org/05gd4yq49" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Neurobiologie de la Méditerranée", + "type": "Child", + "id": "https://ror.org/02jthx987" + }, + { + "label": "Institut de Neurosciences des Systèmes", + "type": "Child", + "id": "https://ror.org/019kqby73" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "Child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Institut de Recherche en Santé, Environnement et Travail", + "type": "Child", + "id": "https://ror.org/01p178v10" + }, + { + "label": "Institut du Cerveau", + "type": "Child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "Child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut du Thorax", + "type": "Child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "Child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "Child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institut de Biologie Valrose", + "type": "Child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institut de génétique et de biologie moléculaire et cellulaire", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institut de Myologie", + "type": "Child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institut de Recherche sur le Cancer et le Vieillissement de Nice", + "type": "Child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "Centre International de Recherche en Infectiologie", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire CarMeN", + "type": "Child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "Child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "Child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire d'Optique et Biosciences", + "type": "Child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratoire de Recherche Vasculaire Translationnelle", + "type": "Child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "Child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Institut Langevin", + "type": "Child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Lipides, Nutrition, Cancer", + "type": "Child", + "id": "https://ror.org/04d70nb60" + }, + { + "label": "Centre de Recherche en Neurosciences de Lyon", + "type": "Child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Institut thématique Bases moléculaires et structurales du vivant", + "type": "Child", + "id": "https://ror.org/00j5dj575" + }, + { + "label": "Institut Mondor de Recherche Biomédicale", + "type": "Child", + "id": "https://ror.org/04qe59j94" + }, + { + "label": "Institut thématique Neurosciences, sciences cognitives, neurologie, psychiatrie", + "type": "Child", + "id": "https://ror.org/05e7p5n27" + }, + { + "label": "Nutrition, Obésité et Risque Thrombotique", + "type": "Child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Oncogenesis Stress Signaling", + "type": "Child", + "id": "https://ror.org/00bf6bf92" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "Child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Génomes, biologie cellulaire et thérapeutiques", + "type": "Child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "Child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "Child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physiopathologie, métabolisme et nutrition", + "type": "Child", + "id": "https://ror.org/00cmmh940" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "Child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Institut thématique Santé Publique", + "type": "Child", + "id": "https://ror.org/04wbsq162" + }, + { + "label": "Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète", + "type": "Child", + "id": "https://ror.org/05xanhp90" + }, + { + "label": "Skin Research Center", + "type": "Child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "Institut Cellule Souche et Cerveau", + "type": "Child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "Child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "Child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Theories and Approaches of Genomic Complexity", + "type": "Child", + "id": "https://ror.org/025sfbe73" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "Child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "Child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Systèmes avancés de délivrance de principes actifs", + "type": "Child", + "id": "https://ror.org/053ppfe96" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Investigation Clinique - Innovation Technologique de Lille", + "type": "Child", + "id": "https://ror.org/04p4jgt68" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "IMPact de l'Environnement Chimique sur la Santé humaine", + "type": "Child", + "id": "https://ror.org/0455vgw31" + }, + { + "label": "Institute for Translational Research in Inflammation", + "type": "Child", + "id": "https://ror.org/03qy9z186" + }, + { + "label": "Lille Neurosciences & Cognition", + "type": "Child", + "id": "https://ror.org/04p94ax69" + }, + { + "label": "Médicaments et Molécules pour Agir sur les Systèmes Vivants", + "type": "Child", + "id": "https://ror.org/0086epd30" + }, + { + "label": "OncoThAI", + "type": "Child", + "id": "https://ror.org/04q29nn62" + }, + { + "label": "Laboratoire de Physiologie Cellulaire", + "type": "Child", + "id": "https://ror.org/05fjffm04" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Recherche translationnelle sur le diabète", + "type": "Child", + "id": "https://ror.org/03pbmtd68" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "Child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Bacterial RNAs & Medicine", + "type": "Child", + "id": "https://ror.org/031y0x195" + }, + { + "label": "Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer", + "type": "Child", + "id": "https://ror.org/05p7fmf80" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "Child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "Child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre d’Investigation Clinique 1436", + "type": "Child", + "id": "https://ror.org/033z83z59" + }, + { + "label": "Hypoxie et Poumon", + "type": "Child", + "id": "https://ror.org/02mtpz628" + }, + { + "label": "Centre d'Investigation Clinique - Epidémiologie Clinique Saint-Etienne", + "type": "Child", + "id": "https://ror.org/044dp1584" + }, + { + "label": "NeuroDiderot", + "type": "Child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Besançon", + "type": "Child", + "id": "https://ror.org/04nk3ny21" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "Child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "Child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Institute for Translational Medicine and Liver Disease", + "type": "Child", + "id": "https://ror.org/00jvqbw52" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "Child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "Child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "Child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde", + "type": "Child", + "id": "https://ror.org/05vqkgf08" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "Biologie des maladies cardiovasculaires", + "type": "Child", + "id": "https://ror.org/0463z7496" + }, + { + "label": "Nutrition, Diabète et Cerveau", + "type": "Child", + "id": "https://ror.org/052yj6c27" + }, + { + "label": "Pharmacologie et Transplantation", + "type": "Child", + "id": "https://ror.org/013dngs07" + }, + { + "label": "Pathologies Pulmonaires et Plasticité Cellulaire", + "type": "Child", + "id": "https://ror.org/02w7ezv91" + }, + { + "label": "Physiopathologie, autoimmunité, maladies neuromusculaire et thérapie régénératrice", + "type": "Child", + "id": "https://ror.org/034feyf26" + }, + { + "label": "Centre de Génétique Médicale de Marseille", + "type": "Child", + "id": "https://ror.org/01e4wd589" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "Child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Centre d'Investigation Clinique Antilles Guyane", + "type": "Child", + "id": "https://ror.org/029hdt144" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "Child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "Child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "HIPI - Immunologie humaine, physiopathologie et immunithérapie", + "type": "Child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "Child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Institut Droit et Santé", + "type": "Child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "Child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Etude longitudinale française depuis l'enfance", + "type": "Child", + "id": "https://ror.org/03cxgcr75" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "Child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Laboratory for the Bioengineering of Tissues", + "type": "Child", + "id": "https://ror.org/012zmcc30" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "Child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "TBM-Core", + "type": "Child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Centre d’Investigation Clinique des Hôpitaux Universitaires de Strasbourg", + "type": "Child", + "id": "https://ror.org/03zsnyg10" + }, + { + "label": "Bordeaux Imaging Center", + "type": "Child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "Child", + "id": "https://ror.org/034bena10" + }, + { + "label": "RMeS - Regenerative Medicine and Skeleton", + "type": "Child", + "id": "https://ror.org/025agbr41" + }, + { + "label": "Pharmacologie des anti-infectieux et antibiorésistance", + "type": "Child", + "id": "https://ror.org/041v99f68" + }, + { + "label": "Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau", + "type": "Child", + "id": "https://ror.org/040d87505" + }, + { + "label": "Ischémie Reperfusion, Métabolisme et Inflammation Stérile en Transplantation", + "type": "Child", + "id": "https://ror.org/05kkw6065" + }, + { + "label": "Laboratoire de Neurosciences Expérimentales et Cliniques", + "type": "Child", + "id": "https://ror.org/04rfxk768" + }, + { + "label": "Anti-infectieux : supports moléculaires des résistances et innovations thérapeutiques", + "type": "Child", + "id": "https://ror.org/0458p8g61" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "Child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "Centre d'Étude des Pathologies Respiratoires", + "type": "Child", + "id": "https://ror.org/01vxptj17" + }, + { + "label": "Groupe de Recherches sur l’Analyse Multimodale de la Fonction Cérébrale", + "type": "Child", + "id": "https://ror.org/02a9mrq41" + }, + { + "label": "Plateforme d'information et de services pour les maladies rares et les médicaments orphelins", + "type": "Child", + "id": "https://ror.org/05thj7870" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "Child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "Child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre de Recherche Épidémiologie et Statistique", + "type": "Child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Anti-microbiens, Modélisation, Evolution", + "type": "Child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "Child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Organisation Nucléaire et Oncogenèse", + "type": "Child", + "id": "https://ror.org/05q8d3662" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "Child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "Child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Pathogenèse des infections vasculaires", + "type": "Child", + "id": "https://ror.org/00gjnk018" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "Child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Maladies Rares: Génétique et Métabolisme", + "type": "Child", + "id": "https://ror.org/01wvg5605" + }, + { + "label": "Research on healthcare performance", + "type": "Child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "Child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "Child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Physiopathologie et imagerie des troubles neurologiques", + "type": "Child", + "id": "https://ror.org/00vsvph51" + }, + { + "label": "Neuropsychologie et Imagerie de la Mémoire Humaine", + "type": "Child", + "id": "https://ror.org/04f6tkx67" + }, + { + "label": "Mobilités: Vieillissement, Pathologie, Santé", + "type": "Child", + "id": "https://ror.org/028rasm92" + }, + { + "label": "Imagerie Moléculaire et Stratégies Théranostiques", + "type": "Child", + "id": "https://ror.org/03y61y350" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "Child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "Child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Laboratoire d'imagerie translationnelle en oncologie", + "type": "Child", + "id": "https://ror.org/05qy9ka59" + }, + { + "label": "RESTORE", + "type": "Child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "Child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Génomique fonctionnelle comparative", + "type": "Child", + "id": "https://ror.org/016nv8j08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "Child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "L’Inserm dans Paris et l’Île-de-France Centre Nord", + "type": "Child", + "id": "https://ror.org/00jyt4d57" + }, + { + "label": "Défaillance Cardiovasculaire Aiguë et Chronique", + "type": "Child", + "id": "https://ror.org/05ft9wv42" + }, + { + "label": "Nutrition-Génétique et Exposition aux Risques Environnementaux", + "type": "Child", + "id": "https://ror.org/053d03003" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "Child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "The Enteric Nervous System in Gut and Brain Disorders", + "type": "Child", + "id": "https://ror.org/01kbkse74" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "Child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "Child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "Child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "Child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénierie des Connaissances en e-Santé", + "type": "Child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "Child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "PremUP", + "type": "Child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "Child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "Child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "Child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "Child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Infection et inflammation", + "type": "Child", + "id": "https://ror.org/021sh3243" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Laboratoire physiopathologie et pharmacologie clinique de la douleur", + "type": "Child", + "id": "https://ror.org/02k243t26" + }, + { + "label": "Handicap neuromusculaire : Physiopathologie, Biothérapie et Pharmacologie appliquées", + "type": "Child", + "id": "https://ror.org/02nxezb95" + }, + { + "label": "COMETE - Mobilités : Vieillissement, pathologie, santé", + "type": "Child", + "id": "https://ror.org/018z38380" + }, + { + "label": "Endothélium, valvulopathies et insuffisance cardiaque", + "type": "Child", + "id": "https://ror.org/017ed2k28" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/035gq6r08" + }, + { + "label": "Center for Research in Transplantation and Translational Immunology", + "type": "Child", + "id": "https://ror.org/01165k395" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "methodS in Patient-centered outcomes and HEalth ResEarch", + "type": "Child", + "id": "https://ror.org/013m8h627" + }, + { + "label": "Translational Research in Gene Therapy", + "type": "Child", + "id": "https://ror.org/02tg88m31" + }, + { + "label": "Dynamique Microbienne associée aux Infections Urinaires et Respiratoires", + "type": "Child", + "id": "https://ror.org/01a6c6c20" + }, + { + "label": "Génomique du cancer et du cerveau", + "type": "Child", + "id": "https://ror.org/05k71g406" + }, + { + "label": "Unité de recherche interdisciplinaire pour la prévention et le traitement des cancers", + "type": "Child", + "id": "https://ror.org/04b8tg719" + }, + { + "label": "Neuroendocrine, Endocrine and Germinal Differentiation Communication", + "type": "Child", + "id": "https://ror.org/02yvdat18" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "Child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "Child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "Child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Neuroscience et Psychiatrie Translationnelle de Strasbourg", + "type": "Child", + "id": "https://ror.org/05dd6kb95" + }, + { + "label": "Immuno-Rhumathologie moléculaire", + "type": "Child", + "id": "https://ror.org/03k7yrw82" + }, + { + "label": "Laboratoire de Génétique Médicale", + "type": "Child", + "id": "https://ror.org/016wpzq40" + }, + { + "label": "CIC Rennes", + "type": "Child", + "id": "https://ror.org/02baj6743" + }, + { + "label": "UMS BioCore", + "type": "Child", + "id": "https://ror.org/04r5nwv94" + }, + { + "label": "Brain Tech Laboratory", + "type": "Child", + "id": "https://ror.org/01027m165" + }, + { + "label": "Laboratoire Biologie et Biotechnologie pour la Santé", + "type": "Child", + "id": "https://ror.org/0557vhy43" + }, + { + "label": "Hypoxie et Physiopathologies cardiovasculaires et respiratoires", + "type": "Child", + "id": "https://ror.org/0459x4g44" + }, + { + "label": "Haute Technologie Animale Grenobloise", + "type": "Child", + "id": "https://ror.org/03vyv3y87" + }, + { + "label": "Laboratoire Biosciences et bioingénierie pour la Santé", + "type": "Child", + "id": "https://ror.org/039j4x695" + }, + { + "label": "Adaptation, mesure et évaluation en santé. Approches interdisciplinaires", + "type": "Child", + "id": "https://ror.org/04dx32582" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Structure Fédérative de Recherche Santé Lyon Est", + "type": "Child", + "id": "https://ror.org/05dh21g53" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inserm.fr" + ], + "aliases": [], + "acronyms": [ + "INSERM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Inserm", + "labels": [ + { + "label": "French Institute of Health and Medical Research", + "iso639": "en" + }, + { + "label": "Institut National de la Santé et de la Recherche Médicale", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001677" + ], + "preferred": null + }, + "GRID": { + "all": "grid.7429.8", + "preferred": "grid.7429.8" + }, + "ISNI": { + "all": [ + "0000 0001 2186 6389" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1474517" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02vvvm705.json b/v1.50/v1/02vvvm705.json new file mode 100644 index 000000000..14f57637d --- /dev/null +++ b/v1.50/v1/02vvvm705.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/02vvvm705", + "name": "Jade University of Applied Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Fachhochschule Oldenburg/Ostfriesland/Wilhelmshaven", + "type": "Predecessor", + "id": "https://ror.org/032n3b254" + } + ], + "addresses": [ + { + "lat": 53.52998, + "lng": 8.11253, + "state": null, + "state_code": null, + "city": "Wilhelmshaven", + "geonames_city": { + "id": 2808720, + "city": "Wilhelmshaven", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.jade-hs.de" + ], + "aliases": [ + "Jade Hochschule Wilhelmshaven/Oldenburg/Elsfleth", + "Jade UAS" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Jade_University_of_Applied_Sciences", + "labels": [ + { + "label": "Jade Hochschule", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.449343.d", + "preferred": "grid.449343.d" + }, + "ISNI": { + "all": [ + "0000 0001 0828 9468" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q982400" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02wdygz27.json b/v1.50/v1/02wdygz27.json new file mode 100644 index 000000000..6cc532a7b --- /dev/null +++ b/v1.50/v1/02wdygz27.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/02wdygz27", + "name": "Habiter le monde", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-picardie.fr/habiterlemonde/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780431" + ], + "preferred": "Q51780431" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02xhk2825.json b/v1.50/v1/02xhk2825.json new file mode 100644 index 000000000..49abef6c3 --- /dev/null +++ b/v1.50/v1/02xhk2825.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/02xhk2825", + "name": "Pew Charitable Trusts", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Pew Research Center", + "type": "Child", + "id": "https://ror.org/02tvvdy44" + } + ], + "addresses": [ + { + "lat": 39.95238, + "lng": -75.16362, + "state": null, + "state_code": null, + "city": "Philadelphia", + "geonames_city": { + "id": 4560349, + "city": "Philadelphia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pewtrusts.org/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Pew_Charitable_Trusts", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100000875" + ], + "preferred": null + }, + "GRID": { + "all": "grid.453225.7", + "preferred": "grid.453225.7" + }, + "ISNI": { + "all": [ + "0000 0001 0694 6700" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q201296" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02xk45068.json b/v1.50/v1/02xk45068.json new file mode 100644 index 000000000..bd5eaedbe --- /dev/null +++ b/v1.50/v1/02xk45068.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02xk45068", + "name": "Institute for Science, Society and Policy", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/issp" + ], + "aliases": [ + "University of Ottawa Institute for Science, Society and Policy", + "Université d’Ottawa Institut de recherche sur la science, la société et la politique publique", + "uOttawa Institute for Science, Society and Policy" + ], + "acronyms": [ + "ISSP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut de recherche sur la science, la société et la politique publique", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q24191282" + ], + "preferred": "Q24191282" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02xvafv39.json b/v1.50/v1/02xvafv39.json new file mode 100644 index 000000000..ec7346a7b --- /dev/null +++ b/v1.50/v1/02xvafv39.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02xvafv39", + "name": "ALS CURE Project", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.17781, + "lng": -94.71135, + "state": null, + "state_code": null, + "city": "Pleasanton", + "geonames_city": { + "id": 4277481, + "city": "Pleasanton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.alscure.org" + ], + "aliases": [ + "ALS CURE Project, Inc" + ], + "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.50/v1/02zk3am42.json b/v1.50/v1/02zk3am42.json new file mode 100644 index 000000000..554356174 --- /dev/null +++ b/v1.50/v1/02zk3am42.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02zk3am42", + "name": "Luzerner Kantonsspital", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.05048, + "lng": 8.30635, + "state": null, + "state_code": null, + "city": "Lucerne", + "geonames_city": { + "id": 2659811, + "city": "Lucerne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.luks.ch/" + ], + "aliases": [ + "Cantonal Hospital Lucerne", + "Cantonal Hospital of Lucerne", + "Lucerne Cantonal Hospital" + ], + "acronyms": [ + "LUKS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.413354.4", + "preferred": "grid.413354.4" + }, + "ISNI": { + "all": [ + "0000 0000 8587 8621" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/02zzkv309.json b/v1.50/v1/02zzkv309.json new file mode 100644 index 000000000..455532a2a --- /dev/null +++ b/v1.50/v1/02zzkv309.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02zzkv309", + "name": "HES-SO Arc", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.99179, + "lng": 6.931, + "state": null, + "state_code": null, + "city": "Neuchâtel", + "geonames_city": { + "id": 2659496, + "city": "Neuchâtel", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.he-arc.ch/" + ], + "aliases": [ + "HES-SO BE-JU-NE", + "HES-SO HE ARC (Berne, Jura, Neuchâtel)" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.508734.d", + "preferred": "grid.508734.d" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/030hj3061.json b/v1.50/v1/030hj3061.json new file mode 100644 index 000000000..26fd7157c --- /dev/null +++ b/v1.50/v1/030hj3061.json @@ -0,0 +1,158 @@ +{ + "id": "https://ror.org/030hj3061", + "name": "IMT Atlantique", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "Child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Laboratoire de Physique Subatomique et des Technologies Associées", + "type": "Child", + "id": "https://ror.org/01kxesq83" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "Child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Laboratoire des Sciences et Techniques de l’Information de la Communication et de la Connaissance", + "type": "Child", + "id": "https://ror.org/0266kfd37" + }, + { + "label": "Laboratoire de Génie des Procédés – Environnement – Agro-alimentaire", + "type": "Child", + "id": "https://ror.org/05ngxmx20" + }, + { + "label": "Laboratoire d’Économie et de Gestion de l'Ouest", + "type": "Child", + "id": "https://ror.org/010rve435" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Laboratoire d'Economie et de Management de Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/04k51bq24" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "Institut Mines-Télécom", + "type": "Related", + "id": "https://ror.org/025vp2923" + }, + { + "label": "TéSA", + "type": "Related", + "id": "https://ror.org/01zgcd031" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 48.39029, + "lng": -4.48628, + "state": null, + "state_code": null, + "city": "Brest", + "geonames_city": { + "id": 3030300, + "city": "Brest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.imt-atlantique.fr/" + ], + "aliases": [ + "IMT Atlantique Bretagne Pays de la Loire", + "École Nationale Supérieure Mines-Télécom Atlantique Bretagne Pays de la Loire" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007262" + ], + "preferred": null + }, + "GRID": { + "all": "grid.486295.4", + "preferred": "grid.486295.4" + }, + "ISNI": { + "all": [ + "0000 0001 2109 6951" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q27962533", + "Q2460307", + "Q3578250" + ], + "preferred": "Q27962533" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/031tam096.json b/v1.50/v1/031tam096.json new file mode 100644 index 000000000..e2050bc7e --- /dev/null +++ b/v1.50/v1/031tam096.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/031tam096", + "name": "Hospital de Especialidades de Portoviejo", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": -1.05458, + "lng": -80.45445, + "state": null, + "state_code": null, + "city": "Portoviejo", + "geonames_city": { + "id": 3652941, + "city": "Portoviejo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hep.gob.ec" + ], + "aliases": [ + "Portoviejo Specialties Hospital" + ], + "acronyms": [ + "HEP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ecuador", + "country_code": "EC" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/032000t02.json b/v1.50/v1/032000t02.json new file mode 100644 index 000000000..ef16d7016 --- /dev/null +++ b/v1.50/v1/032000t02.json @@ -0,0 +1,125 @@ +{ + "id": "https://ror.org/032000t02", + "name": "Universität Ulm", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Integrated Quantum Science and Technology", + "type": "Child", + "id": "https://ror.org/01z25am55" + }, + { + "label": "Forschungsinstitut für Anwendungsorientierte Wissensverarbeitung", + "type": "Child", + "id": "https://ror.org/04s7shc55" + }, + { + "label": "Fachklinik für Neurologie Dietenbronn", + "type": "Related", + "id": "https://ror.org/04zj3zq12" + }, + { + "label": "Institute for Laser Technology in Medicine and Measurement Technique", + "type": "Related", + "id": "https://ror.org/04edeq073" + }, + { + "label": "University Hospital Ulm", + "type": "Related", + "id": "https://ror.org/05emabm63" + } + ], + "addresses": [ + { + "lat": 48.39841, + "lng": 9.99155, + "state": null, + "state_code": null, + "city": "Ulm", + "geonames_city": { + "id": 2820256, + "city": "Ulm", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni-ulm.de" + ], + "aliases": [ + "University of Ulm" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Ulm", + "labels": [ + { + "label": "Ulm University", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008977" + ], + "preferred": "501100008977" + }, + "GRID": { + "all": "grid.6582.9", + "preferred": "grid.6582.9" + }, + "ISNI": { + "all": [ + "0000 0004 1936 9748" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q835662" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/032241511.json b/v1.50/v1/032241511.json new file mode 100644 index 000000000..b53733b3c --- /dev/null +++ b/v1.50/v1/032241511.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/032241511", + "name": "National Telecommunications and Information Administration", + "email_address": null, + "ip_addresses": [], + "established": 1978, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Institute for Telecommunication Sciences", + "type": "Child", + "id": "https://ror.org/00mj5bc69" + }, + { + "label": "United States Department of Commerce", + "type": "Parent", + "id": "https://ror.org/04chq2495" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ntia.doc.gov" + ], + "aliases": [], + "acronyms": [ + "NTIA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Telecommunications_and_Information_Administration", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100000126" + ], + "preferred": "100000126" + }, + "ISNI": { + "all": [ + "0000 0001 2325 022X" + ], + "preferred": "0000 0001 2325 022X" + }, + "Wikidata": { + "all": [ + "Q6978888" + ], + "preferred": "Q6978888" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/032h9wv69.json b/v1.50/v1/032h9wv69.json new file mode 100644 index 000000000..9087e3ea9 --- /dev/null +++ b/v1.50/v1/032h9wv69.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/032h9wv69", + "name": "Česká archeologická společnost", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.archeologickaspolecnost.cz" + ], + "aliases": [ + "Česká archeologická společnost. Spolek archeologů Čech, Moravy a Slezska" + ], + "acronyms": [ + "CAS", + "ČAS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Czech Archaeological Society", + "iso639": "en" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.485214.e", + "preferred": "grid.485214.e" + }, + "ISNI": { + "all": [ + "0000 0000 9643 7952" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q27866244" + ], + "preferred": "Q27866244" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/032hzb643.json b/v1.50/v1/032hzb643.json new file mode 100644 index 000000000..b2b6cc82b --- /dev/null +++ b/v1.50/v1/032hzb643.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/032hzb643", + "name": "Center for Integrated Protein Science Munich", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Technical University of Munich", + "type": "Parent", + "id": "https://ror.org/02kkvpp62" + }, + { + "label": "Max Planck Society", + "type": "Parent", + "id": "https://ror.org/01hhn8329" + }, + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cipsm.de" + ], + "aliases": [], + "acronyms": [ + "CIPSM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Center_for_Integrated_Protein_Science_Munich", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.452329.b", + "preferred": "grid.452329.b" + }, + "Wikidata": { + "all": [ + "Q1053594" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/032j9w495.json b/v1.50/v1/032j9w495.json new file mode 100644 index 000000000..a21d6ea98 --- /dev/null +++ b/v1.50/v1/032j9w495.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/032j9w495", + "name": "Ministry of Technical and Higher Education", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 8.48714, + "lng": -13.2356, + "state": null, + "state_code": null, + "city": "Freetown", + "geonames_city": { + "id": 2409306, + "city": "Freetown", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mthe.gov.sl" + ], + "aliases": [], + "acronyms": [ + "MTHE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Sierra Leone", + "country_code": "SL" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/032qezt74.json b/v1.50/v1/032qezt74.json new file mode 100644 index 000000000..3a5646853 --- /dev/null +++ b/v1.50/v1/032qezt74.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/032qezt74", + "name": "Institut de Recherche pour le Développement", + "email_address": null, + "ip_addresses": [], + "established": 1937, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Centre de Recherche sur la Biodiversité et l'Environnement", + "type": "Child", + "id": "https://ror.org/03v2c3v44" + } + ], + "addresses": [ + { + "lat": 6.36536, + "lng": 2.41833, + "state": null, + "state_code": null, + "city": "Cotonou", + "geonames_city": { + "id": 2394819, + "city": "Cotonou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.benin.ird.fr/" + ], + "aliases": [], + "acronyms": [ + "IRD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_de_recherche_pour_le_d%C3%A9veloppement", + "labels": [], + "country": { + "country_name": "Benin", + "country_code": "BJ" + }, + "external_ids": { + "GRID": { + "all": "grid.473220.0", + "preferred": "grid.473220.0" + }, + "Wikidata": { + "all": [ + "Q30266824" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/033ebya06.json b/v1.50/v1/033ebya06.json new file mode 100644 index 000000000..44401ae51 --- /dev/null +++ b/v1.50/v1/033ebya06.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/033ebya06", + "name": "UMR BIOdiversity, GEnes & Communities", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + } + ], + "addresses": [ + { + "lat": 44.80849, + "lng": -0.58915, + "state": null, + "state_code": null, + "city": "Talence", + "geonames_city": { + "id": 2973495, + "city": "Talence", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://biogeco.hub.inrae.fr" + ], + "aliases": [ + "UMR BIOGECO" + ], + "acronyms": [ + "BIOGECO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "BIOdiversité, GÊnes & Communautés", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.508391.6", + "preferred": "grid.508391.6" + }, + "ISNI": { + "all": [ + "0000 0004 0622 9359" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q52606108" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/033p9g875.json b/v1.50/v1/033p9g875.json new file mode 100644 index 000000000..e18ea6b8e --- /dev/null +++ b/v1.50/v1/033p9g875.json @@ -0,0 +1,207 @@ +{ + "id": "https://ror.org/033p9g875", + "name": "Institut National Polytechnique de Toulouse", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "AGroecologies, Innovations & Ruralities", + "type": "Child", + "id": "https://ror.org/01sjmsj73" + }, + { + "label": "Genomics and Biotechnology of the Fruits Laboratory", + "type": "Child", + "id": "https://ror.org/01z0xsq42" + }, + { + "label": "Institut de Mécanique des Fluides de Toulouse", + "type": "Child", + "id": "https://ror.org/025nmxp11" + }, + { + "label": "Centre Interuniversitaire de Recherche et d’Ingénierie des Matériaux", + "type": "Child", + "id": "https://ror.org/03xhggy77" + }, + { + "label": "Laboratoire Génie de Production", + "type": "Child", + "id": "https://ror.org/039aqbp11" + }, + { + "label": "Laboratoire de Génie Chimique", + "type": "Child", + "id": "https://ror.org/003jnac13" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "Child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Laboratoire d'Analyse et d'Architecture des Systèmes", + "type": "Child", + "id": "https://ror.org/03vcm6439" + }, + { + "label": "Laboratoire Plasma et Conversion d'Energie", + "type": "Child", + "id": "https://ror.org/02w5mvk98" + }, + { + "label": "Toxalim Research Centre in Food Toxicology", + "type": "Child", + "id": "https://ror.org/0111a5077" + }, + { + "label": "École Nationale Supérieure d'Électrotechnique, d'Électronique, d'Informatique, d'Hydraulique et des Télécommunications", + "type": "Child", + "id": "https://ror.org/05wfw4946" + }, + { + "label": "Dynamiques et écologie des paysages agriforestiers", + "type": "Child", + "id": "https://ror.org/04wa4se75" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "Child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "CALMIP", + "type": "Child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Université de Toulouse", + "type": "Parent", + "id": "https://ror.org/004raaa70" + }, + { + "label": "École Nationale d'Ingénieurs de Tarbes", + "type": "Related", + "id": "https://ror.org/01fdvj254" + }, + { + "label": "TéSA", + "type": "Related", + "id": "https://ror.org/01zgcd031" + }, + { + "label": "Centre de Recherche sur la Biodiversité et l'Environnement", + "type": "Child", + "id": "https://ror.org/03v2c3v44" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.inp-toulouse.fr/fr/index.html" + ], + "aliases": [ + "INP Toulouse" + ], + "acronyms": [ + "INPT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Polytechnic_Institute_of_Toulouse", + "labels": [ + { + "label": "National Polytechnic Institute of Toulouse", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007256" + ], + "preferred": null + }, + "GRID": { + "all": "grid.15363.32", + "preferred": "grid.15363.32" + }, + "ISNI": { + "all": [ + "0000 0001 2176 6169" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3152453" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/033rh4q91.json b/v1.50/v1/033rh4q91.json new file mode 100644 index 000000000..15ef9d4fd --- /dev/null +++ b/v1.50/v1/033rh4q91.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/033rh4q91", + "name": "East Asia Institute of Management", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 1.28967, + "lng": 103.85007, + "state": null, + "state_code": null, + "city": "Singapore", + "geonames_city": { + "id": 1880252, + "city": "Singapore", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.eaim.edu.sg" + ], + "aliases": [], + "acronyms": [ + "EAIM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Singapore", + "country_code": "SG" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/033xefj97.json b/v1.50/v1/033xefj97.json new file mode 100644 index 000000000..5ed4422e3 --- /dev/null +++ b/v1.50/v1/033xefj97.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/033xefj97", + "name": "Interdisciplinary Centre for Black Health", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/interdisciplinary-centre-black-health" + ], + "aliases": [ + "Université d’Ottawa Centre Interdisciplinaire pour la santé des Noir" + ], + "acronyms": [ + "ICBH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre Interdisciplinaire pour la santé des Noir", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/033z59547.json b/v1.50/v1/033z59547.json new file mode 100644 index 000000000..35fb2b06c --- /dev/null +++ b/v1.50/v1/033z59547.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/033z59547", + "name": "Centro de Recursos para el Aprendizaje y la Investigación P. Florentino Idoate S.J.", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Universidad Centroamericana José Simeón Cañas", + "type": "Parent", + "id": "https://ror.org/02bhgkk43" + } + ], + "addresses": [ + { + "lat": 13.6676, + "lng": -89.24623, + "state": null, + "state_code": null, + "city": "Antiguo Cuscatlán", + "geonames_city": { + "id": 12031394, + "city": "Antiguo Cuscatlán", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crai.uca.edu.sv" + ], + "aliases": [ + "Biblioteca \"P. Florentino Idoate S.J.\" .\"", + "Biblioteca P. Florentino Idoate S.J." + ], + "acronyms": [ + "CRAI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "El Salvador", + "country_code": "SV" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q125504344" + ], + "preferred": "Q125504344" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/034nc1205.json b/v1.50/v1/034nc1205.json new file mode 100644 index 000000000..2da47f74c --- /dev/null +++ b/v1.50/v1/034nc1205.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/034nc1205", + "name": "Institut de Nanociència i Nanotecnologia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ub.edu/in2ub/" + ], + "aliases": [ + "Institut de Nanociència i Nanotecnologia de la Universitat de Barcelona", + "Institute of Nanoscience and Nanotechnology of the University of Barcelona", + "Instituto de Nanociencia y Nanotecnología de la Universitat de Barcelona" + ], + "acronyms": [ + "IN2", + "IN2UB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Nanoscience and Nanotechnology", + "iso639": "en" + }, + { + "label": "Instituto de Nanociencia y Nanotecnología", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/0353fsq42.json b/v1.50/v1/0353fsq42.json new file mode 100644 index 000000000..1e3a16131 --- /dev/null +++ b/v1.50/v1/0353fsq42.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/0353fsq42", + "name": "Purbanchal University", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Shree Medical and Technical College", + "type": "Related", + "id": "https://ror.org/010d6pr75" + }, + { + "label": "Himalayan College of Agricultural Sciences and Technology", + "type": "Child", + "id": "https://ror.org/04wxbhc62" + } + ], + "addresses": [ + { + "lat": 26.45505, + "lng": 87.27007, + "state": null, + "state_code": null, + "city": "Biratnagar", + "geonames_city": { + "id": 1283582, + "city": "Biratnagar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.puexam.edu.np/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Purbanchal_University", + "labels": [ + { + "label": "पूर्वाञ्चल विश्वविद्यालय", + "iso639": "ne" + } + ], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": { + "GRID": { + "all": "grid.444739.9", + "preferred": "grid.444739.9" + }, + "ISNI": { + "all": [ + "0000 0000 9021 3093" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7260865" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/035pqt812.json b/v1.50/v1/035pqt812.json new file mode 100644 index 000000000..6bf455dd3 --- /dev/null +++ b/v1.50/v1/035pqt812.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/035pqt812", + "name": "Tecnológico de Estudios Superiores de Coacalco", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.62923, + "lng": -99.10689, + "state": null, + "state_code": null, + "city": "Coacalco", + "geonames_city": { + "id": 3530569, + "city": "Coacalco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tecnologicodecoacalco.edu.mx" + ], + "aliases": [ + "IES Coacalco", + "Instituto de Estudios Superiores de Coacalco", + "Tecnológico de Coacalco" + ], + "acronyms": [ + "TESCo" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 4952" + ], + "preferred": "0000 0004 1770 4952" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/035wq2m82.json b/v1.50/v1/035wq2m82.json new file mode 100644 index 000000000..f74b6856e --- /dev/null +++ b/v1.50/v1/035wq2m82.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/035wq2m82", + "name": "Centre for Law, Technology and Society", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://techlaw.uottawa.ca" + ], + "aliases": [ + "University of Ottawa Centre for Law, Technology and Society", + "Université d’Ottawa Centre de recherche en droit, technologie et société", + "uOttawa Centre for Law, Technology and Society" + ], + "acronyms": [ + "CLTS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de recherche en droit, technologie et société", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/035xkbk20.json b/v1.50/v1/035xkbk20.json new file mode 100644 index 000000000..2f14eca27 --- /dev/null +++ b/v1.50/v1/035xkbk20.json @@ -0,0 +1,528 @@ +{ + "id": "https://ror.org/035xkbk20", + "name": "Aix-Marseille Université", + "email_address": null, + "ip_addresses": [], + "established": 1409, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire Adhésion et inflammation", + "type": "Child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "Child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Bioénergétique et Ingénierie des Protéines", + "type": "Child", + "id": "https://ror.org/0060xzr04" + }, + { + "label": "Centre de Résonance Magnétique Biologique et Médicale", + "type": "Child", + "id": "https://ror.org/04ceg1205" + }, + { + "label": "Centre de physique des particules de Marseille", + "type": "Child", + "id": "https://ror.org/00fw8bp86" + }, + { + "label": "Centre Camille Jullian", + "type": "Child", + "id": "https://ror.org/050sat078" + }, + { + "label": "Centre Norbert Elias", + "type": "Child", + "id": "https://ror.org/028ycv057" + }, + { + "label": "Centre Paul Albert-Février", + "type": "Child", + "id": "https://ror.org/00wcvf151" + }, + { + "label": "Centre de Physique Théorique", + "type": "Child", + "id": "https://ror.org/052bbtn31" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "Child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "Child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Centre de Recherche et d’Enseignement de Géosciences de l’Environnement", + "type": "Child", + "id": "https://ror.org/01pa4h393" + }, + { + "label": "Centro Internacional Franco-Argentino de Ciencias de la Información y de Sistemas", + "type": "Child", + "id": "https://ror.org/02m19wv39" + }, + { + "label": "Institut de Biologie du Développement Marseille", + "type": "Child", + "id": "https://ror.org/02me5cy06" + }, + { + "label": "Economic & Social Sciences, Health Systems & Medical Informatics", + "type": "Child", + "id": "https://ror.org/0508wny29" + }, + { + "label": "Biodiversité et Biotechnologie Fongiques", + "type": "Child", + "id": "https://ror.org/021x7r354" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Groupement de Recherche en Économie Quantitative d’Aix-Marseille", + "type": "Child", + "id": "https://ror.org/02ek9wp67" + }, + { + "label": "Institut Fresnel", + "type": "Child", + "id": "https://ror.org/03br1wy20" + }, + { + "label": "Institut Pythéas Observatoire des Sciences de l’Univers", + "type": "Child", + "id": "https://ror.org/00f945z63" + }, + { + "label": "Institut Universitaire des Systèmes Thermiques Industriels", + "type": "Child", + "id": "https://ror.org/04bgbbh33" + }, + { + "label": "Institut de Chimie Radicalaire", + "type": "Child", + "id": "https://ror.org/000d5zy28" + }, + { + "label": "Institut de Mathématiques de Marseille", + "type": "Child", + "id": "https://ror.org/042h2y225" + }, + { + "label": "Institut de Neurobiologie de la Méditerranée", + "type": "Child", + "id": "https://ror.org/02jthx987" + }, + { + "label": "Institut de Neurophysiopathologie", + "type": "Child", + "id": "https://ror.org/00w2q5j98" + }, + { + "label": "Institut de Neurosciences de la Timone", + "type": "Child", + "id": "https://ror.org/043hw6336" + }, + { + "label": "Institut de Neurosciences des Systèmes", + "type": "Child", + "id": "https://ror.org/019kqby73" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "Child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Institut de Recherche sur les Phénomènes Hors Équilibre", + "type": "Child", + "id": "https://ror.org/03zq0xc17" + }, + { + "label": "Institut des Matériaux, de Microélectronique et des Nanosciences de Provence", + "type": "Child", + "id": "https://ror.org/0238zyh04" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences Moléculaires de Marseille", + "type": "Child", + "id": "https://ror.org/05xr3b330" + }, + { + "label": "Institut des Sciences du Mouvement Etienne-Jules Marey", + "type": "Child", + "id": "https://ror.org/03tncyc93" + }, + { + "label": "Laboratoire d'Economie et de Sociologie du Travail", + "type": "Child", + "id": "https://ror.org/043xjcd49" + }, + { + "label": "Unité de Neurobiologie des canaux Ioniques et de la Synapse", + "type": "Child", + "id": "https://ror.org/04d3p2m17" + }, + { + "label": "Laboratoire Chimie de l'Environnement", + "type": "Child", + "id": "https://ror.org/02pr0xw82" + }, + { + "label": "Laboratoire Méditerranéen de Préhistoire Europe Afrique", + "type": "Child", + "id": "https://ror.org/011gea244" + }, + { + "label": "Laboratoire Parole et Langage", + "type": "Child", + "id": "https://ror.org/05whq8x35" + }, + { + "label": "Laboratoire de Chimie Bactérienne", + "type": "Child", + "id": "https://ror.org/057zme681" + }, + { + "label": "Laboratoire de Mécanique, Modélisation & Procédés Propres", + "type": "Child", + "id": "https://ror.org/01vrxpt40" + }, + { + "label": "Laboratoire de Psychologie Cognitive", + "type": "Child", + "id": "https://ror.org/01rf5x574" + }, + { + "label": "Laboratoire d’Astrophysique de Marseille", + "type": "Child", + "id": "https://ror.org/00ssy9q55" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "Child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Laboratoire de Mécanique et d’Acoustique", + "type": "Child", + "id": "https://ror.org/03787ar02" + }, + { + "label": "Génétique Médicale & Génomique Fonctionelle", + "type": "Child", + "id": "https://ror.org/04fc8dp24" + }, + { + "label": "Institut Méditerranéen de Biodiversité et d'Ecologie Marine et Continentale", + "type": "Child", + "id": "https://ror.org/0409c3995" + }, + { + "label": "Institut Méditerranéen d’Océanologie", + "type": "Child", + "id": "https://ror.org/05258q350" + }, + { + "label": "Nutrition, Obésité et Risque Thrombotique", + "type": "Child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Physique des interactions ioniques et moléculaires", + "type": "Child", + "id": "https://ror.org/04kgf6p94" + }, + { + "label": "Laboratoire Population Environnement Développement", + "type": "Child", + "id": "https://ror.org/017qtjx43" + }, + { + "label": "Station Marine d'Endoume", + "type": "Child", + "id": "https://ror.org/051p9ra28" + }, + { + "label": "Theories and Approaches of Genomic Complexity", + "type": "Child", + "id": "https://ror.org/025sfbe73" + }, + { + "label": "Centre de Recherche et de Documentation sur l'Océanie (CREDO)", + "type": "Child", + "id": "https://ror.org/00jj62164" + }, + { + "label": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "type": "Child", + "id": "https://ror.org/005yfhm28" + }, + { + "label": "Centre International de Rencontres Mathématiques", + "type": "Child", + "id": "https://ror.org/04e3d6y73" + }, + { + "label": "Maison Asie Pacifique", + "type": "Child", + "id": "https://ror.org/03e2syc87" + }, + { + "label": "Centre de recherche français à Jérusalem", + "type": "Child", + "id": "https://ror.org/04ahb2147" + }, + { + "label": "Institut Méditerranéen des Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/00c62kq26" + }, + { + "label": "Centre de Génétique Médicale de Marseille", + "type": "Child", + "id": "https://ror.org/01e4wd589" + }, + { + "label": "Maison méditerranéenne des sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/01ejp3f31" + }, + { + "label": "Centre d'Immunophénomique", + "type": "Child", + "id": "https://ror.org/034bena10" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "Child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "Droit International Comparé et Européen", + "type": "Child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Lasers, Plasmas et Procédés Photoniques", + "type": "Child", + "id": "https://ror.org/01qfjp710" + }, + { + "label": "Centre Gilles-Gaston Granger", + "type": "Child", + "id": "https://ror.org/00axatv03" + }, + { + "label": "Irasia Recherche", + "type": "Child", + "id": "https://ror.org/03bcyhr16" + }, + { + "label": "Institut de Recherches et d'Etudes sur les Mondes Arabes et Musulmans", + "type": "Child", + "id": "https://ror.org/037f3ga09" + }, + { + "label": "Laboratoire d'Archéologie Médiévale et Moderne en Méditerranée", + "type": "Child", + "id": "https://ror.org/05tb4mb78" + }, + { + "label": "Institut d'ethnologie méditerranéenne européenne et comparative", + "type": "Child", + "id": "https://ror.org/050gdsq06" + }, + { + "label": "Temps, espaces, langages, Europe méridionale, Méditerranée", + "type": "Child", + "id": "https://ror.org/010bhn875" + }, + { + "label": "Matériaux Divisés, Interfaces, Réactivité, Electrochimie", + "type": "Child", + "id": "https://ror.org/00m587853" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Macromoléculaires", + "type": "Child", + "id": "https://ror.org/02hwc1z56" + }, + { + "label": "Laboratoire Information Génomique et Structurale", + "type": "Child", + "id": "https://ror.org/05v0fms67" + }, + { + "label": "Huma-Num", + "type": "Child", + "id": "https://ror.org/04ces3204" + }, + { + "label": "OpenEdition Center", + "type": "Child", + "id": "https://ror.org/02aja8v82" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Hôpital de la Timone", + "type": "Related", + "id": "https://ror.org/05jrr4320" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-amu.fr/" + ], + "aliases": [ + "Paul Cézanne University", + "University of Provence", + "University of the Mediterranean", + "Université d'Aix-Marseille" + ], + "acronyms": [ + "AMU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Aix-Marseille_University", + "labels": [ + { + "label": "Aix-Marseille University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007587", + "100007586" + ], + "preferred": null + }, + "GRID": { + "all": "grid.5399.6", + "preferred": "grid.5399.6" + }, + "ISNI": { + "all": [ + "0000 0001 2176 4817" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2302586", + "Q1687719", + "Q1204304" + ], + "preferred": "Q2302586" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/036s2ns10.json b/v1.50/v1/036s2ns10.json new file mode 100644 index 000000000..1fd2648a1 --- /dev/null +++ b/v1.50/v1/036s2ns10.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/036s2ns10", + "name": "uOttawa Brain and Mind Research Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/brain" + ], + "aliases": [ + "University of Ottawa Brain and Mind Research Institute", + "Université d’Ottawa Institut de recherche sur le cerveau" + ], + "acronyms": [ + "uOBMRI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "L'Institut de recherche sur le cerveau", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/036x5ad56.json b/v1.50/v1/036x5ad56.json new file mode 100644 index 000000000..b4781c19a --- /dev/null +++ b/v1.50/v1/036x5ad56.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/036x5ad56", + "name": "University of Luxembourg", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Hospitalier de Luxembourg", + "type": "Related", + "id": "https://ror.org/03xq7w797" + }, + { + "label": "Luxembourg Centre for Contemporary and Digital History", + "type": "Child", + "id": "https://ror.org/054b6pr16" + } + ], + "addresses": [ + { + "lat": 49.61167, + "lng": 6.13, + "state": null, + "state_code": null, + "city": "Luxembourg", + "geonames_city": { + "id": 2960316, + "city": "Luxembourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://wwwen.uni.lu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Luxembourg", + "labels": [ + { + "label": "Universität Luxemburg", + "iso639": "de" + }, + { + "label": "Université du Luxembourg", + "iso639": "fr" + } + ], + "country": { + "country_name": "Luxembourg", + "country_code": "LU" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008665" + ], + "preferred": null + }, + "GRID": { + "all": "grid.16008.3f", + "preferred": "grid.16008.3f" + }, + "ISNI": { + "all": [ + "0000 0001 2295 9843" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q59668" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/036zr1b90.json b/v1.50/v1/036zr1b90.json new file mode 100644 index 000000000..af34aa046 --- /dev/null +++ b/v1.50/v1/036zr1b90.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/036zr1b90", + "name": "Institute of Clinical and Experimental Medicine", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ikem.cz" + ], + "aliases": [], + "acronyms": [ + "IKEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut klinické a experimentální medicíny", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.418930.7", + "preferred": "grid.418930.7" + }, + "ISNI": { + "all": [ + "0000 0001 2299 1368" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q12021666" + ], + "preferred": "Q12021666" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/037130043.json b/v1.50/v1/037130043.json new file mode 100644 index 000000000..fd174b41d --- /dev/null +++ b/v1.50/v1/037130043.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/037130043", + "name": "Virginia Serious Game Institute", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "George Mason University", + "type": "Parent", + "id": "https://ror.org/02jqj7156" + } + ], + "addresses": [ + { + "lat": 38.75095, + "lng": -77.47527, + "state": null, + "state_code": null, + "city": "Manassas", + "geonames_city": { + "id": 4771401, + "city": "Manassas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://vsgi.gmu.edu" + ], + "aliases": [], + "acronyms": [ + "VSGI" + ], + "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.50/v1/037s0tq36.json b/v1.50/v1/037s0tq36.json new file mode 100644 index 000000000..577cc315a --- /dev/null +++ b/v1.50/v1/037s0tq36.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/037s0tq36", + "name": "Centre on International Policy Studies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cips-cepi.ca" + ], + "aliases": [ + "University of Ottawa Centre on International Policy Studies", + "Université d’Ottawa Centre d'études en politiques internationales", + "uOttawa Centre on International Policy Studies" + ], + "acronyms": [ + "CIPS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre d'études en politiques internationales", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/039fj2469.json b/v1.50/v1/039fj2469.json new file mode 100644 index 000000000..b2888ecde --- /dev/null +++ b/v1.50/v1/039fj2469.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/039fj2469", + "name": "Observatoire de la Côte d’Azur", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Astrophysique Relativiste, Théories, Expériences, Métrologie, Instrumentation, Signaux", + "type": "Child", + "id": "https://ror.org/031ah7413" + }, + { + "label": "Géoazur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Lagrange Laboratory", + "type": "Child", + "id": "https://ror.org/02fdv8735" + }, + { + "label": "Université Côte d'Azur", + "type": "Parent", + "id": "https://ror.org/019tgvf94" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + } + ], + "addresses": [ + { + "lat": 43.70313, + "lng": 7.26608, + "state": null, + "state_code": null, + "city": "Nice", + "geonames_city": { + "id": 2990440, + "city": "Nice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.oca.eu/?lang=en" + ], + "aliases": [], + "acronyms": [ + "OCA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/C%C3%B4te_d%27Azur_Observatory", + "labels": [ + { + "label": "Observatoire de la côte d'azur", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.440460.2", + "preferred": "grid.440460.2" + }, + "ISNI": { + "all": [ + "0000 0001 2181 5557" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2991466" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/039nazg33.json b/v1.50/v1/039nazg33.json new file mode 100644 index 000000000..3e657f899 --- /dev/null +++ b/v1.50/v1/039nazg33.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/039nazg33", + "name": "Institute of Entomology", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + }, + { + "label": "Czech Academy of Sciences, Biology Centre", + "type": "Successor", + "id": "https://ror.org/05pq4yn02" + } + ], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.entu.cas.cz/en/" + ], + "aliases": [ + "Entomologický Ústav" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.447761.7", + "preferred": "grid.447761.7" + }, + "ISNI": { + "all": [ + "0000 0004 0396 9503" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/039spa369.json b/v1.50/v1/039spa369.json new file mode 100644 index 000000000..cc9be9c0f --- /dev/null +++ b/v1.50/v1/039spa369.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/039spa369", + "name": "Universidad Tecnológica Fidel Velázquez", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.64177, + "lng": -99.3068, + "state": null, + "state_code": null, + "city": "Ciudad Nicolás Romero", + "geonames_city": { + "id": 3522732, + "city": "Ciudad Nicolás Romero", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://utfv.edomex.gob.mx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/039yjh421.json b/v1.50/v1/039yjh421.json new file mode 100644 index 000000000..a627be745 --- /dev/null +++ b/v1.50/v1/039yjh421.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/039yjh421", + "name": "Deutsch-Französisches Institut", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.89731, + "lng": 9.19161, + "state": null, + "state_code": null, + "city": "Ludwigsburg", + "geonames_city": { + "id": 2875392, + "city": "Ludwigsburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dfi.de" + ], + "aliases": [ + "German-French Institute" + ], + "acronyms": [ + "DFI" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Deutsch-Franz%C3%B6sisches_Institut", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q469824" + ], + "preferred": "Q469824" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03a0px669.json b/v1.50/v1/03a0px669.json new file mode 100644 index 000000000..86f16db28 --- /dev/null +++ b/v1.50/v1/03a0px669.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03a0px669", + "name": "Northeast Brooklyn Housing Development Corporation", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nebhdco.org/" + ], + "aliases": [], + "acronyms": [ + "NEBHDCo" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.487100.a", + "preferred": "grid.487100.a" + }, + "Wikidata": { + "all": [ + "Q41568617" + ], + "preferred": "Q41568617" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03a26mh11.json b/v1.50/v1/03a26mh11.json new file mode 100644 index 000000000..d0d7af66d --- /dev/null +++ b/v1.50/v1/03a26mh11.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03a26mh11", + "name": "Laboratoire de Physique de l'ENS", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lpens.phys.ens.fr/" + ], + "aliases": [], + "acronyms": [ + "LPENS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "LPENS Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.507635.2", + "preferred": "grid.507635.2" + }, + "Wikidata": { + "all": [ + "Q90407706" + ], + "preferred": "Q90407706" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03abrgd14.json b/v1.50/v1/03abrgd14.json new file mode 100644 index 000000000..2dac7689b --- /dev/null +++ b/v1.50/v1/03abrgd14.json @@ -0,0 +1,139 @@ +{ + "id": "https://ror.org/03abrgd14", + "name": "Centre for Research on Ecology and Forestry Applications", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CERCA Institution", + "type": "Parent", + "id": "https://ror.org/01bkbaq61" + }, + { + "label": "Universitat Autònoma de Barcelona", + "type": "Related", + "id": "https://ror.org/052g8jq94" + }, + { + "label": "Universitat de Barcelona", + "type": "Related", + "id": "https://ror.org/021018s57" + }, + { + "label": "Institut d'Estudis Catalans", + "type": "Related", + "id": "https://ror.org/04b27tr16" + }, + { + "label": "Consejo Superior de Investigaciones Científicas", + "type": "Related", + "id": "https://ror.org/02gfc7t72" + }, + { + "label": "Government of Catalonia", + "type": "Related", + "id": "https://ror.org/01bg62x04" + }, + { + "label": "Institut de Recerca de la Biodiversitat de la Universitat de Barcelona", + "type": "Related", + "id": "https://ror.org/01wfb3668" + }, + { + "label": "Global Ecology Unit CREAF-CSIC-UAB", + "type": "Child", + "id": "https://ror.org/023c4vk26" + } + ], + "addresses": [ + { + "lat": 41.49109, + "lng": 2.14079, + "state": null, + "state_code": null, + "city": "Cerdanyola del Vallès", + "geonames_city": { + "id": 3109402, + "city": "Cerdanyola del Vallès", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.creaf.cat" + ], + "aliases": [], + "acronyms": [ + "CREAF", + "CREAF-CERCA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de Recerca Ecològica i Aplicacions Forestals", + "iso639": "ca" + }, + { + "label": "Centro de Investigación Ecológica y Aplicaciones Forestales", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.452388.0", + "preferred": "grid.452388.0" + }, + "ISNI": { + "all": [ + "0000 0001 0722 403X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q11913495" + ], + "preferred": "Q11913495" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03aes0d95.json b/v1.50/v1/03aes0d95.json new file mode 100644 index 000000000..936fe9a7c --- /dev/null +++ b/v1.50/v1/03aes0d95.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03aes0d95", + "name": "Centre Intégré de Santé et Services Sociaux de Chaudière-Appalache", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Centre intégré de santé et de services sociaux de Chaudière-Appalaches", + "type": "Successor", + "id": "https://ror.org/05ghbjx71" + } + ], + "addresses": [ + { + "lat": 46.09371, + "lng": -71.30539, + "state": null, + "state_code": null, + "city": "Thetford-Mines", + "geonames_city": { + "id": 6943827, + "city": "Thetford-Mines", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cisss-ca.gouv.qc.ca/index.php" + ], + "aliases": [ + "CISSS of Chaudière-Appalaches" + ], + "acronyms": [ + "CISSS" + ], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.477049.9", + "preferred": "grid.477049.9" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03am2jy38.json b/v1.50/v1/03am2jy38.json new file mode 100644 index 000000000..a1957b721 --- /dev/null +++ b/v1.50/v1/03am2jy38.json @@ -0,0 +1,169 @@ +{ + "id": "https://ror.org/03am2jy38", + "name": "Université de Perpignan", + "email_address": null, + "ip_addresses": [], + "established": 1350, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", + "type": "Child", + "id": "https://ror.org/01jt5ms28" + }, + { + "label": "Centre de Recherches Insulaires et Observatoire de l'Environnement", + "type": "Child", + "id": "https://ror.org/02tp7mm44" + }, + { + "label": "Histoire Naturelle de l’Homme Préhistorique", + "type": "Child", + "id": "https://ror.org/00c3ta789" + }, + { + "label": "Laboratoire Procédés, Matériaux et Energie Solaire", + "type": "Child", + "id": "https://ror.org/05thdk431" + }, + { + "label": "Laboratoire d'Informatique, de Robotique et de Microélectronique de Montpellier", + "type": "Child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Laboratoire Génome et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/038207k30" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 42.69764, + "lng": 2.89541, + "state": null, + "state_code": null, + "city": "Perpignan", + "geonames_city": { + "id": 2987914, + "city": "Perpignan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-perp.fr/" + ], + "aliases": [ + "Universitat de Perpinyà Via Domitia" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Perpignan", + "labels": [ + { + "label": "Universitat de Perpinyà Via Domícia", + "iso639": "ca" + }, + { + "label": "University of Perpignan", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004223" + ], + "preferred": null + }, + "GRID": { + "all": "grid.11136.34", + "preferred": "grid.11136.34" + }, + "ISNI": { + "all": [ + "0000 0001 2192 5916" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q304872" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03be9n013.json b/v1.50/v1/03be9n013.json new file mode 100644 index 000000000..9f804f955 --- /dev/null +++ b/v1.50/v1/03be9n013.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03be9n013", + "name": "University of the South Pacific - Samoa Campus", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of the South Pacific", + "type": "Parent", + "id": "https://ror.org/008stv805" + } + ], + "addresses": [ + { + "lat": -13.83333, + "lng": -171.76666, + "state": null, + "state_code": null, + "city": "Apia", + "geonames_city": { + "id": 4035413, + "city": "Apia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usp.ac.fj/samoa/" + ], + "aliases": [ + "USP Samoa", + "University of the South Pacific Samoa" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Samoa", + "country_code": "WS" + }, + "external_ids": { + "GRID": { + "all": "grid.472440.1", + "preferred": "grid.472440.1" + }, + "Wikidata": { + "all": [ + "Q50376894" + ], + "preferred": "Q50376894" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03bmwyk24.json b/v1.50/v1/03bmwyk24.json new file mode 100644 index 000000000..692454de5 --- /dev/null +++ b/v1.50/v1/03bmwyk24.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/03bmwyk24", + "name": "Tecnológico Nacional de México de Ciudad Jiménez", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.13076, + "lng": -104.92391, + "state": null, + "state_code": null, + "city": "José Mariano Jiménez", + "geonames_city": { + "id": 4013710, + "city": "José Mariano Jiménez", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cdjimenez.tecnm.mx" + ], + "aliases": [ + "Instituto Tecnológico de Cd. Jiménez", + "Instituto Tecnológico de Ciudad Jiménez", + "National Technological Institute of Mexico Cd. Jiménez", + "National Technological Institute of Mexico Ciudad Jiménez", + "TecNM Cd. Jiménez", + "TecNM de Ciudad Jiménez", + "TecNMCdJ", + "TecnNM Campus Cd. Jiménez", + "Tecnológico Nacional de México Campus Ciudad Jiménez" + ], + "acronyms": [ + "ITCdJ" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Tecnol%C3%B3gico_Nacional_de_M%C3%A9xico", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/03c4mmv16.json b/v1.50/v1/03c4mmv16.json new file mode 100644 index 000000000..cd6d3c131 --- /dev/null +++ b/v1.50/v1/03c4mmv16.json @@ -0,0 +1,273 @@ +{ + "id": "https://ror.org/03c4mmv16", + "name": "University of Ottawa", + "email_address": null, + "ip_addresses": [], + "established": 1848, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut du Savoir Montfort", + "type": "Child", + "id": "https://ror.org/04z45pv75" + }, + { + "label": "Joint Attosecond Science Laboratory", + "type": "Child", + "id": "https://ror.org/05y2jpg52" + }, + { + "label": "Max Planck - University of Ottawa Centre for Extreme and Quantum Photonics", + "type": "Child", + "id": "https://ror.org/00wazyk32" + }, + { + "label": "University of Ottawa Skills and Simulation Centre", + "type": "Child", + "id": "https://ror.org/058rwr454" + }, + { + "label": "Ottawa Hospital Research Institute", + "type": "Child", + "id": "https://ror.org/05jtef216" + }, + { + "label": "Children's Hospital of Eastern Ontario", + "type": "Related", + "id": "https://ror.org/05nsbhw27" + }, + { + "label": "Montfort Hospital", + "type": "Related", + "id": "https://ror.org/02crzj551" + }, + { + "label": "Ottawa Hospital", + "type": "Related", + "id": "https://ror.org/03c62dg59" + }, + { + "label": "Royal Ottawa Mental Health Centre", + "type": "Related", + "id": "https://ror.org/056vnsb08" + }, + { + "label": "Centre for Catalysis Research and Innovation", + "type": "Child", + "id": "https://ror.org/00rzr5v92" + }, + { + "label": "Centre for Environmental Law and Global Sustainability", + "type": "Child", + "id": "https://ror.org/04c794867" + }, + { + "label": "Centre for Health Law, Policy and Ethics", + "type": "Child", + "id": "https://ror.org/01m7n4g71" + }, + { + "label": "Centre for Infection, Immunity and Inflammation", + "type": "Child", + "id": "https://ror.org/051pmyn62" + }, + { + "label": "Centre for Interdisciplinary Research on Citizenship and Minorities", + "type": "Child", + "id": "https://ror.org/022knwr79" + }, + { + "label": "Centre for Law, Technology and Society", + "type": "Child", + "id": "https://ror.org/035wq2m82" + }, + { + "label": "Centre for Research on Educational and Community Services", + "type": "Child", + "id": "https://ror.org/03ypxpx75" + }, + { + "label": "Centre for Research on French Canadian Culture", + "type": "Child", + "id": "https://ror.org/048tf4023" + }, + { + "label": "Centre for Research on Health and Nursing", + "type": "Child", + "id": "https://ror.org/05vdb2m56" + }, + { + "label": "Centre on Governance", + "type": "Child", + "id": "https://ror.org/0236dma10" + }, + { + "label": "Centre on International Policy Studies", + "type": "Child", + "id": "https://ror.org/037s0tq36" + }, + { + "label": "Data Literacy Research Institute", + "type": "Child", + "id": "https://ror.org/01ss0kv69" + }, + { + "label": "Human Rights Research and Education Centre", + "type": "Child", + "id": "https://ror.org/05q526p85" + }, + { + "label": "Institute for Science, Society and Policy", + "type": "Child", + "id": "https://ror.org/02xk45068" + }, + { + "label": "Institute of the Environment", + "type": "Child", + "id": "https://ror.org/02vb93k64" + }, + { + "label": "Interdisciplinary Centre for Black Health", + "type": "Child", + "id": "https://ror.org/033xefj97" + }, + { + "label": "Joint Research Center on Systems and Personalized Pharmacology", + "type": "Child", + "id": "https://ror.org/00qf78c11" + }, + { + "label": "LIFE Research Institute", + "type": "Child", + "id": "https://ror.org/05g0swy93" + }, + { + "label": "Music and Health Research Institute", + "type": "Child", + "id": "https://ror.org/00r5mc782" + }, + { + "label": "Nexus for Quantum Technologies Institute", + "type": "Child", + "id": "https://ror.org/02gsv2389" + }, + { + "label": "Ottawa Heart Institute", + "type": "Child", + "id": "https://ror.org/00h533452" + }, + { + "label": "Ottawa Institute of Systems Biology", + "type": "Child", + "id": "https://ror.org/047xz1e88" + }, + { + "label": "Public Law Centre", + "type": "Child", + "id": "https://ror.org/044tjxx32" + }, + { + "label": "Research Centre on the Future of Cities", + "type": "Child", + "id": "https://ror.org/02gzkyr25" + }, + { + "label": "Research Institute for Indigenous studies", + "type": "Child", + "id": "https://ror.org/00kmnzb51" + }, + { + "label": "uOttawa Brain and Mind Research Institute", + "type": "Child", + "id": "https://ror.org/036s2ns10" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uottawa.ca/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Ottawa", + "labels": [ + { + "label": "Université d'Ottawa", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008572" + ], + "preferred": null + }, + "GRID": { + "all": "grid.28046.38", + "preferred": "grid.28046.38" + }, + "ISNI": { + "all": [ + "0000 0001 2182 2255" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q627969" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03c7zyj82.json b/v1.50/v1/03c7zyj82.json new file mode 100644 index 000000000..69c9f7eb9 --- /dev/null +++ b/v1.50/v1/03c7zyj82.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/03c7zyj82", + "name": "Sciences Po Grenoble", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre d'Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique", + "type": "Child", + "id": "https://ror.org/04ndt7n58" + }, + { + "label": "Laboratoire Pacte", + "type": "Child", + "id": "https://ror.org/026j45x50" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 45.16639, + "lng": 5.76472, + "state": null, + "state_code": null, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 6433367, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sciencespo-grenoble.fr" + ], + "aliases": [ + "Institut d'études politiques de Grenoble" + ], + "acronyms": [ + "IEPG" + ], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Institut_d%27%C3%A9tudes_politiques_de_Grenoble", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2190 2626" + ], + "preferred": "0000 0001 2190 2626" + }, + "Wikidata": { + "all": [ + "Q3151959" + ], + "preferred": "Q3151959" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03cg93958.json b/v1.50/v1/03cg93958.json new file mode 100644 index 000000000..0509d61b5 --- /dev/null +++ b/v1.50/v1/03cg93958.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03cg93958", + "name": "Instituto de Assistência Médica ao Servidor Público Estadual", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hospital do Servidor Público Estadual", + "type": "Child", + "id": "https://ror.org/04r1rhv60" + } + ], + "addresses": [ + { + "lat": -23.62703, + "lng": -46.63503, + "state": null, + "state_code": null, + "city": "São Paulo", + "geonames_city": { + "id": 6324358, + "city": "São Paulo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iamspe.sp.gov.br" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Instituto_de_Assist%C3%AAncia_M%C3%A9dica_ao_Servidor_P%C3%BAblico_Estadual", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0411 4654" + ], + "preferred": "0000 0004 0411 4654" + }, + "Wikidata": { + "all": [ + "Q5908712" + ], + "preferred": "Q5908712" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03cs09e53.json b/v1.50/v1/03cs09e53.json new file mode 100644 index 000000000..240052154 --- /dev/null +++ b/v1.50/v1/03cs09e53.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03cs09e53", + "name": "Conflits, représentations et dialogues dans l'univers anglo-saxon", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://corpus.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "CORPUS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/03cvzf910.json b/v1.50/v1/03cvzf910.json new file mode 100644 index 000000000..93d50b979 --- /dev/null +++ b/v1.50/v1/03cvzf910.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/03cvzf910", + "name": "MARE - Centro de Ciências do Mar e do Ambiente", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Lisbon", + "type": "Parent", + "id": "https://ror.org/01c27hj86" + }, + { + "label": "University of Coimbra", + "type": "Parent", + "id": "https://ror.org/04z8k9a98" + }, + { + "label": "Instituto Politécnico de Leiria", + "type": "Parent", + "id": "https://ror.org/010dvvh94" + }, + { + "label": "Universidade Nova de Lisboa", + "type": "Parent", + "id": "https://ror.org/02xankh89" + }, + { + "label": "ISPA - Instituto Universitário", + "type": "Parent", + "id": "https://ror.org/019yg0716" + }, + { + "label": "University of Évora", + "type": "Parent", + "id": "https://ror.org/02gyps716" + } + ], + "addresses": [ + { + "lat": 40.20564, + "lng": -8.41955, + "state": null, + "state_code": null, + "city": "Coimbra", + "geonames_city": { + "id": 2740637, + "city": "Coimbra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mare-centre.pt" + ], + "aliases": [ + "Centro de Ciências do Mar e do Ambiente" + ], + "acronyms": [ + "MARE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100019243" + ], + "preferred": "501100019243" + }, + "ISNI": { + "all": [ + "0000 0004 5897 6567" + ], + "preferred": "0000 0004 5897 6567" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03dfz9238.json b/v1.50/v1/03dfz9238.json new file mode 100644 index 000000000..d6c4187d2 --- /dev/null +++ b/v1.50/v1/03dfz9238.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03dfz9238", + "name": "Akademii Nauk Stosowanych im. Józefa Gołuchowskiego", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.92936, + "lng": 21.38525, + "state": null, + "state_code": null, + "city": "Ostrowiec Świętokrzyski", + "geonames_city": { + "id": 762863, + "city": "Ostrowiec Świętokrzyski", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://goluchowski.edu.pl" + ], + "aliases": [ + "ANSG w Ostrowcu Świętokrzyskim", + "Jozef Goluchowski University of Applied Sciences", + "University of Business and Entrepreneurship in Ostrowiec Świętokrzyski" + ], + "acronyms": [ + "ANSG", + "WSBiP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "GRID": { + "all": "grid.445291.f", + "preferred": "grid.445291.f" + }, + "ISNI": { + "all": [ + "0000 0001 0257 4591" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q9380724" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03dgrff29.json b/v1.50/v1/03dgrff29.json new file mode 100644 index 000000000..d7ba4b5b3 --- /dev/null +++ b/v1.50/v1/03dgrff29.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03dgrff29", + "name": "Instituto Tecnológico Superior de Loreto", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "National Technological Institute of Mexico", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 22.27248, + "lng": -101.98898, + "state": null, + "state_code": null, + "city": "Loreto", + "geonames_city": { + "id": 3998291, + "city": "Loreto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itsloreto.edu.mx" + ], + "aliases": [ + "ITS Loreto", + "TecNM Campus Loreto", + "Tecnológico Nacional de México Campus Loreto" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 1161" + ], + "preferred": "0000 0004 1770 1161" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03e044190.json b/v1.50/v1/03e044190.json new file mode 100644 index 000000000..bcb79bb73 --- /dev/null +++ b/v1.50/v1/03e044190.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/03e044190", + "name": "Spintronique et Technologie des Composants", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.spintec.fr/" + ], + "aliases": [], + "acronyms": [ + "SPINTEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464100.7", + "preferred": "grid.464100.7" + }, + "ISNI": { + "all": [ + "0000 0004 0369 6218" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262456" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03ea0g517.json b/v1.50/v1/03ea0g517.json new file mode 100644 index 000000000..35e04296a --- /dev/null +++ b/v1.50/v1/03ea0g517.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/03ea0g517", + "name": "Ellison Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.507, + "lng": -84.74523, + "state": null, + "state_code": null, + "city": "Oxford", + "geonames_city": { + "id": 4520760, + "city": "Oxford", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://eit.org" + ], + "aliases": [ + "Ellison Institute", + "Ellison Institute for Transformative Medicine", + "Ellison Institute, LLC", + "Lawrence J. Ellison Institute for Transformative Medicine" + ], + "acronyms": [ + "EIT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0714 9024" + ], + "preferred": "0000 0005 0714 9024" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03f90br77.json b/v1.50/v1/03f90br77.json new file mode 100644 index 000000000..b02f1a7e5 --- /dev/null +++ b/v1.50/v1/03f90br77.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/03f90br77", + "name": "Mashreq University", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 15.55177, + "lng": 32.53241, + "state": null, + "state_code": null, + "city": "Khartoum", + "geonames_city": { + "id": 379252, + "city": "Khartoum", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mashreq.edu.sd" + ], + "aliases": [], + "acronyms": [ + "MU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "جامعة المشرق", + "iso639": "ar" + } + ], + "country": { + "country_name": "Sudan", + "country_code": "SD" + }, + "external_ids": { + "GRID": { + "all": "grid.506359.c", + "preferred": "grid.506359.c" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03fdnmv92.json b/v1.50/v1/03fdnmv92.json new file mode 100644 index 000000000..0d9e2d18f --- /dev/null +++ b/v1.50/v1/03fdnmv92.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/03fdnmv92", + "name": "Hôpital Bichat-Claude-Bernard", + "email_address": null, + "ip_addresses": [], + "established": 1882, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "VASCERN", + "type": "Related", + "id": "https://ror.org/005pygq66" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hopital-bichat.aphp.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.411119.d", + "preferred": "grid.411119.d" + }, + "ISNI": { + "all": [ + "0000 0000 8588 831X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3145138" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03gc1p724.json b/v1.50/v1/03gc1p724.json new file mode 100644 index 000000000..b85d64d52 --- /dev/null +++ b/v1.50/v1/03gc1p724.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/03gc1p724", + "name": "Laboratoire de Physique des 2 Infinis Irène Joliot-Curie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Parent", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ijclab.in2p3.fr/" + ], + "aliases": [ + "IJCLab" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of the Physics of the Two Infinities Irène Joliot-Curie", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.508754.b", + "preferred": "grid.508754.b" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03gnr7b55.json b/v1.50/v1/03gnr7b55.json new file mode 100644 index 000000000..861d099b1 --- /dev/null +++ b/v1.50/v1/03gnr7b55.json @@ -0,0 +1,391 @@ +{ + "id": "https://ror.org/03gnr7b55", + "name": "Nantes Université", + "email_address": null, + "ip_addresses": [], + "established": 1460, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Nantais de Sociologie", + "type": "Child", + "id": "https://ror.org/04v837171" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "Child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Chimie et Interdisciplinarité, Synthèse, Analyse, Modélisation", + "type": "Child", + "id": "https://ror.org/04ysg2a58" + }, + { + "label": "Droit et changement social", + "type": "Child", + "id": "https://ror.org/014nzh720" + }, + { + "label": "Federative Institute of Behavioral Addictions", + "type": "Child", + "id": "https://ror.org/05qq96959" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Gene Therapy Laboratory", + "type": "Child", + "id": "https://ror.org/008rwh029" + }, + { + "label": "Institut de Recherche en Génie Civil et Mécanique", + "type": "Child", + "id": "https://ror.org/03x30hb31" + }, + { + "label": "Institut des Matériaux Jean Rouxel", + "type": "Child", + "id": "https://ror.org/00cqpd580" + }, + { + "label": "Institut du Thorax", + "type": "Child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "Child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire de Mathématiques Jean Leray", + "type": "Child", + "id": "https://ror.org/04g1hjn96" + }, + { + "label": "Laboratoire de Physique Subatomique et des Technologies Associées", + "type": "Child", + "id": "https://ror.org/01kxesq83" + }, + { + "label": "Laboratoire de Psychologie des Pays de la Loire", + "type": "Child", + "id": "https://ror.org/007hrfm61" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "Child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Laboratoire de Thermique et Energie de Nantes", + "type": "Child", + "id": "https://ror.org/021fdyt09" + }, + { + "label": "PhysioPathologie des Adaptations Nutritionnelles", + "type": "Child", + "id": "https://ror.org/05vb5nm66" + }, + { + "label": "Laboratoire de Génie des Procédés – Environnement – Agro-alimentaire", + "type": "Child", + "id": "https://ror.org/05ngxmx20" + }, + { + "label": "IRT Jules Verne", + "type": "Child", + "id": "https://ror.org/00qxv3c44" + }, + { + "label": "École Centrale de Nantes", + "type": "Child", + "id": "https://ror.org/03nh7d505" + }, + { + "label": "École Nationale Supérieure d'Architecture de Nantes", + "type": "Child", + "id": "https://ror.org/01jq57122" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "Child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "Littoral, Environnement, Télédétection, Géomatique", + "type": "Child", + "id": "https://ror.org/05sat2s07" + }, + { + "label": "Centre Atlantique de Philosophie", + "type": "Child", + "id": "https://ror.org/059ynac98" + }, + { + "label": "Centre François Viète", + "type": "Child", + "id": "https://ror.org/03mcrfa90" + }, + { + "label": "Centre de Recherche en Éducation de Nantes", + "type": "Child", + "id": "https://ror.org/00b1crx81" + }, + { + "label": "Unité en Sciences Biologiques et Biotechnologies de Nantes", + "type": "Child", + "id": "https://ror.org/05ef4v550" + }, + { + "label": "AlgoSolis", + "type": "Child", + "id": "https://ror.org/05481me13" + }, + { + "label": "Laboratoire de Linguistique de Nantes", + "type": "Child", + "id": "https://ror.org/0009eec40" + }, + { + "label": "Centre de Recherche sur les Identités, les Nations et l'Interculturalité", + "type": "Child", + "id": "https://ror.org/0290yjn87" + }, + { + "label": "LAMO - Littératures Antiques et Modernes", + "type": "Child", + "id": "https://ror.org/05w4vzs78" + }, + { + "label": "Cibles et Médicaments des Infections et de l'Immunité", + "type": "Child", + "id": "https://ror.org/01cqd9q31" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Laboratoire d'Economie et de Management de Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/04k51bq24" + }, + { + "label": "Institut de Recherche en Energie Electrique de Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/00z2bca79" + }, + { + "label": "Center for Research in Transplantation and Translational Immunology", + "type": "Child", + "id": "https://ror.org/01165k395" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "Laboratoire Motricité, Interactions, Performance", + "type": "Child", + "id": "https://ror.org/04q2ax456" + }, + { + "label": "Institut Des Substances et Organismes de la Mer", + "type": "Child", + "id": "https://ror.org/05601z471" + }, + { + "label": "methodS in Patient-centered outcomes and HEalth ResEarch", + "type": "Child", + "id": "https://ror.org/013m8h627" + }, + { + "label": "Translational Research in Gene Therapy", + "type": "Child", + "id": "https://ror.org/02tg88m31" + }, + { + "label": "Centre de Droit Maritime et Océanique", + "type": "Child", + "id": "https://ror.org/008qsjm14" + }, + { + "label": "Institut de recherche en droit privé", + "type": "Child", + "id": "https://ror.org/0269yh980" + }, + { + "label": "Groupement Ligérien pour le Calcul Intensif Distribué", + "type": "Child", + "id": "https://ror.org/02mhxg157" + }, + { + "label": "Centre de recherches en histoire internationale et atlantique", + "type": "Child", + "id": "https://ror.org/058qdtv35" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Child", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "The Enteric Nervous System in Gut and Brain Disorders", + "type": "Child", + "id": "https://ror.org/01kbkse74" + }, + { + "label": "Laboratoire de Planétologie et Géosciences", + "type": "Child", + "id": "https://ror.org/04fm0sh33" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "Structure Fédérative de Recherche Bonamy", + "type": "Child", + "id": "https://ror.org/03p6ach34" + }, + { + "label": "UMS BioCore", + "type": "Child", + "id": "https://ror.org/04r5nwv94" + }, + { + "label": "Centre Hospitalier Universitaire de Nantes", + "type": "Related", + "id": "https://ror.org/05c1qsg97" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Related", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 47.21725, + "lng": -1.55336, + "state": null, + "state_code": null, + "city": "Nantes", + "geonames_city": { + "id": 2990969, + "city": "Nantes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-nantes.fr" + ], + "aliases": [ + "University of Nantes", + "Université de Nantes" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Nantes", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009371" + ], + "preferred": "501100009371" + }, + "GRID": { + "all": "grid.4817.a", + "preferred": "grid.4817.a" + }, + "ISNI": { + "all": [ + "0000 0001 2189 0784" + ], + "preferred": "0000 0001 2189 0784" + }, + "Wikidata": { + "all": [ + "Q259388" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03h5rdc49.json b/v1.50/v1/03h5rdc49.json new file mode 100644 index 000000000..5c44e9178 --- /dev/null +++ b/v1.50/v1/03h5rdc49.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03h5rdc49", + "name": "Francisk Skorina Gomel State University", + "email_address": null, + "ip_addresses": [], + "established": 1930, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.4345, + "lng": 30.9754, + "state": null, + "state_code": null, + "city": "Homyel", + "geonames_city": { + "id": 627907, + "city": "Homyel", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gsu.by" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Francisk_Skorina_Gomel_State_University", + "labels": [ + { + "label": "Гомельский государственный университет имени Франциска Скорины", + "iso639": "ru" + }, + { + "label": "Гомельскі дзяржаўны ўніверсітэт імя Францыска Скарыны", + "iso639": "be" + } + ], + "country": { + "country_name": "Belarus", + "country_code": "BY" + }, + "external_ids": { + "GRID": { + "all": "grid.440509.c", + "preferred": "grid.440509.c" + }, + "ISNI": { + "all": [ + "0000 0001 1503 4316" + ], + "preferred": "0000 0001 1503 4316" + }, + "Wikidata": { + "all": [ + "Q2630637" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03hypw319.json b/v1.50/v1/03hypw319.json new file mode 100644 index 000000000..4ce299487 --- /dev/null +++ b/v1.50/v1/03hypw319.json @@ -0,0 +1,243 @@ +{ + "id": "https://ror.org/03hypw319", + "name": "Université de Reims Champagne-Ardenne", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Fractionnation of AgroResources and Environment", + "type": "Child", + "id": "https://ror.org/00136g547" + }, + { + "label": "Institut de Chimie Moléculaire de Reims", + "type": "Child", + "id": "https://ror.org/03c0nx407" + }, + { + "label": "Groupe de Spectrométrie Moléculaire et Atmosphérique", + "type": "Child", + "id": "https://ror.org/03vyzg221" + }, + { + "label": "Centre de Recherche en Sciences et Technologies de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/016wdna72" + }, + { + "label": "Stress Environnementaux et Biosurveillance des Milieux Aquatiques", + "type": "Child", + "id": "https://ror.org/046cwyy43" + }, + { + "label": "Pathologies Pulmonaires et Plasticité Cellulaire", + "type": "Child", + "id": "https://ror.org/02w7ezv91" + }, + { + "label": "Laboratoire de Mathématiques de Reims", + "type": "Child", + "id": "https://ror.org/01xkfnd03" + }, + { + "label": "Matrice Extracellulaire et Dynamique Cellulaire MEDyC", + "type": "Child", + "id": "https://ror.org/017p6sq53" + }, + { + "label": "Epidémiosurveillance et circulation des parasites dans les environnements", + "type": "Child", + "id": "https://ror.org/01dthb180" + }, + { + "label": "Centre Interdisciplinaire de Recherches sur les Langues Et la Pensée", + "type": "Child", + "id": "https://ror.org/04j8jrf09" + }, + { + "label": "Centre de recherche interdisciplinaire sur les modèles esthétiques et littéraires", + "type": "Child", + "id": "https://ror.org/01x1mwt32" + }, + { + "label": "HABITER Aménagement et géographie politique", + "type": "Child", + "id": "https://ror.org/05eb0k586" + }, + { + "label": "Cognition, Santé, Société", + "type": "Child", + "id": "https://ror.org/00zfr6d18" + }, + { + "label": "Centre d'Etudes et de Recherches sur les Emplois et les Professionnalisations", + "type": "Child", + "id": "https://ror.org/0236xhv80" + }, + { + "label": "Centre de recherche Droit et territoire", + "type": "Child", + "id": "https://ror.org/00k2m1311" + }, + { + "label": "Centre d’Études et de Recherche en Histoire culturelle", + "type": "Child", + "id": "https://ror.org/014g71345" + }, + { + "label": "REGARDS Recherches en Économie Gestion AgroRessources Durabilité Santé", + "type": "Child", + "id": "https://ror.org/03nr3p279" + }, + { + "label": "Performance Santé, Métrologie, Société", + "type": "Child", + "id": "https://ror.org/01tme4g53" + }, + { + "label": "Groupe d'Étude sur les Géomatériaux et ENvironnements Anthropisés", + "type": "Child", + "id": "https://ror.org/04rje0916" + }, + { + "label": "Résistance Induite et Bioprotection des Plantes", + "type": "Child", + "id": "https://ror.org/00p7v1s94" + }, + { + "label": "Institut de Thermique, Mécanique, Matériaux", + "type": "Child", + "id": "https://ror.org/0513ed054" + }, + { + "label": "Laboratoire de Recherche en Nanosciences", + "type": "Child", + "id": "https://ror.org/04h6n9433" + }, + { + "label": "MATériaux et Ingénierie Mécanique", + "type": "Child", + "id": "https://ror.org/00da5hk39" + }, + { + "label": "Biomatériaux et Inflammation en Site Osseux", + "type": "Child", + "id": "https://ror.org/03cnttr74" + }, + { + "label": "BioSpectroscopie Translationnelle", + "type": "Child", + "id": "https://ror.org/00nc5fj04" + }, + { + "label": "Immuno-Régulation des Maladies Auto- immunes Inflammatoires et Cancer", + "type": "Child", + "id": "https://ror.org/04916qv51" + }, + { + "label": "Infections Cardiovasculaires Virales et inflammation en pathologie humaine", + "type": "Child", + "id": "https://ror.org/04a9z6x78" + }, + { + "label": "Centre Hospitalier Universitaire de Reims", + "type": "Related", + "id": "https://ror.org/01jbb3w63" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 49.26526, + "lng": 4.02853, + "state": null, + "state_code": null, + "city": "Reims", + "geonames_city": { + "id": 2984114, + "city": "Reims", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-reims.fr" + ], + "aliases": [ + "University of Reims", + "University of Reims Champagne-Ardenne" + ], + "acronyms": [ + "URCA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Reims_Champagne-Ardenne", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100016399" + ], + "preferred": "501100016399" + }, + "GRID": { + "all": "grid.11667.37", + "preferred": "grid.11667.37" + }, + "ISNI": { + "all": [ + "0000 0004 1937 0618" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2496149" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03j307b25.json b/v1.50/v1/03j307b25.json new file mode 100644 index 000000000..2635f73cc --- /dev/null +++ b/v1.50/v1/03j307b25.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/03j307b25", + "name": "Observatoire de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 1878, + "types": [ + "Education", + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Université Claude Bernard Lyon 1", + "type": "Parent", + "id": "https://ror.org/029brtt94" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Centre de Recherche Astrophysique de Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://observatoire.univ-lyon1.fr/" + ], + "aliases": [ + "Lyon Observatory" + ], + "acronyms": [ + "OSU OSUL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lyon_Observatory", + "labels": [ + { + "label": "Lyon Observatory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482893.c", + "preferred": "grid.482893.c" + }, + "ISNI": { + "all": [ + "0000 0001 1507 9856" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3348374" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03j546b66.json b/v1.50/v1/03j546b66.json new file mode 100644 index 000000000..76c612fb9 --- /dev/null +++ b/v1.50/v1/03j546b66.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03j546b66", + "name": "Klinik und Poliklinik für Psychiatrie und Psychotherapie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "LMU Klinikum", + "type": "Parent", + "id": "https://ror.org/02jet3w32" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.psykl.mri.tum.de/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.491968.b", + "preferred": "grid.491968.b" + }, + "Wikidata": { + "all": [ + "Q50038702" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03jt9em80.json b/v1.50/v1/03jt9em80.json new file mode 100644 index 000000000..4a2896b3f --- /dev/null +++ b/v1.50/v1/03jt9em80.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/03jt9em80", + "name": "Centre de recherches en arts et esthétique", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-picardie.fr/crae/" + ], + "aliases": [], + "acronyms": [ + "CRAE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785614" + ], + "preferred": "Q51785614" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03jyzk483.json b/v1.50/v1/03jyzk483.json new file mode 100644 index 000000000..7735722c1 --- /dev/null +++ b/v1.50/v1/03jyzk483.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/03jyzk483", + "name": "Hôpital Beaujon", + "email_address": null, + "ip_addresses": [], + "established": 1935, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.90018, + "lng": 2.30952, + "state": null, + "state_code": null, + "city": "Clichy", + "geonames_city": { + "id": 3024597, + "city": "Clichy", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hopital-beaujon.aphp.fr/beaujon-2/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Beaujon_Hospital", + "labels": [ + { + "label": "Beaujon Hospital", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.411599.1", + "preferred": "grid.411599.1" + }, + "ISNI": { + "all": [ + "0000 0000 8595 4540" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2690409" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03k118f17.json b/v1.50/v1/03k118f17.json new file mode 100644 index 000000000..f9e7fd723 --- /dev/null +++ b/v1.50/v1/03k118f17.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/03k118f17", + "name": "Wolfram Research (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Wolfram Institute for Computational Foundations of Science", + "type": "Related", + "id": "https://ror.org/05fbn8x75" + } + ], + "addresses": [ + { + "lat": 40.11642, + "lng": -88.24338, + "state": null, + "state_code": null, + "city": "Champaign", + "geonames_city": { + "id": 4887158, + "city": "Champaign", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.wolfram.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Wolfram_Research", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.486191.3", + "preferred": "grid.486191.3" + }, + "ISNI": { + "all": [ + "0000 0004 0501 3388" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1367937" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03k467383.json b/v1.50/v1/03k467383.json new file mode 100644 index 000000000..fcc6e481d --- /dev/null +++ b/v1.50/v1/03k467383.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03k467383", + "name": "University of Oran 2 Mohamed Ben Ahmed", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.69906, + "lng": -0.63588, + "state": null, + "state_code": null, + "city": "Oran", + "geonames_city": { + "id": 2485926, + "city": "Oran", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-oran2.dz" + ], + "aliases": [], + "acronyms": [ + "UNIVORAN2" + ], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Universit%C3%A9_d%27Oran_2_Mohamed_Ben_Ahmed", + "labels": [ + { + "label": "Université d'Oran 2 Mohamed Ben Ahme", + "iso639": "fr" + }, + { + "label": "جامعة وهران 2 محمد بن أحمد", + "iso639": "ar" + } + ], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0457 982X" + ], + "preferred": "0000 0005 0457 982X" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03kaedj42.json b/v1.50/v1/03kaedj42.json new file mode 100644 index 000000000..4328a09f5 --- /dev/null +++ b/v1.50/v1/03kaedj42.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03kaedj42", + "name": "International Dairy Federation", + "email_address": null, + "ip_addresses": [], + "established": 1903, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fil-idf.org" + ], + "aliases": [ + "Federacion Internacional de Lecheria", + "Federation Internationale du lait" + ], + "acronyms": [ + "FIL", + "IDF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2289 8905" + ], + "preferred": "0000 0001 2289 8905" + }, + "Wikidata": { + "all": [ + "Q50078510" + ], + "preferred": "Q50078510" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03keztm33.json b/v1.50/v1/03keztm33.json new file mode 100644 index 000000000..382117c20 --- /dev/null +++ b/v1.50/v1/03keztm33.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03keztm33", + "name": "Hématopoïèse et immunologie", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hematim.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "HEMATIM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51779928" + ], + "preferred": "Q51779928" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03m6ee736.json b/v1.50/v1/03m6ee736.json new file mode 100644 index 000000000..96a784352 --- /dev/null +++ b/v1.50/v1/03m6ee736.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03m6ee736", + "name": "Vermont State University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Northern Vermont University", + "type": "Predecessor", + "id": "https://ror.org/04anrxg79" + }, + { + "label": "Vermont Technical College", + "type": "Predecessor", + "id": "https://ror.org/00j32a689" + }, + { + "label": "Castleton University", + "type": "Predecessor", + "id": "https://ror.org/01qdjtw37" + } + ], + "addresses": [ + { + "lat": 44.63561, + "lng": -72.6804, + "state": null, + "state_code": null, + "city": "Johnson", + "geonames_city": { + "id": 5237538, + "city": "Johnson", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://vermontstate.edu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Vermont_State_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0952 887X" + ], + "preferred": "0000 0005 0952 887X" + }, + "Wikidata": { + "all": [ + "Q113245681" + ], + "preferred": "Q113245681" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03mkjjy25.json b/v1.50/v1/03mkjjy25.json new file mode 100644 index 000000000..4676ed4c7 --- /dev/null +++ b/v1.50/v1/03mkjjy25.json @@ -0,0 +1,290 @@ +{ + "id": "https://ror.org/03mkjjy25", + "name": "Université de Versailles Saint-Quentin-en-Yvelines", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales", + "type": "Child", + "id": "https://ror.org/01qm1tk92" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "Child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Groupe d’Étude de la Matière Condensée", + "type": "Child", + "id": "https://ror.org/01wrng808" + }, + { + "label": "Handicap neuromusculaire : Physiopathologie, Biothérapie et Pharmacologie appliquées", + "type": "Child", + "id": "https://ror.org/02nxezb95" + }, + { + "label": "Institut Lavoisier de Versailles", + "type": "Child", + "id": "https://ror.org/05mzd8v39" + }, + { + "label": "Laboratoire Printemps", + "type": "Child", + "id": "https://ror.org/00mdx2x22" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "Child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Soutenabilité et Résilence", + "type": "Child", + "id": "https://ror.org/047rqcm40" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "Child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Laboratoire atmosphères, milieux, observations spatiales", + "type": "Child", + "id": "https://ror.org/05ppf7q77" + }, + { + "label": "Infection et inflammation", + "type": "Child", + "id": "https://ror.org/021sh3243" + }, + { + "label": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "type": "Child", + "id": "https://ror.org/05r0mw364" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "Child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Centre d’histoire culturelle des sociétés contemporaines", + "type": "Child", + "id": "https://ror.org/0087n5v55" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Laboratoire de Droit des affaires et nouvelles technologies", + "type": "Child", + "id": "https://ror.org/04ate5z57" + }, + { + "label": "Données et algorithmes pour une ville intelligente et durable", + "type": "Child", + "id": "https://ror.org/01xta2p78" + }, + { + "label": "Dynamiques patrimoniales et culturelles", + "type": "Child", + "id": "https://ror.org/00cw4qm30" + }, + { + "label": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "type": "Child", + "id": "https://ror.org/023bv6t84" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "Child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Institut de recherches arctiques Jean Malaurie", + "type": "Child", + "id": "https://ror.org/008hxwy89" + }, + { + "label": "Laboratoire Anthropologie, Archéologie, Biologie", + "type": "Child", + "id": "https://ror.org/023b2c435" + }, + { + "label": "Laboratoire de recherche en Management", + "type": "Child", + "id": "https://ror.org/00s4fex77" + }, + { + "label": "Laboratoire de génétique et biologie cellulaire", + "type": "Child", + "id": "https://ror.org/00edzht24" + }, + { + "label": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "type": "Child", + "id": "https://ror.org/01jdptv64" + }, + { + "label": "Laboratoire d’informatique Parallélisme Réseaux Algorithmes Distribués", + "type": "Child", + "id": "https://ror.org/00qyswv14" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes de Versailles", + "type": "Child", + "id": "https://ror.org/01hcc6p91" + }, + { + "label": "Laboratoire physiopathologie et pharmacologie clinique de la douleur", + "type": "Child", + "id": "https://ror.org/02k243t26" + }, + { + "label": "Risques cliniques et sécurité en santé des femmes et en santé périnatale", + "type": "Child", + "id": "https://ror.org/01wc6sh26" + }, + { + "label": "Centre de recherche Versailles Saint-Quentin Institutions Publiques", + "type": "Child", + "id": "https://ror.org/042j26x71" + }, + { + "label": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "type": "Child", + "id": "https://ror.org/05mfwtg94" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Hôpital Raymond-Poincaré", + "type": "Related", + "id": "https://ror.org/03pef0w96" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 48.80359, + "lng": 2.13424, + "state": null, + "state_code": null, + "city": "Versailles", + "geonames_city": { + "id": 2969679, + "city": "Versailles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uvsq.fr" + ], + "aliases": [], + "acronyms": [ + "UVSQ" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Versailles_Saint-Quentin-en-Yvelines_University", + "labels": [ + { + "label": "Versailles Saint-Quentin-en-Yvelines University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100020875" + ], + "preferred": "501100020875" + }, + "GRID": { + "all": "grid.12832.3a", + "preferred": "grid.12832.3a" + }, + "ISNI": { + "all": [ + "0000 0001 2323 0229" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q186638" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03mmnsr06.json b/v1.50/v1/03mmnsr06.json new file mode 100644 index 000000000..4c4e57b03 --- /dev/null +++ b/v1.50/v1/03mmnsr06.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03mmnsr06", + "name": "Debere Berhan Health Science College", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 9.67954, + "lng": 39.53262, + "state": null, + "state_code": null, + "city": "Debre Berhan", + "geonames_city": { + "id": 339734, + "city": "Debre Berhan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dbhsc.edu.et" + ], + "aliases": [], + "acronyms": [ + "DBHSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ethiopia", + "country_code": "ET" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/03nf8d138.json b/v1.50/v1/03nf8d138.json new file mode 100644 index 000000000..770c42202 --- /dev/null +++ b/v1.50/v1/03nf8d138.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/03nf8d138", + "name": "CHANGINS - Haute école de viticulture et œnologie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.38318, + "lng": 6.23955, + "state": null, + "state_code": null, + "city": "Nyon", + "geonames_city": { + "id": 2659422, + "city": "Nyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.changins.ch" + ], + "aliases": [ + "CHANGINS", + "HES-SO CHANGINS – Haute école de viticulture et œnologie", + "Haute école de viticulture et œnologie" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/03nh7d505.json b/v1.50/v1/03nh7d505.json new file mode 100644 index 000000000..229d476a6 --- /dev/null +++ b/v1.50/v1/03nh7d505.json @@ -0,0 +1,141 @@ +{ + "id": "https://ror.org/03nh7d505", + "name": "École Centrale de Nantes", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut de Recherche en Génie Civil et Mécanique", + "type": "Child", + "id": "https://ror.org/03x30hb31" + }, + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire de Recherche Hydrodynamique, Energétique et Environnement Atmosphérique", + "type": "Child", + "id": "https://ror.org/057axh226" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "Child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Groupement Ligérien pour le Calcul Intensif Distribué", + "type": "Child", + "id": "https://ror.org/02mhxg157" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Child", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Nantes Université", + "type": "Parent", + "id": "https://ror.org/03gnr7b55" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 47.21725, + "lng": -1.55336, + "state": null, + "state_code": null, + "city": "Nantes", + "geonames_city": { + "id": 2990969, + "city": "Nantes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ec-nantes.fr/" + ], + "aliases": [ + "Centrale Nantes" + ], + "acronyms": [ + "ECN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_centrale_de_Nantes", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.16068.39", + "preferred": "grid.16068.39" + }, + "ISNI": { + "all": [ + "0000 0001 2203 9289" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273458" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03nhjew95.json b/v1.50/v1/03nhjew95.json new file mode 100644 index 000000000..c86164c0e --- /dev/null +++ b/v1.50/v1/03nhjew95.json @@ -0,0 +1,313 @@ +{ + "id": "https://ror.org/03nhjew95", + "name": "Université de Rouen Normandie", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire de Didactique André Revuz", + "type": "Child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "Centre de Recherches sur les Fonctionnements et Dysfonctionnements Psychologiques", + "type": "Child", + "id": "https://ror.org/03467xv55" + }, + { + "label": "Complexe de Recherche Interprofessionnel en Aérothermochimie", + "type": "Child", + "id": "https://ror.org/01k1ngp50" + }, + { + "label": "Endothélium, valvulopathies et insuffisance cardiaque", + "type": "Child", + "id": "https://ror.org/017ed2k28" + }, + { + "label": "Groupe de Physique des Matériaux", + "type": "Child", + "id": "https://ror.org/03c2k2909" + }, + { + "label": "Identités et Différenciation de l'Environnement des Espaces et des Sociétés", + "type": "Child", + "id": "https://ror.org/04kcjtk03" + }, + { + "label": "Laboratoire de Mathématiques Raphaël Salem", + "type": "Child", + "id": "https://ror.org/01k1v7590" + }, + { + "label": "Laboratoire COBRA", + "type": "Child", + "id": "https://ror.org/04e8pda19" + }, + { + "label": "Polymères, Biopolymères, Surfaces", + "type": "Child", + "id": "https://ror.org/04hd6wf14" + }, + { + "label": "Normandie Innovation Marché Entreprise Consommation", + "type": "Child", + "id": "https://ror.org/040qadc12" + }, + { + "label": "Laboratoire Morphodynamique Continentale et Côtière", + "type": "Child", + "id": "https://ror.org/05k1a6w82" + }, + { + "label": "Physiopathologie, autoimmunité, maladies neuromusculaire et thérapie régénératrice", + "type": "Child", + "id": "https://ror.org/034feyf26" + }, + { + "label": "Aliments Bioprocédés Toxicologie Environnements", + "type": "Child", + "id": "https://ror.org/04w7xqn11" + }, + { + "label": "Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau", + "type": "Child", + "id": "https://ror.org/040d87505" + }, + { + "label": "Laboratoire de Sécurité des Procédés Chimiques", + "type": "Child", + "id": "https://ror.org/00wdpp052" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Laboratoire d'Informatique, du Traitement de l'Information et des Systèmes", + "type": "Child", + "id": "https://ror.org/01f1vfy95" + }, + { + "label": "Laboratoire Sciences et Méthodes Séparatives", + "type": "Child", + "id": "https://ror.org/03cq0jg45" + }, + { + "label": "Equipe de recherche interdisciplinaire sur les aires culturelles", + "type": "Child", + "id": "https://ror.org/03ex43f61" + }, + { + "label": "Etude et Compréhension de la biodiversité", + "type": "Child", + "id": "https://ror.org/042w6m452" + }, + { + "label": "Laboratoire des dynamiques sociales", + "type": "Child", + "id": "https://ror.org/026jccz16" + }, + { + "label": "Dynamique Microbienne associée aux Infections Urinaires et Respiratoires", + "type": "Child", + "id": "https://ror.org/01a6c6c20" + }, + { + "label": "Dynamique du langage in situ", + "type": "Child", + "id": "https://ror.org/02xvkz230" + }, + { + "label": "Centre universitaire rouennais d’études juridiques", + "type": "Child", + "id": "https://ror.org/017wkmv97" + }, + { + "label": "Centre Interdisciplinaire de Recherche Normand en Education et Formation", + "type": "Child", + "id": "https://ror.org/0328tc677" + }, + { + "label": "Centre d’études des transformations des activités physiques et sportives", + "type": "Child", + "id": "https://ror.org/055eghv78" + }, + { + "label": "Centre d’Etude et de recherche Editer/Interpréter", + "type": "Child", + "id": "https://ror.org/03zpdb397" + }, + { + "label": "Génomique du cancer et du cerveau", + "type": "Child", + "id": "https://ror.org/05k71g406" + }, + { + "label": "Communication Bactérienne et Stratégie Anti-infectieuses", + "type": "Child", + "id": "https://ror.org/03sny2w29" + }, + { + "label": "Epidémiosurveillance et circulation des parasites dans les environnements", + "type": "Child", + "id": "https://ror.org/01dthb180" + }, + { + "label": "Laboratoire de Glycobiologie et Matrice Extracellulaire Végétale", + "type": "Child", + "id": "https://ror.org/00m6gtd76" + }, + { + "label": "Groupe de recherche d’histoire", + "type": "Child", + "id": "https://ror.org/04pjn5n51" + }, + { + "label": "Groupe de Recherche sur le Handicap Ventilatoire et Neurologique", + "type": "Child", + "id": "https://ror.org/000n9zg48" + }, + { + "label": "Groupe de recherche Rouennais en Informatique Fondamentale", + "type": "Child", + "id": "https://ror.org/029qa8t82" + }, + { + "label": "Institut de Recherche en Systèmes Electroniques Embarqués", + "type": "Child", + "id": "https://ror.org/00y3jmn59" + }, + { + "label": "Laboratoire d'Analyse des Sociétés, Transformations et Adaptations", + "type": "Child", + "id": "https://ror.org/05b4p0g26" + }, + { + "label": "Laboratoire d'économie Rouen Normandie", + "type": "Child", + "id": "https://ror.org/007hv9f69" + }, + { + "label": "Neuroendocrine, Endocrine and Germinal Differentiation Communication", + "type": "Child", + "id": "https://ror.org/02yvdat18" + }, + { + "label": "Normandie Université", + "type": "Parent", + "id": "https://ror.org/01k40cz91" + }, + { + "label": "Centre Hospitalier Universitaire de Rouen", + "type": "Related", + "id": "https://ror.org/04cdk4t75" + }, + { + "label": "Hôpital Charles-Nicolle", + "type": "Related", + "id": "https://ror.org/00cxy0s05" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 49.44313, + "lng": 1.09932, + "state": null, + "state_code": null, + "city": "Rouen", + "geonames_city": { + "id": 2982652, + "city": "Rouen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-rouen.fr" + ], + "aliases": [ + "University of Rouen Normandy", + "Université de Rouen" + ], + "acronyms": [ + "URN" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Rouen", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007527" + ], + "preferred": null + }, + "GRID": { + "all": "grid.10400.35", + "preferred": "grid.10400.35" + }, + "ISNI": { + "all": [ + "0000 0001 2108 3034" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q494247" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03nvfe914.json b/v1.50/v1/03nvfe914.json new file mode 100644 index 000000000..9a7abf562 --- /dev/null +++ b/v1.50/v1/03nvfe914.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/03nvfe914", + "name": "Czech Academy of Sciences, Masaryk Institute and Archives", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Archive", + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + } + ], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mua.cas.cz" + ], + "aliases": [ + "Czech Acad Sci, Masaryk Inst & Arch", + "Masaryk Institute and Archives of the Czech Academy of Sciences" + ], + "acronyms": [ + "MIA AS CR", + "MIA ASCR", + "MIA CAS", + "MÚA AV ČR", + "MÚA AVČR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Masarykův ústav a Archiv AV ČR", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448023.9", + "preferred": "grid.448023.9" + }, + "ISNI": { + "all": [ + "0000 0004 4682 1744" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q26832919" + ], + "preferred": "Q26832919" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03pj6ge82.json b/v1.50/v1/03pj6ge82.json new file mode 100644 index 000000000..c62210977 --- /dev/null +++ b/v1.50/v1/03pj6ge82.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/03pj6ge82", + "name": "Ministry of Education and Science of the Republic of Kazakhstan", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Institute for Philosophy, Political Science and Religion Studies", + "type": "Child", + "id": "https://ror.org/04b82qh04" + }, + { + "label": "Institute of Geography", + "type": "Child", + "id": "https://ror.org/01h85cx24" + }, + { + "label": "Institute of Physics and Technology", + "type": "Child", + "id": "https://ror.org/03vaxkw63" + }, + { + "label": "Institute of Plant Biology and Biotechnology", + "type": "Child", + "id": "https://ror.org/00s0yct57" + }, + { + "label": "Institute of Zoology", + "type": "Child", + "id": "https://ror.org/01wtxm109" + }, + { + "label": "Ministry of Science and Higher Education of the Republic of Kazakhstan", + "type": "Successor", + "id": "https://ror.org/05tyne317" + } + ], + "addresses": [ + { + "lat": 51.1801, + "lng": 71.44598, + "state": null, + "state_code": null, + "city": "Astana", + "geonames_city": { + "id": 1526273, + "city": "Astana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.edu.gov.kz/en" + ], + "aliases": [], + "acronyms": [ + "MES" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004561" + ], + "preferred": null + }, + "GRID": { + "all": "grid.424972.e", + "preferred": "grid.424972.e" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03q5e6q66.json b/v1.50/v1/03q5e6q66.json new file mode 100644 index 000000000..802d866d5 --- /dev/null +++ b/v1.50/v1/03q5e6q66.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03q5e6q66", + "name": "Fondazione Ricerca Biomedica Avanzata Onlus - VIMM", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Veneto Institute of Molecular Medicine", + "type": "Related", + "id": "https://ror.org/0048jxt15" + } + ], + "addresses": [ + { + "lat": 45.40797, + "lng": 11.88586, + "state": null, + "state_code": null, + "city": "Padua", + "geonames_city": { + "id": 3171728, + "city": "Padua", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fondbiomed.it" + ], + "aliases": [ + "Fondazione Ricerca Biomedica Avanzata Onlus" + ], + "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.50/v1/03qn8fb07.json b/v1.50/v1/03qn8fb07.json new file mode 100644 index 000000000..8266b5a52 --- /dev/null +++ b/v1.50/v1/03qn8fb07.json @@ -0,0 +1,305 @@ +{ + "id": "https://ror.org/03qn8fb07", + "name": "Commonwealth Scientific and Industrial Research Organisation", + "email_address": null, + "ip_addresses": [], + "established": 1926, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Agriculture and Food", + "type": "Child", + "id": "https://ror.org/03n17ds51" + }, + { + "label": "Animal, Food and Health Sciences", + "type": "Child", + "id": "https://ror.org/05rke7t32" + }, + { + "label": "Astronomy and Space", + "type": "Child", + "id": "https://ror.org/04ynn1b95" + }, + { + "label": "Australia Telescope National Facility", + "type": "Child", + "id": "https://ror.org/05qajvd42" + }, + { + "label": "Australian Centre for Disease Preparedness", + "type": "Child", + "id": "https://ror.org/02aseym49" + }, + { + "label": "Australian National Algae Culture Collection", + "type": "Child", + "id": "https://ror.org/01qv3ez98" + }, + { + "label": "Australian National Fish Collection", + "type": "Child", + "id": "https://ror.org/05hdbs804" + }, + { + "label": "Australian National Herbarium", + "type": "Child", + "id": "https://ror.org/02gkh1e90" + }, + { + "label": "Australian National Insect Collection", + "type": "Child", + "id": "https://ror.org/00c8nx045" + }, + { + "label": "Australian National Wildlife Collection", + "type": "Child", + "id": "https://ror.org/059mabc80" + }, + { + "label": "Australian Resources Research Centre", + "type": "Child", + "id": "https://ror.org/03rzhkf33" + }, + { + "label": "Australian Tree Seed Centre", + "type": "Child", + "id": "https://ror.org/05p3fde54" + }, + { + "label": "Australian e-Health Research Centre", + "type": "Child", + "id": "https://ror.org/04ywhbc61" + }, + { + "label": "CSIRO Health and Biosecurity", + "type": "Child", + "id": "https://ror.org/03jh4jw93" + }, + { + "label": "CSIRO Land and Water", + "type": "Child", + "id": "https://ror.org/057xz1h85" + }, + { + "label": "CSIRO Manufacturing", + "type": "Child", + "id": "https://ror.org/04sx9wp33" + }, + { + "label": "CSIRO Oceans and Atmosphere", + "type": "Child", + "id": "https://ror.org/026nh4520" + }, + { + "label": "CSIRO Publishing", + "type": "Child", + "id": "https://ror.org/051hpv692" + }, + { + "label": "CSIRO Scientific Computing", + "type": "Child", + "id": "https://ror.org/02cgy3m12" + }, + { + "label": "Centre for Marine Socioecology", + "type": "Child", + "id": "https://ror.org/02xhx4j26" + }, + { + "label": "Centre for Southern Hemisphere Oceans Research", + "type": "Child", + "id": "https://ror.org/029pamw34" + }, + { + "label": "Collaboration for Australian Weather and Climate Research", + "type": "Child", + "id": "https://ror.org/01ew37b76" + }, + { + "label": "Data61", + "type": "Child", + "id": "https://ror.org/03q397159" + }, + { + "label": "Division of Energy", + "type": "Child", + "id": "https://ror.org/02bbj5z24" + }, + { + "label": "Division of Fossil Fuels Energy", + "type": "Child", + "id": "https://ror.org/05xx7en86" + }, + { + "label": "Ecosystem Sciences", + "type": "Child", + "id": "https://ror.org/05mbqa235" + }, + { + "label": "Health Sciences and Nutrition", + "type": "Child", + "id": "https://ror.org/0152bt112" + }, + { + "label": "Information and Communication Technologies Centre", + "type": "Child", + "id": "https://ror.org/034x2fx50" + }, + { + "label": "Marine National Facility", + "type": "Child", + "id": "https://ror.org/01mae9353" + }, + { + "label": "Materials Science & Engineering", + "type": "Child", + "id": "https://ror.org/03rs0fg31" + }, + { + "label": "Mineral Resources", + "type": "Child", + "id": "https://ror.org/039b65w79" + }, + { + "label": "NCMI Information and Data Centre", + "type": "Child", + "id": "https://ror.org/041v1ea26" + }, + { + "label": "National Measurement Laboratory", + "type": "Child", + "id": "https://ror.org/031ebne21" + }, + { + "label": "Plant Industry", + "type": "Child", + "id": "https://ror.org/05jg9pj51" + }, + { + "label": "CSIRO BioFoundry", + "type": "Child", + "id": "https://ror.org/02jfhsn35" + }, + { + "label": "Centre for Australian National Biodiversity Research", + "type": "Child", + "id": "https://ror.org/00n82gt57" + }, + { + "label": "Department of Industry, Science and Resources", + "type": "Parent", + "id": "https://ror.org/021z9m619" + }, + { + "label": "Atlas of Living Australia", + "type": "Related", + "id": "https://ror.org/018n2ja79" + }, + { + "label": "Consortium for Ocean-Sea Ice Modelling in Australia", + "type": "Related", + "id": "https://ror.org/00qq77n27" + }, + { + "label": "Marine Biodiversity Hub", + "type": "Related", + "id": "https://ror.org/00jwcjd97" + }, + { + "label": "Integrated Marine Observing System", + "type": "Related", + "id": "https://ror.org/010x3gp67" + }, + { + "label": "Australian National Soil Archive", + "type": "Child", + "id": "https://ror.org/00ek2rf42" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.csiro.au/" + ], + "aliases": [], + "acronyms": [ + "CSIRO" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Commonwealth_Scientific_and_Industrial_Research_Organisation", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100000943" + ], + "preferred": null + }, + "GRID": { + "all": "grid.1016.6", + "preferred": "grid.1016.6" + }, + "ISNI": { + "all": [ + "0000 0001 2173 2719" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1117048" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03r5zec51.json b/v1.50/v1/03r5zec51.json new file mode 100644 index 000000000..483322668 --- /dev/null +++ b/v1.50/v1/03r5zec51.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/03r5zec51", + "name": "HES-SO Valais-Wallis", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institute of Life Sciences", + "type": "Child", + "id": "https://ror.org/00x1rrc95" + }, + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.22739, + "lng": 7.35559, + "state": null, + "state_code": null, + "city": "Sion", + "geonames_city": { + "id": 2658576, + "city": "Sion", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hevs.ch/en/" + ], + "aliases": [ + "University of Applied Sciences and Arts Western Switzerland Valais" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fachhochschule Westschweiz - Wallis", + "iso639": "de" + }, + { + "label": "Haute École Spécialisée de Suisse Occidentale - Valais", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010743" + ], + "preferred": "501100010743" + }, + "GRID": { + "all": "grid.483301.d", + "preferred": "grid.483301.d" + }, + "ISNI": { + "all": [ + "0000 0004 0453 2100" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3128597" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03ry6p839.json b/v1.50/v1/03ry6p839.json new file mode 100644 index 000000000..70080ffb6 --- /dev/null +++ b/v1.50/v1/03ry6p839.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03ry6p839", + "name": "Instituto Tecnológico Superior de Huatusco", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.14, + "lng": -96.88, + "state": null, + "state_code": null, + "city": "Huatusco", + "geonames_city": { + "id": 7778821, + "city": "Huatusco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itshuatusco.edu.mx" + ], + "aliases": [ + "ITS Huatusco" + ], + "acronyms": [ + "ITSH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 0580" + ], + "preferred": "0000 0004 1770 0580" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03sgyqj04.json b/v1.50/v1/03sgyqj04.json new file mode 100644 index 000000000..a4fc6504e --- /dev/null +++ b/v1.50/v1/03sgyqj04.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/03sgyqj04", + "name": "École Nationale Supérieure de Chimie de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1676, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut Charles Gerhardt", + "type": "Child", + "id": "https://ror.org/028wq3277" + }, + { + "label": "Institut Européen des Membranes", + "type": "Child", + "id": "https://ror.org/04nmj9827" + }, + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "Child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Institut de Chimie Séparative de Marcoule", + "type": "Child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.enscm.fr/" + ], + "aliases": [], + "acronyms": [ + "ENSCM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_nationale_sup%C3%A9rieure_de_chimie_de_Montpellier", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418671.d", + "preferred": "grid.418671.d" + }, + "ISNI": { + "all": [ + "0000 0001 2175 3544" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q948420" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03sjk9a61.json b/v1.50/v1/03sjk9a61.json new file mode 100644 index 000000000..7251e3559 --- /dev/null +++ b/v1.50/v1/03sjk9a61.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/03sjk9a61", + "name": "Ministère de l’Enseignement Supérieur et de la Recherche", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "Child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Agence Bibliographique de l'Enseignement Supérieur", + "type": "Child", + "id": "https://ror.org/027xymc69" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.enseignementsup-recherche.gouv.fr" + ], + "aliases": [], + "acronyms": [ + "MESR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Higher_Education_and_Research", + "labels": [ + { + "label": "Ministeri d'Educació Superior i Recerca francès", + "iso639": "ca" + }, + { + "label": "Ministry of Higher Education and Research", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004792", + "501100004562", + "501100004793", + "501100011045", + "100012948" + ], + "preferred": "501100004792" + }, + "GRID": { + "all": "grid.425729.f", + "preferred": "grid.425729.f" + }, + "ISNI": { + "all": [ + "0000 0001 2369 5464" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2726949" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03svwq685.json b/v1.50/v1/03svwq685.json new file mode 100644 index 000000000..df635775e --- /dev/null +++ b/v1.50/v1/03svwq685.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/03svwq685", + "name": "Università degli Studi della Tuscia", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.41937, + "lng": 12.1056, + "state": null, + "state_code": null, + "city": "Viterbo", + "geonames_city": { + "id": 3164039, + "city": "Viterbo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unitus.it" + ], + "aliases": [ + "Tuscia University" + ], + "acronyms": [ + "UNITUS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Tuscia_University", + "labels": [ + { + "label": "University of Tuscia", + "iso639": "en" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016110" + ], + "preferred": "100016110" + }, + "GRID": { + "all": "grid.12597.38", + "preferred": "grid.12597.38" + }, + "ISNI": { + "all": [ + "0000 0001 2298 9743" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1780458" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03ttqt747.json b/v1.50/v1/03ttqt747.json new file mode 100644 index 000000000..6fa1fa6e3 --- /dev/null +++ b/v1.50/v1/03ttqt747.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/03ttqt747", + "name": "Montana Technological University", + "email_address": null, + "ip_addresses": [], + "established": 1889, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Montana University System", + "type": "Parent", + "id": "https://ror.org/052msxy68" + } + ], + "addresses": [ + { + "lat": 46.00382, + "lng": -112.53474, + "state": null, + "state_code": null, + "city": "Butte", + "geonames_city": { + "id": 5642934, + "city": "Butte", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mtech.edu" + ], + "aliases": [ + "Montana State School of Mines", + "Montana Tech", + "Montana Tech of the University of Montana" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Montana_Tech_of_the_University_of_Montana", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100011496" + ], + "preferred": "100011496" + }, + "GRID": { + "all": "grid.282852.7", + "preferred": "grid.282852.7" + }, + "ISNI": { + "all": [ + "0000 0001 2199 4372" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6904341" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03v2c3v44.json b/v1.50/v1/03v2c3v44.json new file mode 100644 index 000000000..4b4a3587c --- /dev/null +++ b/v1.50/v1/03v2c3v44.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/03v2c3v44", + "name": "Centre de Recherche sur la Biodiversité et l'Environnement", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National Polytechnique de Toulouse", + "type": "Parent", + "id": "https://ror.org/033p9g875" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/032qezt74" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crbe.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CRBE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/03v4vk244.json b/v1.50/v1/03v4vk244.json new file mode 100644 index 000000000..9bd632958 --- /dev/null +++ b/v1.50/v1/03v4vk244.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03v4vk244", + "name": "Collegium Polonicum", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Adam Mickiewicz University in Poznań", + "type": "Parent", + "id": "https://ror.org/04g6bbq64" + }, + { + "label": "European University Viadrina", + "type": "Parent", + "id": "https://ror.org/02msan859" + } + ], + "addresses": [ + { + "lat": 52.34714, + "lng": 14.55062, + "state": null, + "state_code": null, + "city": "Frankfurt", + "geonames_city": { + "id": 2925535, + "city": "Frankfurt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cp.edu.pl" + ], + "aliases": [], + "acronyms": [ + "CP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q317296" + ], + "preferred": "Q317296" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03v9h4a52.json b/v1.50/v1/03v9h4a52.json new file mode 100644 index 000000000..a4bfd32db --- /dev/null +++ b/v1.50/v1/03v9h4a52.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03v9h4a52", + "name": "Conservatório Superior de Música de Gaia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.08974, + "lng": -8.6211, + "state": null, + "state_code": null, + "city": "Vilar do Paraíso", + "geonames_city": { + "id": 2732444, + "city": "Vilar do Paraíso", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4651 4701" + ], + "preferred": "0000 0004 4651 4701" + }, + "Wikidata": { + "all": [ + "Q108278801" + ], + "preferred": "Q108278801" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03vaxkw63.json b/v1.50/v1/03vaxkw63.json new file mode 100644 index 000000000..8975d974b --- /dev/null +++ b/v1.50/v1/03vaxkw63.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03vaxkw63", + "name": "Institute of Physics and Technology", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ministry of Science and Higher Education of the Republic of Kazakhstan", + "type": "Parent", + "id": "https://ror.org/05tyne317" + } + ], + "addresses": [ + { + "lat": 43.25, + "lng": 76.91667, + "state": null, + "state_code": null, + "city": "Almaty", + "geonames_city": { + "id": 1526384, + "city": "Almaty", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sci.kz/?q=en/node/425" + ], + "aliases": [], + "acronyms": [ + "IPT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": { + "GRID": { + "all": "grid.450313.0", + "preferred": "grid.450313.0" + }, + "ISNI": { + "all": [ + "0000 0004 1797 8785" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q12568252" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03vkhr254.json b/v1.50/v1/03vkhr254.json new file mode 100644 index 000000000..47c14207a --- /dev/null +++ b/v1.50/v1/03vkhr254.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03vkhr254", + "name": "Centre Virchow-Villermé", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Charité - Universitätsmedizin Berlin", + "type": "Parent", + "id": "https://ror.org/001w7jn25" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iph.charite.de/centre_virchow_villerme/" + ], + "aliases": [ + "Centre Virchow-Villermé für Public Health Paris-Berlin" + ], + "acronyms": [ + "CVV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.507962.f", + "preferred": "grid.507962.f" + }, + "Wikidata": { + "all": [ + "Q47069835" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03vtskf62.json b/v1.50/v1/03vtskf62.json new file mode 100644 index 000000000..b7aed55ed --- /dev/null +++ b/v1.50/v1/03vtskf62.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03vtskf62", + "name": "California Earthquake Authority", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.58157, + "lng": -121.4944, + "state": null, + "state_code": null, + "city": "Sacramento", + "geonames_city": { + "id": 5389489, + "city": "Sacramento", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.earthquakeauthority.com" + ], + "aliases": [], + "acronyms": [ + "CEA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/California_Earthquake_Authority", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008931" + ], + "preferred": null + }, + "GRID": { + "all": "grid.468472.b", + "preferred": "grid.468472.b" + }, + "ISNI": { + "all": [ + "0000 0004 5898 6327" + ], + "preferred": "0000 0004 5898 6327" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03vv60b83.json b/v1.50/v1/03vv60b83.json new file mode 100644 index 000000000..4f03cfcba --- /dev/null +++ b/v1.50/v1/03vv60b83.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03vv60b83", + "name": "Laboratoire de physiologie cellulaire et moléculaire", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lpcm.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "LPCM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781508" + ], + "preferred": "Q51781508" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03wb8xz10.json b/v1.50/v1/03wb8xz10.json new file mode 100644 index 000000000..ccdcda14c --- /dev/null +++ b/v1.50/v1/03wb8xz10.json @@ -0,0 +1,152 @@ +{ + "id": "https://ror.org/03wb8xz10", + "name": "Électricité de France (France)", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Centre d'Enseignement et de Recherche en Environnement Atmosphérique", + "type": "Child", + "id": "https://ror.org/03a84yw54" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Groupe de Physique des Matériaux", + "type": "Child", + "id": "https://ror.org/03c2k2909" + }, + { + "label": "Laboratoire de Biodiversité et Biotechnologies Microbiennes", + "type": "Child", + "id": "https://ror.org/039p01270" + }, + { + "label": "Laboratoire d'Hydraulique Saint-Venant", + "type": "Child", + "id": "https://ror.org/049yaph28" + }, + { + "label": "EDF Energy North America", + "type": "Child", + "id": "https://ror.org/04pq5sx96" + }, + { + "label": "EDF Renouvelables", + "type": "Child", + "id": "https://ror.org/00vng3v16" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "Child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.edf.fr/en/home" + ], + "aliases": [], + "acronyms": [ + "EDF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006289", + "501100016036", + "501100014233" + ], + "preferred": null + }, + "GRID": { + "all": "grid.410455.1", + "preferred": "grid.410455.1" + }, + "ISNI": { + "all": [ + "0000 0001 2298 5443" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q274591" + ], + "preferred": "Q274591" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03wkt5x30.json b/v1.50/v1/03wkt5x30.json new file mode 100644 index 000000000..5614ed12f --- /dev/null +++ b/v1.50/v1/03wkt5x30.json @@ -0,0 +1,240 @@ +{ + "id": "https://ror.org/03wkt5x30", + "name": "Muséum national d'Histoire naturelle", + "email_address": null, + "ip_addresses": [], + "established": 1793, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Mécanismes Adaptatifs et Evolution", + "type": "Child", + "id": "https://ror.org/041tgdz97" + }, + { + "label": "Archéozoologie et Archéobotanique", + "type": "Child", + "id": "https://ror.org/03j82q602" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "Child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "Centre Alexandre Koyré", + "type": "Child", + "id": "https://ror.org/02dqsxz11" + }, + { + "label": "Centre d'Écologie et des Sciences de la Conservation", + "type": "Child", + "id": "https://ror.org/00sad8321" + }, + { + "label": "Molécules de Communication et Adaptation des Micro-organismes", + "type": "Child", + "id": "https://ror.org/04xfycm61" + }, + { + "label": "Evolution des Régulations Endocriniennes", + "type": "Child", + "id": "https://ror.org/03bpcga21" + }, + { + "label": "Histoire Naturelle de l’Homme Préhistorique", + "type": "Child", + "id": "https://ror.org/00c3ta789" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "Child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Institut de minéralogie, de physique des matériaux et de cosmochimie", + "type": "Child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire de Minéralogie & Cosmochimie du Muséum", + "type": "Child", + "id": "https://ror.org/00nwtj239" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "Child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Station d’Écologie Théorique et Expérimentale", + "type": "Child", + "id": "https://ror.org/05d6wfd23" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "Child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Éco-Anthropologie", + "type": "Child", + "id": "https://ror.org/03x0yny97" + }, + { + "label": "Centre de Recherche sur la Conservation", + "type": "Child", + "id": "https://ror.org/05q3pap39" + }, + { + "label": "Patrimoines locaux, Environnement et Globalisation", + "type": "Child", + "id": "https://ror.org/00mryrd39" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "Child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Bases de données sur la Biodiversité, Ecologie, Environnement et Sociétés", + "type": "Child", + "id": "https://ror.org/034gk7456" + }, + { + "label": "Acquisition et Analyse de Données pour l'Histoire naturelle", + "type": "Child", + "id": "https://ror.org/05qhnf349" + }, + { + "label": "PatriNat", + "type": "Child", + "id": "https://ror.org/037eda396" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Méthodes et Outils pour les Sciences Participatives", + "type": "Child", + "id": "https://ror.org/05kytrf83" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "Child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mnhn.fr" + ], + "aliases": [], + "acronyms": [ + "MNHN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Museum_of_Natural_History_(France)", + "labels": [ + { + "label": "National Museum of Natural History", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007522" + ], + "preferred": null + }, + "GRID": { + "all": "grid.410350.3", + "preferred": "grid.410350.3" + }, + "ISNI": { + "all": [ + "0000 0001 2158 1551" + ], + "preferred": "0000 0001 2158 1551" + }, + "Wikidata": { + "all": [ + "Q838691" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03wzc0b85.json b/v1.50/v1/03wzc0b85.json new file mode 100644 index 000000000..787392c2b --- /dev/null +++ b/v1.50/v1/03wzc0b85.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03wzc0b85", + "name": "National Commission for Science, Technology, and Innovation", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -1.28333, + "lng": 36.81667, + "state": null, + "state_code": null, + "city": "Nairobi", + "geonames_city": { + "id": 184745, + "city": "Nairobi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nacosti.go.ke" + ], + "aliases": [ + "National Commission of Science, Technology, and Innovation" + ], + "acronyms": [ + "NACOSTI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Kenya", + "country_code": "KE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005864" + ], + "preferred": null + }, + "GRID": { + "all": "grid.467816.a", + "preferred": "grid.467816.a" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03x42jk29.json b/v1.50/v1/03x42jk29.json new file mode 100644 index 000000000..fe0047587 --- /dev/null +++ b/v1.50/v1/03x42jk29.json @@ -0,0 +1,237 @@ +{ + "id": "https://ror.org/03x42jk29", + "name": "Université Gustave Eiffel", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire de Biomécanique et Mécanique des Chocs", + "type": "Child", + "id": "https://ror.org/02awy7178" + }, + { + "label": "Fédération de Recherche FCLAB", + "type": "Child", + "id": "https://ror.org/01kvxx237" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Laboratoire Modélisation et Simulation Multi-Echelle", + "type": "Child", + "id": "https://ror.org/04rrzfd14" + }, + { + "label": "Laboratoire Navier", + "type": "Child", + "id": "https://ror.org/029hkd614" + }, + { + "label": "Laboratoire Ville Mobilité Transport", + "type": "Child", + "id": "https://ror.org/056vbnz12" + }, + { + "label": "Laboratoire d'Informatique Gaspard-Monge", + "type": "Child", + "id": "https://ror.org/04t50yk91" + }, + { + "label": "Laboratoire d'Ingénierie Circulation Transports", + "type": "Child", + "id": "https://ror.org/02ahzca76" + }, + { + "label": "Laboratoire d'Urbanisme", + "type": "Child", + "id": "https://ror.org/017x69387" + }, + { + "label": "Laboratoire d’Analyse et de Mathématiques Appliquées", + "type": "Child", + "id": "https://ror.org/0581g8849" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Équipe de Recherche sur l’Utilisation des Données Individuelles en Lien avec la Théorie Économique", + "type": "Child", + "id": "https://ror.org/047egvh76" + }, + { + "label": "Dispositifs d'information et de communication à l'ère du numérique - Paris Ile-de-france", + "type": "Child", + "id": "https://ror.org/05wrsh961" + }, + { + "label": "Institut de Recherche en Gestion", + "type": "Child", + "id": "https://ror.org/0546daj73" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "Child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Unité Mixte de Recherche Epidémiologique et de Surveillance Transport Travail Environnement", + "type": "Child", + "id": "https://ror.org/03vmza063" + }, + { + "label": "Laboratoire Interdisciplinaire d'étude du Politique Hannah Arendt", + "type": "Child", + "id": "https://ror.org/03zffa955" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "Child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "Unité Mixte de Recherche en Acoustique Environnementale", + "type": "Child", + "id": "https://ror.org/00tjzq647" + }, + { + "label": "Laboratoire de Psychologie et d’Ergonomie Appliquées", + "type": "Child", + "id": "https://ror.org/0572pak88" + }, + { + "label": "ESIEE Paris", + "type": "Child", + "id": "https://ror.org/04x383a88" + }, + { + "label": "Laboratoire Instrumentation, Simulation et Informatique Scientifique", + "type": "Child", + "id": "https://ror.org/01q2bn656" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Ecole Nationale des Sciences Géographiques", + "type": "Child", + "id": "https://ror.org/03r3n3715" + }, + { + "label": "Laboratoire Techniques, Territoires et Sociétés", + "type": "Child", + "id": "https://ror.org/05fc1hn07" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "Related", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 48.85, + "lng": 2.6, + "state": null, + "state_code": null, + "city": "Champs-sur-Marne", + "geonames_city": { + "id": 3027014, + "city": "Champs-sur-Marne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-gustave-eiffel.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gustave_Eiffel_University", + "labels": [ + { + "label": "Gustave Eiffel University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023359" + ], + "preferred": "501100023359" + }, + "GRID": { + "all": "grid.509737.f", + "preferred": "grid.509737.f" + }, + "Wikidata": { + "all": [ + "Q65153823" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03xftxq32.json b/v1.50/v1/03xftxq32.json new file mode 100644 index 000000000..084e45974 --- /dev/null +++ b/v1.50/v1/03xftxq32.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03xftxq32", + "name": "PhytoTrade Africa", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.phytotradeafrica.com" + ], + "aliases": [], + "acronyms": [ + "PTA" + ], + "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.50/v1/03xjwb503.json b/v1.50/v1/03xjwb503.json new file mode 100644 index 000000000..a12f6fde2 --- /dev/null +++ b/v1.50/v1/03xjwb503.json @@ -0,0 +1,556 @@ +{ + "id": "https://ror.org/03xjwb503", + "name": "Université Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Child", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "type": "Child", + "id": "https://ror.org/05mfwtg94" + }, + { + "label": "CentraleSupélec", + "type": "Child", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Centre de Nanosciences et de Nanotechnologies", + "type": "Child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Informatique, Biologie Intégrative et Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/01aqxgr98" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "Child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Institut des Cellules Souches pour le Traitement et l'Étude des Maladies Monogéniques", + "type": "Child", + "id": "https://ror.org/04g9rt435" + }, + { + "label": "Institut d’Optique Graduate School", + "type": "Child", + "id": "https://ror.org/00d0rke27" + }, + { + "label": "Laboratoire Génie Industriel", + "type": "Child", + "id": "https://ror.org/0455wwj08" + }, + { + "label": "Laboratoire de Physique des 2 Infinis Irène Joliot-Curie", + "type": "Child", + "id": "https://ror.org/03gc1p724" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "Child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratoire de Photonique Quantique et Moléculaire", + "type": "Child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Interactions, Dynamiques et Lasers", + "type": "Child", + "id": "https://ror.org/04dy97z61" + }, + { + "label": "Centre CEA de Saclay", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Child", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Child", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "École Nationale de la Statistique et de l'Administration Économique", + "type": "Child", + "id": "https://ror.org/01fz7mn40" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Child", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "Child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "Child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "SADAPT Science Action Développement - Activités Produits Territoires", + "type": "Child", + "id": "https://ror.org/01cmdgj85" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "Child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "Child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "Child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "Child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "Child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "Child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "Child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "Child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "Centre de Recherche en Design", + "type": "Child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "Child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "Child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "Child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "Child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "Child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "Child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "type": "Child", + "id": "https://ror.org/05r0mw364" + }, + { + "label": "Centre d’histoire culturelle des sociétés contemporaines", + "type": "Child", + "id": "https://ror.org/0087n5v55" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "type": "Child", + "id": "https://ror.org/023bv6t84" + }, + { + "label": "Institut de recherches arctiques Jean Malaurie", + "type": "Child", + "id": "https://ror.org/008hxwy89" + }, + { + "label": "Laboratoire Anthropologie, Archéologie, Biologie", + "type": "Child", + "id": "https://ror.org/023b2c435" + }, + { + "label": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "type": "Child", + "id": "https://ror.org/01jdptv64" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "Child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "Child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "Child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "Child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Intégrité du génome, ARN et cancer", + "type": "Child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "Child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "Child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "Child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "Child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "Child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "Child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut de Biologie Intégrative de la Cellule", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "Child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "Child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Complexité, Innovation et Activités Motrices et Sportives", + "type": "Child", + "id": "https://ror.org/00k3ph542" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "Child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "Child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratoire de Physique Théorique et Modèles Statistiques", + "type": "Child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "Child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "Child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "Child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "Child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/035gq6r08" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.universite-paris-saclay.fr/fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Paris-Saclay", + "labels": [ + { + "label": "Paris-Saclayko Unibertsitatea", + "iso639": "eu" + }, + { + "label": "Universitat París-Saclay", + "iso639": "ca" + }, + { + "label": "University of Paris-Saclay", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007241" + ], + "preferred": null + }, + "GRID": { + "all": "grid.460789.4", + "preferred": "grid.460789.4" + }, + "ISNI": { + "all": [ + "0000 0004 4910 6535" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q109409389" + ], + "preferred": "Q109409389" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03xvvtc63.json b/v1.50/v1/03xvvtc63.json new file mode 100644 index 000000000..069b1b978 --- /dev/null +++ b/v1.50/v1/03xvvtc63.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03xvvtc63", + "name": "Brooklyn Historical Society", + "email_address": null, + "ip_addresses": [], + "established": 1863, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Brooklyn Public Library", + "type": "Parent", + "id": "https://ror.org/051kejp81" + } + ], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.brooklynhistory.org/" + ], + "aliases": [], + "acronyms": [ + "BHS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Brooklyn_Historical_Society", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446382.f", + "preferred": "grid.446382.f" + }, + "ISNI": { + "all": [ + "0000 0001 2303 085X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03yh1tp98.json b/v1.50/v1/03yh1tp98.json new file mode 100644 index 000000000..9ef63921d --- /dev/null +++ b/v1.50/v1/03yh1tp98.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03yh1tp98", + "name": "Fundo Nacional de Investigação", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -25.96222, + "lng": 32.45889, + "state": null, + "state_code": null, + "city": "Matola", + "geonames_city": { + "id": 1039854, + "city": "Matola", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fni.gov.mz" + ], + "aliases": [], + "acronyms": [ + "FNI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mozambique", + "country_code": "MZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/03ykjzh91.json b/v1.50/v1/03ykjzh91.json new file mode 100644 index 000000000..63360e76b --- /dev/null +++ b/v1.50/v1/03ykjzh91.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03ykjzh91", + "name": "Krebsregister Baden-Württemberg", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.78232, + "lng": 9.17702, + "state": null, + "state_code": null, + "city": "Stuttgart", + "geonames_city": { + "id": 2825297, + "city": "Stuttgart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.krebsregister-bw.de" + ], + "aliases": [], + "acronyms": [ + "BWCR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Baden Württemberg Cancer-Registry", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/03ypxpx75.json b/v1.50/v1/03ypxpx75.json new file mode 100644 index 000000000..f7a9725bf --- /dev/null +++ b/v1.50/v1/03ypxpx75.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03ypxpx75", + "name": "Centre for Research on Educational and Community Services", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/crecs" + ], + "aliases": [ + "University of Ottawa Centre for Research on Educational and Community Services", + "Université d’Ottawa Centre de recherche sur les services éducatifs et communautaires", + "uOttawa Centre for Research on Educational and Community Services" + ], + "acronyms": [ + "CRECS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de recherche sur les services éducatifs et communautaires", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q24190850" + ], + "preferred": "Q24190850" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03yv2tx67.json b/v1.50/v1/03yv2tx67.json new file mode 100644 index 000000000..31a56a846 --- /dev/null +++ b/v1.50/v1/03yv2tx67.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/03yv2tx67", + "name": "Auditoría General de la República", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.auditoria.gov.co" + ], + "aliases": [], + "acronyms": [ + "AGR" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Auditor%C3%ADa_General_de_la_Rep%C3%BAblica", + "labels": [], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q127378328" + ], + "preferred": "Q127378328" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/03zthsk19.json b/v1.50/v1/03zthsk19.json new file mode 100644 index 000000000..aa602f751 --- /dev/null +++ b/v1.50/v1/03zthsk19.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03zthsk19", + "name": "Walk21", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.90006, + "lng": -2.07972, + "state": null, + "state_code": null, + "city": "Cheltenham", + "geonames_city": { + "id": 2653261, + "city": "Cheltenham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://walk21.com" + ], + "aliases": [ + "Walk21 Stichting" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_charter_for_walking", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/03zx86w41.json b/v1.50/v1/03zx86w41.json new file mode 100644 index 000000000..416557813 --- /dev/null +++ b/v1.50/v1/03zx86w41.json @@ -0,0 +1,200 @@ +{ + "id": "https://ror.org/03zx86w41", + "name": "ESPCI Paris", + "email_address": null, + "ip_addresses": [], + "established": 1882, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire Plasticité du Cerveau", + "type": "Child", + "id": "https://ror.org/03padqz24" + }, + { + "label": "Gulliver", + "type": "Child", + "id": "https://ror.org/058z3vf87" + }, + { + "label": "Chimie Moléculaire, Macromoléculaire, Matériaux", + "type": "Child", + "id": "https://ror.org/007sc9r91" + }, + { + "label": "Laboratoire de Chimie Organique", + "type": "Child", + "id": "https://ror.org/04db3be62" + }, + { + "label": "Laboratory Colloïdes et Matériaux Divisés", + "type": "Child", + "id": "https://ror.org/03g38sn14" + }, + { + "label": "Laboratoire de Biochimie", + "type": "Child", + "id": "https://ror.org/01thw2g46" + }, + { + "label": "Laboratoire de Physique et d’Étude des Matériaux", + "type": "Child", + "id": "https://ror.org/00a72jq18" + }, + { + "label": "Institut Langevin", + "type": "Child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "Child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Sciences et Ingénierie de la Matière Molle", + "type": "Child", + "id": "https://ror.org/03f0z1g15" + }, + { + "label": "Chimie Biologie Innovation", + "type": "Child", + "id": "https://ror.org/04bgzse17" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "Child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "Child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "ParisTech", + "type": "Parent", + "id": "https://ror.org/05c2qg481" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.espci.fr/en/" + ], + "aliases": [ + "The City of Paris Industrial Physics and Chemistry Higher Educational Institution" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ESPCI_ParisTech", + "labels": [ + { + "label": "Ecole Supérieure de Physique et de Chimie Industrielles de la Ville de Paris", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003068" + ], + "preferred": null + }, + "GRID": { + "all": "grid.15736.36", + "preferred": "grid.15736.36" + }, + "ISNI": { + "all": [ + "0000 0001 1882 0021" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273638" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0407f1r36.json b/v1.50/v1/0407f1r36.json new file mode 100644 index 000000000..88987902f --- /dev/null +++ b/v1.50/v1/0407f1r36.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/0407f1r36", + "name": "Uniwersytet SWPS", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Instytut Biologii Doświadczalnej im. Marcelego Nenckiego", + "type": "Related", + "id": "https://ror.org/04waf7p94" + } + ], + "addresses": [ + { + "lat": 52.22977, + "lng": 21.01178, + "state": null, + "state_code": null, + "city": "Warsaw", + "geonames_city": { + "id": 756135, + "city": "Warsaw", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.swps.pl" + ], + "aliases": [ + "Higher School of Social Psychology", + "Szkoła Wyższa Psychologii Społecznej", + "University of Social Sciences and Humanities" + ], + "acronyms": [ + "SWPS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Social_Sciences_and_Humanities", + "labels": [ + { + "label": "SWPS University", + "iso639": "en" + } + ], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "GRID": { + "all": "grid.433893.6", + "preferred": "grid.433893.6" + }, + "ISNI": { + "all": [ + "0000 0001 2184 0541" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7970913" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0409yxb12.json b/v1.50/v1/0409yxb12.json new file mode 100644 index 000000000..871c33146 --- /dev/null +++ b/v1.50/v1/0409yxb12.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/0409yxb12", + "name": "Al-Farahidi University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.34058, + "lng": 44.40088, + "state": null, + "state_code": null, + "city": "Baghdad", + "geonames_city": { + "id": 98182, + "city": "Baghdad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uoalfarahidi.edu.iq" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://ar.wikipedia.org/wiki/%D8%AC%D8%A7%D9%85%D8%B9%D8%A9_%D8%A7%D9%84%D9%81%D8%B1%D8%A7%D9%87%D9%8A%D8%AF%D9%8A", + "labels": [ + { + "label": "جامعة الفراهيدي", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q25450401" + ], + "preferred": "Q25450401" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/040baw385.json b/v1.50/v1/040baw385.json new file mode 100644 index 000000000..bd95c3b75 --- /dev/null +++ b/v1.50/v1/040baw385.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/040baw385", + "name": "Centrale Marseille", + "email_address": null, + "ip_addresses": [], + "established": 1890, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Groupement de Recherche en Économie Quantitative d’Aix-Marseille", + "type": "Child", + "id": "https://ror.org/02ek9wp67" + }, + { + "label": "Institut Fresnel", + "type": "Child", + "id": "https://ror.org/03br1wy20" + }, + { + "label": "Institut de Mathématiques de Marseille", + "type": "Child", + "id": "https://ror.org/042h2y225" + }, + { + "label": "Institut de Recherche sur les Phénomènes Hors Équilibre", + "type": "Child", + "id": "https://ror.org/03zq0xc17" + }, + { + "label": "Institut des Sciences Moléculaires de Marseille", + "type": "Child", + "id": "https://ror.org/05xr3b330" + }, + { + "label": "Laboratoire de Mécanique, Modélisation & Procédés Propres", + "type": "Child", + "id": "https://ror.org/01vrxpt40" + }, + { + "label": "Laboratoire de Mécanique et d’Acoustique", + "type": "Child", + "id": "https://ror.org/03787ar02" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.centrale-marseille.fr/" + ], + "aliases": [ + "École Centrale de Marseille" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_centrale_de_Marseille", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.419885.9", + "preferred": "grid.419885.9" + }, + "Wikidata": { + "all": [ + "Q273454" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/041g3z125.json b/v1.50/v1/041g3z125.json new file mode 100644 index 000000000..f52b7a267 --- /dev/null +++ b/v1.50/v1/041g3z125.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/041g3z125", + "name": "Volga Region State University of Service", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.5303, + "lng": 49.3461, + "state": null, + "state_code": null, + "city": "Tolyatti", + "geonames_city": { + "id": 482283, + "city": "Tolyatti", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.tolgas.ru/vrsus/university/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Поволжский государственный университет сервиса", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.483968.8", + "preferred": "grid.483968.8" + }, + "ISNI": { + "all": [ + "0000 0004 4657 0367" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4366451" + ], + "preferred": "Q4366451" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/041twcm28.json b/v1.50/v1/041twcm28.json new file mode 100644 index 000000000..fdc45b3ba --- /dev/null +++ b/v1.50/v1/041twcm28.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/041twcm28", + "name": "Leonardo Finmeccanica (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Leonardo (Italy)", + "type": "Parent", + "id": "https://ror.org/0470vke61" + } + ], + "addresses": [ + { + "lat": 38.88101, + "lng": -77.10428, + "state": null, + "state_code": null, + "city": "Arlington", + "geonames_city": { + "id": 4744709, + "city": "Arlington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.leonardocompany.com/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Leonardo-Finmeccanica", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.473264.0", + "preferred": "grid.473264.0" + }, + "Wikidata": { + "all": [ + "Q3700554" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/041w4c980.json b/v1.50/v1/041w4c980.json new file mode 100644 index 000000000..8a523f1b9 --- /dev/null +++ b/v1.50/v1/041w4c980.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/041w4c980", + "name": "Laoshan Laboratory", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.06488, + "lng": 120.38042, + "state": null, + "state_code": null, + "city": "Qingdao", + "geonames_city": { + "id": 1797929, + "city": "Qingdao", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lslab.ac.cn" + ], + "aliases": [ + "崂山实验室" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q127508554" + ], + "preferred": "Q127508554" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/042f28677.json b/v1.50/v1/042f28677.json new file mode 100644 index 000000000..71b821de3 --- /dev/null +++ b/v1.50/v1/042f28677.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/042f28677", + "name": "Tehran Heart Center", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Tehran University of Medical Sciences", + "type": "Parent", + "id": "https://ror.org/01c4pz451" + } + ], + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://thc.tums.ac.ir" + ], + "aliases": [ + "Tehran Heart Center Hospital" + ], + "acronyms": [ + "THC" + ], + "status": "active", + "wikipedia_url": "https://fa.wikipedia.org/wiki/%D9%85%D8%B1%DA%A9%D8%B2_%D9%82%D9%84%D8%A8_%D8%AA%D9%87%D8%B1%D8%A7%D9%86#:~:text=%D9%85%D8%B1%DA%A9%D8%B2%20%D9%82%D9%84%D8%A8%20%D8%AA%D9%87%D8%B1%D8%A7%D9%86%20%DB%8C%DA%A9%20%D8%A8%DB%8C%D9%85%D8%A7%D8%B1%D8%B3%D8%AA%D8%A7%D9%86,%D8%AA%D9%87%D8%B1%D8%A7%D9%86%20%D9%88%20%D8%A7%DB%8C%D8%B1%D8%A7%D9%86%20%D8%A8%D9%87%E2%80%8C%D8%B4%D9%85%D8%A7%D8%B1%20%D9%85%DB%8C%E2%80%8C%D8%B1%D9%88%D8%AF", + "labels": [ + { + "label": "مرکز قلب تهران", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5947687" + ], + "preferred": "Q5947687" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/042mm0k03.json b/v1.50/v1/042mm0k03.json new file mode 100644 index 000000000..93e8d9894 --- /dev/null +++ b/v1.50/v1/042mm0k03.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/042mm0k03", + "name": "Microscopy Australia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Sydney Microscopy & Microanalysis", + "type": "Related", + "id": "https://ror.org/02441px27" + }, + { + "label": "Centre for Advanced Microscopy", + "type": "Related", + "id": "https://ror.org/01s5nqv53" + }, + { + "label": "Centre for Microscopy and Microanalysis", + "type": "Related", + "id": "https://ror.org/00eaqry86" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "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.50/v1/042tfbd02.json b/v1.50/v1/042tfbd02.json new file mode 100644 index 000000000..ef4fc808b --- /dev/null +++ b/v1.50/v1/042tfbd02.json @@ -0,0 +1,143 @@ +{ + "id": "https://ror.org/042tfbd02", + "name": "Institut Polytechnique de Paris", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut Mines-Télécom", + "type": "Child", + "id": "https://ror.org/025vp2923" + }, + { + "label": "École Nationale Supérieure de Techniques Avancées", + "type": "Child", + "id": "https://ror.org/0309cs235" + }, + { + "label": "École Polytechnique", + "type": "Child", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Telecom SudParis", + "type": "Child", + "id": "https://ror.org/05xvk4r52" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "Child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "Child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Microfluidique Physique et Bio-ingénierie", + "type": "Child", + "id": "https://ror.org/05hvqzx20" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Laboratoire Leprince-Ringuet", + "type": "Child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ip-paris.fr/en/home-en/" + ], + "aliases": [ + "IP Paris" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Polytechnic_Institute_of_Paris", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.508893.f", + "preferred": "grid.508893.f" + }, + "Wikidata": { + "all": [ + "Q48759778" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0436nxt45.json b/v1.50/v1/0436nxt45.json new file mode 100644 index 000000000..949f96b5b --- /dev/null +++ b/v1.50/v1/0436nxt45.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/0436nxt45", + "name": "Institute of Hydrobiology, Biology Centre, Academy of Sciences of the Czech Republic", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences, Biology Centre", + "type": "Successor", + "id": "https://ror.org/05pq4yn02" + } + ], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.hbu.cas.cz/" + ], + "aliases": [ + "Academy of Sciences of the Czech Republic Institute of Hydrobiology", + "Akademie Ved Ceske Republiky Hydrobiologicky Ustav" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [ + { + "label": "Hydrobiologický Ústav Biologické Centrum AV ČR", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448010.9", + "preferred": "grid.448010.9" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/043htjv09.json b/v1.50/v1/043htjv09.json new file mode 100644 index 000000000..786c32d1b --- /dev/null +++ b/v1.50/v1/043htjv09.json @@ -0,0 +1,146 @@ +{ + "id": "https://ror.org/043htjv09", + "name": "CY Cergy Paris Université", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Analyse, Géométrie et Modélisation", + "type": "Child", + "id": "https://ror.org/03qgt2624" + }, + { + "label": "Laboratoire de Didactique André Revuz", + "type": "Child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales", + "type": "Child", + "id": "https://ror.org/01qm1tk92" + }, + { + "label": "Equipes Traitement de l'Information et Systèmes", + "type": "Child", + "id": "https://ror.org/0592ata02" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "Child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Théorie Économique, Modélisation et Applications", + "type": "Child", + "id": "https://ror.org/00vctdx48" + }, + { + "label": "Laboratoire Paragraphe", + "type": "Child", + "id": "https://ror.org/00mgd1d10" + }, + { + "label": "Laboratoire de Physique Théorique et Modélisation", + "type": "Child", + "id": "https://ror.org/05nhcdk38" + }, + { + "label": "Laboratoire Cognitions Humaine et Artificielle", + "type": "Child", + "id": "https://ror.org/02k8f5n40" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 49.03894, + "lng": 2.07805, + "state": null, + "state_code": null, + "city": "Cergy-Pontoise", + "geonames_city": { + "id": 8555643, + "city": "Cergy-Pontoise", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-cergy.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CY_Cergy_Paris_University", + "labels": [ + { + "label": "CY Cergy Paris University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.507676.5", + "preferred": "grid.507676.5" + }, + "Wikidata": { + "all": [ + "Q74452784" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0445yn719.json b/v1.50/v1/0445yn719.json new file mode 100644 index 000000000..de2bb4829 --- /dev/null +++ b/v1.50/v1/0445yn719.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/0445yn719", + "name": "Leonardo (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Leonardo (Italy)", + "type": "Parent", + "id": "https://ror.org/0470vke61" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uk.leonardocompany.com" + ], + "aliases": [ + "Finmeccanica", + "Leonardo-Finmeccanica" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Leonardo_S.p.A.", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.507481.f", + "preferred": "grid.507481.f" + }, + "Wikidata": { + "all": [ + "Q81654671" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/044k31203.json b/v1.50/v1/044k31203.json new file mode 100644 index 000000000..c508e4ffb --- /dev/null +++ b/v1.50/v1/044k31203.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/044k31203", + "name": "Instituto Piaget", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Escola Superior de Saúde Jean Piaget de Viseu", + "type": "Child", + "id": "https://ror.org/05120qw60" + } + ], + "addresses": [ + { + "lat": 40.66101, + "lng": -7.90971, + "state": null, + "state_code": null, + "city": "Viseu", + "geonames_city": { + "id": 2732265, + "city": "Viseu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ipiaget.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Instituto_Piaget", + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "GRID": { + "all": "grid.411011.4", + "preferred": "grid.411011.4" + }, + "ISNI": { + "all": [ + "0000 0001 0695 847X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10302632" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/044tjxx32.json b/v1.50/v1/044tjxx32.json new file mode 100644 index 000000000..4e643a71c --- /dev/null +++ b/v1.50/v1/044tjxx32.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/044tjxx32", + "name": "Public Law Centre", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://publiclawdroitpublic.ca" + ], + "aliases": [ + "University of Ottawa Public Law Centre", + "Université d’Ottawa Centre de Droit Public", + "uOttawa Public Law Centre" + ], + "acronyms": [ + "PLC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de Droit Public", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/044zqqy65.json b/v1.50/v1/044zqqy65.json new file mode 100644 index 000000000..8e0f4c6ac --- /dev/null +++ b/v1.50/v1/044zqqy65.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/044zqqy65", + "name": "National Park Service", + "email_address": null, + "ip_addresses": [], + "established": 1916, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Yellowstone National Park", + "type": "Child", + "id": "https://ror.org/04rw5yk74" + }, + { + "label": "Grand Teton National Park", + "type": "Child", + "id": "https://ror.org/00vpxf870" + }, + { + "label": "United States Department of the Interior", + "type": "Parent", + "id": "https://ror.org/03v0pmy70" + }, + { + "label": "Southwest Alaska Inventory and Monitoring Network", + "type": "Child", + "id": "https://ror.org/02pbyft41" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nps.gov/" + ], + "aliases": [], + "acronyms": [ + "NPS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Park_Service", + "labels": [ + { + "label": "Servicio de Parques Nacionales", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007516" + ], + "preferred": null + }, + "GRID": { + "all": "grid.454846.f", + "preferred": "grid.454846.f" + }, + "ISNI": { + "all": [ + "0000 0001 2331 3972" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q308439" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/045495t75.json b/v1.50/v1/045495t75.json new file mode 100644 index 000000000..294418602 --- /dev/null +++ b/v1.50/v1/045495t75.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/045495t75", + "name": "Ifo Institute for Economic Research", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "Parent", + "id": "https://ror.org/01n6r0e97" + }, + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + }, + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Related", + "id": "https://ror.org/05591te55" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ifo.de/en" + ], + "aliases": [ + "Ifo Institute – Leibniz Institute for Economic Research" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ifo_Institute_for_Economic_Research", + "labels": [ + { + "label": "ifo Institut für Wirtschaftsforschung", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.469877.3", + "preferred": "grid.469877.3" + }, + "ISNI": { + "all": [ + "0000 0004 0397 0846" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q314073" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0455wwj08.json b/v1.50/v1/0455wwj08.json new file mode 100644 index 000000000..4eec80006 --- /dev/null +++ b/v1.50/v1/0455wwj08.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0455wwj08", + "name": "Laboratoire Génie Industriel", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lgi.centralesupelec.fr" + ], + "aliases": [ + "Laboratoire LGI" + ], + "acronyms": [ + "LGI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463993.2", + "preferred": "grid.463993.2" + }, + "Wikidata": { + "all": [ + "Q30262363" + ], + "preferred": "Q30262363" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0459fdx51.json b/v1.50/v1/0459fdx51.json new file mode 100644 index 000000000..73e8082f7 --- /dev/null +++ b/v1.50/v1/0459fdx51.json @@ -0,0 +1,304 @@ +{ + "id": "https://ror.org/0459fdx51", + "name": "Fédération de Recherche sur l'Energie Solaire", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Université de Bretagne Occidentale", + "type": "Related", + "id": "https://ror.org/01b8h3982" + }, + { + "label": "Sciences Po Grenoble", + "type": "Related", + "id": "https://ror.org/03c7zyj82" + }, + { + "label": "École Centrale de Nantes", + "type": "Related", + "id": "https://ror.org/03nh7d505" + }, + { + "label": "École Centrale de Lyon", + "type": "Related", + "id": "https://ror.org/05s6rge65" + }, + { + "label": "Institut National des Sciences Appliquées de Lyon", + "type": "Related", + "id": "https://ror.org/050jn9y42" + }, + { + "label": "École d'Ingénieurs en Chimie et Sciences du Numérique", + "type": "Related", + "id": "https://ror.org/01cbtr271" + }, + { + "label": "Université Savoie Mont Blanc", + "type": "Related", + "id": "https://ror.org/04gqg1a07" + }, + { + "label": "École nationale supérieure d'arts et métiers", + "type": "Related", + "id": "https://ror.org/018pp1107" + }, + { + "label": "Université de Limoges", + "type": "Related", + "id": "https://ror.org/02cp04407" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Related", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Related", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Électricité de France (France)", + "type": "Related", + "id": "https://ror.org/03wb8xz10" + }, + { + "label": "Université de Lyon", + "type": "Related", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Oniris", + "type": "Related", + "id": "https://ror.org/05q0ncs32" + }, + { + "label": "Université de Lorraine", + "type": "Related", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "École Nationale Supérieure d'Architecture de Normandie", + "type": "Related", + "id": "https://ror.org/00a5dxw64" + }, + { + "label": "IMT Atlantique", + "type": "Related", + "id": "https://ror.org/030hj3061" + }, + { + "label": "Sorbonne Université", + "type": "Related", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris-Saclay", + "type": "Related", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Nantes Université", + "type": "Related", + "id": "https://ror.org/03gnr7b55" + }, + { + "label": "Institut National Polytechnique de Toulouse", + "type": "Related", + "id": "https://ror.org/033p9g875" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Related", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Université de Perpignan", + "type": "Related", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Ecole Nationale du Génie de l'Eau et de l'Environnement de Strasbourg (ENGEES)", + "type": "Related", + "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Institut National des Sciences Appliquées de Strasbourg", + "type": "Related", + "id": "https://ror.org/001nta019" + }, + { + "label": "Chimie ParisTech", + "type": "Related", + "id": "https://ror.org/05q65zh81" + }, + { + "label": "École Nationale Supérieure des Mines de Paris", + "type": "Related", + "id": "https://ror.org/04y8cs423" + }, + { + "label": "École des Ponts ParisTech", + "type": "Related", + "id": "https://ror.org/02nwvxz07" + }, + { + "label": "Télécom Paris", + "type": "Related", + "id": "https://ror.org/01naq7912" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Related", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "IMT Mines Albi", + "type": "Related", + "id": "https://ror.org/00bq8vv83" + }, + { + "label": "Université de Toulon", + "type": "Related", + "id": "https://ror.org/02m9kbe37" + }, + { + "label": "École Polytechnique", + "type": "Related", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Institut Polytechnique de Bordeaux", + "type": "Related", + "id": "https://ror.org/054qv7y42" + }, + { + "label": "Université de Strasbourg", + "type": "Related", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Aix-Marseille Université", + "type": "Related", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Université de Bordeaux", + "type": "Related", + "id": "https://ror.org/057qpr032" + }, + { + "label": "CentraleSupélec", + "type": "Related", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Clermont Auvergne INP", + "type": "Related", + "id": "https://ror.org/001f39w38" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Related", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Related", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université Clermont Auvergne", + "type": "Related", + "id": "https://ror.org/01a8ajp46" + }, + { + "label": "Université de Lille", + "type": "Related", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 45.65362, + "lng": 5.8549, + "state": null, + "state_code": null, + "city": "Le Bourget-du-Lac", + "geonames_city": { + "id": 3005081, + "city": "Le Bourget-du-Lac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fedesol.cnrs.fr" + ], + "aliases": [ + "FédESol" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780049" + ], + "preferred": "Q51780049" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/045dq5f72.json b/v1.50/v1/045dq5f72.json new file mode 100644 index 000000000..c143cf3e3 --- /dev/null +++ b/v1.50/v1/045dq5f72.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/045dq5f72", + "name": "Stord hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Fonna Hospital Trust", + "type": "Parent", + "id": "https://ror.org/05n8j1468" + } + ], + "addresses": [ + { + "lat": 62.38203, + "lng": 6.98629, + "state": null, + "state_code": null, + "city": "Stordal", + "geonames_city": { + "id": 7626367, + "city": "Stordal", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.helse-fonna.no/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "GRID": { + "all": "grid.459976.0", + "preferred": "grid.459976.0" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/045vwce28.json b/v1.50/v1/045vwce28.json new file mode 100644 index 000000000..8aa180e75 --- /dev/null +++ b/v1.50/v1/045vwce28.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/045vwce28", + "name": "NTT (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "NTT (Japan)", + "type": "Parent", + "id": "https://ror.org/00berct97" + }, + { + "label": "DoCoMo Communications Laboratories Europe GmbH", + "type": "Child", + "id": "https://ror.org/04qae1p49" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.global.ntt/" + ], + "aliases": [ + "Nippon Telegraph and Telephone" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nippon_Telegraph_and_Telephone", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.437763.2", + "preferred": "grid.437763.2" + }, + "Wikidata": { + "all": [ + "Q30291745" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0468dv016.json b/v1.50/v1/0468dv016.json new file mode 100644 index 000000000..63ce91c87 --- /dev/null +++ b/v1.50/v1/0468dv016.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/0468dv016", + "name": "Institut Nalanda", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -6.21462, + "lng": 106.84513, + "state": null, + "state_code": null, + "city": "Jakarta", + "geonames_city": { + "id": 1642911, + "city": "Jakarta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nalanda.ac.id" + ], + "aliases": [ + "Nalanda Buddhist College", + "STAB Nalanda", + "Sekolah Tinggi Agama Buddha Nalanda" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Sekolah_Tinggi_Agama_Buddha_Nalanda", + "labels": [ + { + "label": "Nalanda Institute", + "iso639": "en" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q97206657" + ], + "preferred": "Q97206657" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/046ak2485.json b/v1.50/v1/046ak2485.json new file mode 100644 index 000000000..050b4d78d --- /dev/null +++ b/v1.50/v1/046ak2485.json @@ -0,0 +1,135 @@ +{ + "id": "https://ror.org/046ak2485", + "name": "Freie Universität Berlin", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Botanic Garden and Botanical Museum Berlin", + "type": "Child", + "id": "https://ror.org/00bv4cx53" + }, + { + "label": "Einstein Center Digital Future", + "type": "Child", + "id": "https://ror.org/0086bb350" + }, + { + "label": "Weizenbaum Institute", + "type": "Child", + "id": "https://ror.org/023kksk09" + }, + { + "label": "CRC183 - Entangled States of Matter", + "type": "Child", + "id": "https://ror.org/015wtqn87" + }, + { + "label": "Berlin Mathematical School", + "type": "Related", + "id": "https://ror.org/03zekj455" + }, + { + "label": "Charité - Universitätsmedizin Berlin", + "type": "Related", + "id": "https://ror.org/001w7jn25" + }, + { + "label": "Weierstrass Institute for Applied Analysis and Stochastics", + "type": "Related", + "id": "https://ror.org/00h1x4t21" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fu-berlin.de" + ], + "aliases": [ + "FU Berlin", + "Free University of Berlin" + ], + "acronyms": [ + "FU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Free_University_of_Berlin", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002971", + "501100001644", + "501100007537" + ], + "preferred": "501100007537" + }, + "GRID": { + "all": "grid.14095.39", + "preferred": "grid.14095.39" + }, + "ISNI": { + "all": [ + "0000 0001 2185 5786" + ], + "preferred": "0000 0001 2185 5786" + }, + "Wikidata": { + "all": [ + "Q153006" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/046b3cj80.json b/v1.50/v1/046b3cj80.json new file mode 100644 index 000000000..f3a66ea87 --- /dev/null +++ b/v1.50/v1/046b3cj80.json @@ -0,0 +1,239 @@ +{ + "id": "https://ror.org/046b3cj80", + "name": "École Pratique des Hautes Études", + "email_address": null, + "ip_addresses": [], + "established": 1868, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Anthropologie et Histoire des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Archéologie et Philologie d’Orient et d’Occident", + "type": "Child", + "id": "https://ror.org/05nsvn336" + }, + { + "label": "Biogéosciences", + "type": "Child", + "id": "https://ror.org/04mzqjs78" + }, + { + "label": "Centre Georg Simmel", + "type": "Child", + "id": "https://ror.org/04qhwn476" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Recherches Insulaires et Observatoire de l'Environnement", + "type": "Child", + "id": "https://ror.org/02tp7mm44" + }, + { + "label": "Groupe Sociétés, Religions, Laïcités", + "type": "Child", + "id": "https://ror.org/01wk35t67" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "Child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Integrated Genetic Approaches in Therapeutic Discovery for Rare Diseases", + "type": "Child", + "id": "https://ror.org/04az3m568" + }, + { + "label": "Laboratoire Cognition, Langues, Langage, Ergonomie", + "type": "Child", + "id": "https://ror.org/029cj5595" + }, + { + "label": "Laboratoire Cognitions Humaine et Artificielle", + "type": "Child", + "id": "https://ror.org/02k8f5n40" + }, + { + "label": "Laboratoire d'Anthropologie Sociale", + "type": "Child", + "id": "https://ror.org/05pm8ec76" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "Child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Chimie Physique et Microbiologie pour l'Environnement", + "type": "Child", + "id": "https://ror.org/03nknpw16" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Milieux environnementaux, transferts et interactions dans les hydrosystèmes et les sols", + "type": "Child", + "id": "https://ror.org/0229z0679" + }, + { + "label": "Orient & Méditerranée", + "type": "Child", + "id": "https://ror.org/051gvfp41" + }, + { + "label": "Proche-Orient, Caucase : Langues, Archéologie, Cultures", + "type": "Child", + "id": "https://ror.org/030jm0n16" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "Child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "Child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "Neuropsychologie et Imagerie de la Mémoire Humaine", + "type": "Child", + "id": "https://ror.org/04f6tkx67" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Campus Condorcet", + "type": "Related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ephe.fr/" + ], + "aliases": [], + "acronyms": [ + "EPHE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_pratique_des_hautes_%C3%A9tudes", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.424469.9", + "preferred": "grid.424469.9" + }, + "ISNI": { + "all": [ + "0000 0001 2195 5365" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273631" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/046bx1082.json b/v1.50/v1/046bx1082.json new file mode 100644 index 000000000..1245a9ad3 --- /dev/null +++ b/v1.50/v1/046bx1082.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/046bx1082", + "name": "Hôpital Paris Saint-Joseph", + "email_address": null, + "ip_addresses": [], + "established": 1878, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://en.hpsj.fr/" + ], + "aliases": [ + "Groupe Hospitalier Paris Saint-Joseph" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.414363.7", + "preferred": "grid.414363.7" + }, + "ISNI": { + "all": [ + "0000 0001 0274 7763" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3117857" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0470vke61.json b/v1.50/v1/0470vke61.json new file mode 100644 index 000000000..d2490feee --- /dev/null +++ b/v1.50/v1/0470vke61.json @@ -0,0 +1,125 @@ +{ + "id": "https://ror.org/0470vke61", + "name": "Leonardo (Italy)", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "SELEX Sistemi Integrati", + "type": "Child", + "id": "https://ror.org/02sj0zy88" + }, + { + "label": "Leonardo (Poland)", + "type": "Child", + "id": "https://ror.org/0203k1k48" + }, + { + "label": "Leonardo (United Kingdom)", + "type": "Child", + "id": "https://ror.org/0445yn719" + }, + { + "label": "Leonardo (France)", + "type": "Child", + "id": "https://ror.org/00vfjqp82" + }, + { + "label": "Leonardo Finmeccanica (United States)", + "type": "Child", + "id": "https://ror.org/041twcm28" + }, + { + "label": "Thales Alenia Space (France)", + "type": "Child", + "id": "https://ror.org/05gz77z03" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.leonardo.com" + ], + "aliases": [ + "Finmeccanica (Italy)" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Finmeccanica", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003324" + ], + "preferred": null + }, + "GRID": { + "all": "grid.423952.b", + "preferred": "grid.423952.b" + }, + "ISNI": { + "all": [ + "0000 0001 2302 3537" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q910379" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04713ex73.json b/v1.50/v1/04713ex73.json new file mode 100644 index 000000000..be6688077 --- /dev/null +++ b/v1.50/v1/04713ex73.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04713ex73", + "name": "Chengdu Technological University", + "email_address": null, + "ip_addresses": [], + "established": 1913, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.66667, + "lng": 104.06667, + "state": null, + "state_code": null, + "city": "Chengdu", + "geonames_city": { + "id": 1815286, + "city": "Chengdu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cdtu.edu.cn" + ], + "aliases": [], + "acronyms": [ + "CDTU" + ], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E6%88%90%E9%83%BD%E5%B7%A5%E6%A5%AD%E5%AD%B8%E9%99%A2", + "labels": [ + { + "label": "成都工业学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0367 3921" + ], + "preferred": "0000 0004 0367 3921" + }, + "Wikidata": { + "all": [ + "Q22100490" + ], + "preferred": "Q22100490" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/047fn3608.json b/v1.50/v1/047fn3608.json new file mode 100644 index 000000000..dd9ece03b --- /dev/null +++ b/v1.50/v1/047fn3608.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/047fn3608", + "name": "Jaipuria School of Business, Ghaziabad", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.66535, + "lng": 77.43915, + "state": null, + "state_code": null, + "city": "Ghaziabad", + "geonames_city": { + "id": 1271308, + "city": "Ghaziabad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://jsb.jaipuria.edu.in" + ], + "aliases": [], + "acronyms": [ + "JSB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6045 1890" + ], + "preferred": "0000 0004 6045 1890" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/047j0dn45.json b/v1.50/v1/047j0dn45.json new file mode 100644 index 000000000..290dbed6b --- /dev/null +++ b/v1.50/v1/047j0dn45.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/047j0dn45", + "name": "Cruz Vermelha Portuguesa", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Escola Superior de Saúde Cruz Vermelha Portuguesa - Alto Tâmega", + "type": "Child", + "id": "https://ror.org/05frnbh40" + } + ], + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cruzvermelha.pt" + ], + "aliases": [], + "acronyms": [ + "CVP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9919 3308" + ], + "preferred": "0000 0000 9919 3308" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/047xz1e88.json b/v1.50/v1/047xz1e88.json new file mode 100644 index 000000000..6a4c580cf --- /dev/null +++ b/v1.50/v1/047xz1e88.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/047xz1e88", + "name": "Ottawa Institute of Systems Biology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/ottawa-institute-systems-biology" + ], + "aliases": [ + "University of Ottawa Institute of Systems Biology", + "Université d’Ottawa Institut de biologie des systèmes d’Ottawa", + "uOttawa Institute of Systems Biology" + ], + "acronyms": [ + "IBSO", + "OISB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "L’Institut de biologie des systèmes d’Ottawa", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/048tf4023.json b/v1.50/v1/048tf4023.json new file mode 100644 index 000000000..37deb1f2a --- /dev/null +++ b/v1.50/v1/048tf4023.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/048tf4023", + "name": "Centre for Research on French Canadian Culture", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/recherche-innovation/crccf" + ], + "aliases": [ + "University of Ottawa Centre for Research on French Canadian Culture", + "Université d’Ottawa Centre de recherche sur les francophonies canadiennes", + "uOttawa Centre for Research on French Canadian Culture" + ], + "acronyms": [ + "CCRCF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de recherche sur les francophonies canadiennes", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2149 7392" + ], + "preferred": "0000 0001 2149 7392" + }, + "Wikidata": { + "all": [ + "Q53653240" + ], + "preferred": "Q53653240" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/049am9t04.json b/v1.50/v1/049am9t04.json new file mode 100644 index 000000000..d572394d8 --- /dev/null +++ b/v1.50/v1/049am9t04.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/049am9t04", + "name": "Hôpital Saint-Louis", + "email_address": null, + "ip_addresses": [], + "established": 1607, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "ERN EuroBloodNet", + "type": "Related", + "id": "https://ror.org/04dng8q18" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hopital-saintlouis.aphp.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/H%C3%B4pital_Saint-Louis", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.413328.f", + "preferred": "grid.413328.f" + }, + "ISNI": { + "all": [ + "0000 0001 2300 6614" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1569396" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04anrxg79.json b/v1.50/v1/04anrxg79.json new file mode 100644 index 000000000..1e8b25522 --- /dev/null +++ b/v1.50/v1/04anrxg79.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04anrxg79", + "name": "Northern Vermont University", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Vermont State University", + "type": "Successor", + "id": "https://ror.org/03m6ee736" + } + ], + "addresses": [ + { + "lat": 44.63561, + "lng": -72.6804, + "state": null, + "state_code": null, + "city": "Johnson", + "geonames_city": { + "id": 5237538, + "city": "Johnson", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.northernvermont.edu/" + ], + "aliases": [], + "acronyms": [ + "NVU" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Northern_Vermont_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.501835.a", + "preferred": "grid.501835.a" + }, + "Wikidata": { + "all": [ + "Q56277101" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04b82qh04.json b/v1.50/v1/04b82qh04.json new file mode 100644 index 000000000..826afd455 --- /dev/null +++ b/v1.50/v1/04b82qh04.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/04b82qh04", + "name": "Institute for Philosophy, Political Science and Religion Studies", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ministry of Science and Higher Education of the Republic of Kazakhstan", + "type": "Parent", + "id": "https://ror.org/05tyne317" + } + ], + "addresses": [ + { + "lat": 43.25, + "lng": 76.91667, + "state": null, + "state_code": null, + "city": "Almaty", + "geonames_city": { + "id": 1526384, + "city": "Almaty", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://iph.kz/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Философия, саясаттану және дінтану институты", + "iso639": "kk" + } + ], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": { + "GRID": { + "all": "grid.501783.8", + "preferred": "grid.501783.8" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04bs4rc32.json b/v1.50/v1/04bs4rc32.json new file mode 100644 index 000000000..4891895ed --- /dev/null +++ b/v1.50/v1/04bs4rc32.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/04bs4rc32", + "name": "Lagos State University of Education", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.48358, + "lng": 3.12173, + "state": null, + "state_code": null, + "city": "Oto Awori Ward", + "geonames_city": { + "id": 10458211, + "city": "Oto Awori Ward", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lasued.edu.ng" + ], + "aliases": [ + "Adeniran Ogunsanya College of Education", + "Lagos State College of Education" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Adeniran_Ogunsanya_College_of_Education", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q20646619" + ], + "preferred": "Q20646619" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04c794867.json b/v1.50/v1/04c794867.json new file mode 100644 index 000000000..5e0bfe75c --- /dev/null +++ b/v1.50/v1/04c794867.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04c794867", + "name": "Centre for Environmental Law and Global Sustainability", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/faculty-law/common-law/centre-environmental-law-global-sustainability" + ], + "aliases": [ + "University of Ottawa Centre for Environmental Law and Global Sustainability", + "Université d’Ottawa Centre de Droit de l'environnement", + "uOttawa Centre for Environmental Law and Global Sustainability" + ], + "acronyms": [ + "CELGS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de Droit de l'environnement", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/04cxsn644.json b/v1.50/v1/04cxsn644.json new file mode 100644 index 000000000..723d62311 --- /dev/null +++ b/v1.50/v1/04cxsn644.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04cxsn644", + "name": "Délégation Nord, Pas-de-Calais et Picardie", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire de Physico-Chimie de l'Atmosphère", + "type": "Child", + "id": "https://ror.org/014net767" + }, + { + "label": "Unité Évolution, Écologie et Paléontologie", + "type": "Child", + "id": "https://ror.org/04y91dy23" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.dr18.cnrs.fr/" + ], + "aliases": [], + "acronyms": [ + "DR18" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457021.5", + "preferred": "grid.457021.5" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04dx32582.json b/v1.50/v1/04dx32582.json new file mode 100644 index 000000000..d4e45f30b --- /dev/null +++ b/v1.50/v1/04dx32582.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/04dx32582", + "name": "Adaptation, mesure et évaluation en santé. Approches interdisciplinaires", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 48.66115, + "lng": 6.17114, + "state": null, + "state_code": null, + "city": "Vandœuvre-lès-Nancy", + "geonames_city": { + "id": 2970797, + "city": "Vandœuvre-lès-Nancy", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://apemac.univ-lorraine.fr" + ], + "aliases": [ + "APEMAC Laboratory", + "Adaptation, mesure et évaluation en santé", + "Laboratoire APEMAC" + ], + "acronyms": [ + "APEMAC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780612" + ], + "preferred": "Q51780612" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04edeq073.json b/v1.50/v1/04edeq073.json new file mode 100644 index 000000000..a4ce6eb48 --- /dev/null +++ b/v1.50/v1/04edeq073.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/04edeq073", + "name": "Institute for Laser Technology in Medicine and Measurement Technique", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Universität Ulm", + "type": "Related", + "id": "https://ror.org/032000t02" + } + ], + "addresses": [ + { + "lat": 48.39841, + "lng": 9.99155, + "state": null, + "state_code": null, + "city": "Ulm", + "geonames_city": { + "id": 2820256, + "city": "Ulm", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ilm-ulm.de/en/home.html" + ], + "aliases": [], + "acronyms": [ + "ILM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut für Lasertechnologien in der Medizin und Meßtechnik an der Universität Ulm", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.461654.4", + "preferred": "grid.461654.4" + }, + "Wikidata": { + "all": [ + "Q1664908" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04ehtgm24.json b/v1.50/v1/04ehtgm24.json new file mode 100644 index 000000000..3b9cb7223 --- /dev/null +++ b/v1.50/v1/04ehtgm24.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04ehtgm24", + "name": "Lusíada University of Porto", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Fundação Minerva - Cultura - Ensino e Investigação Científica", + "type": "Parent", + "id": "https://ror.org/056g0b798" + } + ], + "addresses": [ + { + "lat": 41.14961, + "lng": -8.61099, + "state": null, + "state_code": null, + "city": "Porto", + "geonames_city": { + "id": 2735943, + "city": "Porto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.por.ulusiada.pt/" + ], + "aliases": [ + "Universidade Lusíada do Porto" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Lus%C3%ADada_University_of_Porto", + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "GRID": { + "all": "grid.10210.32", + "preferred": "grid.10210.32" + }, + "ISNI": { + "all": [ + "0000 0000 9215 0321" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2478211" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04emwm605.json b/v1.50/v1/04emwm605.json new file mode 100644 index 000000000..6b24905d0 --- /dev/null +++ b/v1.50/v1/04emwm605.json @@ -0,0 +1,178 @@ +{ + "id": "https://ror.org/04emwm605", + "name": "Thales (France)", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Gemalto (Netherlands)", + "type": "Child", + "id": "https://ror.org/006sbr164" + }, + { + "label": "Thales (Australia)", + "type": "Child", + "id": "https://ror.org/00f7vya03" + }, + { + "label": "Thales (Austria)", + "type": "Child", + "id": "https://ror.org/02cs9t297" + }, + { + "label": "Thales (Belgium)", + "type": "Child", + "id": "https://ror.org/017056r72" + }, + { + "label": "Thales (Brazil)", + "type": "Child", + "id": "https://ror.org/03sss6f31" + }, + { + "label": "Thales (Canada)", + "type": "Child", + "id": "https://ror.org/00nnd3206" + }, + { + "label": "Thales (Germany)", + "type": "Child", + "id": "https://ror.org/031xjr712" + }, + { + "label": "Thales (Italy)", + "type": "Child", + "id": "https://ror.org/00rwwx648" + }, + { + "label": "Thales (Netherlands)", + "type": "Child", + "id": "https://ror.org/032tp7158" + }, + { + "label": "Thales (Norway)", + "type": "Child", + "id": "https://ror.org/05gey1s27" + }, + { + "label": "Thales (Portugal)", + "type": "Child", + "id": "https://ror.org/051w1mx35" + }, + { + "label": "Thales (Spain)", + "type": "Child", + "id": "https://ror.org/03340ra78" + }, + { + "label": "Thales (United Kingdom)", + "type": "Child", + "id": "https://ror.org/00r8j9489" + }, + { + "label": "Thales (United States)", + "type": "Child", + "id": "https://ror.org/00ysvtr77" + }, + { + "label": "Laboratoire Albert Fert", + "type": "Child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Thales Alenia Space (France)", + "type": "Child", + "id": "https://ror.org/05gz77z03" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.thalesgroup.com/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Thales_Group", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007034" + ], + "preferred": null + }, + "GRID": { + "all": "grid.410363.3", + "preferred": "grid.410363.3" + }, + "ISNI": { + "all": [ + "0000 0004 1754 8494" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1161666" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04ezxnp02.json b/v1.50/v1/04ezxnp02.json new file mode 100644 index 000000000..70eed64da --- /dev/null +++ b/v1.50/v1/04ezxnp02.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/04ezxnp02", + "name": "Birds Canada", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Archive", + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.6168, + "lng": -80.46638, + "state": null, + "state_code": null, + "city": "Port Rowan", + "geonames_city": { + "id": 6112000, + "city": "Port Rowan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.birdscanada.org" + ], + "aliases": [ + "Bird Studies Canada", + "Long Point Bird Observatory" + ], + "acronyms": [ + "BSC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Bird_Studies_Canada", + "labels": [ + { + "label": "Oiseaux Canada", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016154", + "100013486" + ], + "preferred": "100016154" + }, + "GRID": { + "all": "grid.292570.b", + "preferred": "grid.292570.b" + }, + "ISNI": { + "all": [ + "0000 0000 8781 6635" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3592594" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04g6bbq64.json b/v1.50/v1/04g6bbq64.json new file mode 100644 index 000000000..b39308996 --- /dev/null +++ b/v1.50/v1/04g6bbq64.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/04g6bbq64", + "name": "Adam Mickiewicz University in Poznań", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Collegium Polonicum", + "type": "Child", + "id": "https://ror.org/03v4vk244" + } + ], + "addresses": [ + { + "lat": 52.40692, + "lng": 16.92993, + "state": null, + "state_code": null, + "city": "Poznan", + "geonames_city": { + "id": 3088171, + "city": "Poznan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://amu.edu.pl/" + ], + "aliases": [], + "acronyms": [ + "UAM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Adam_Mickiewicz_University_in_Pozna%C5%84", + "labels": [ + { + "label": "Uniwersytet im. Adama Mickiewicza w Poznaniu", + "iso639": "pl" + } + ], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100013920" + ], + "preferred": "501100013920" + }, + "GRID": { + "all": "grid.5633.3", + "preferred": "grid.5633.3" + }, + "ISNI": { + "all": [ + "0000 0001 2097 3545" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q348402" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04gq09j61.json b/v1.50/v1/04gq09j61.json new file mode 100644 index 000000000..91bb05341 --- /dev/null +++ b/v1.50/v1/04gq09j61.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/04gq09j61", + "name": "Institute of Agriculture and Animal Science", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tribhuvan University", + "type": "Parent", + "id": "https://ror.org/02rg1r889" + } + ], + "addresses": [ + { + "lat": 27.70169, + "lng": 85.3206, + "state": null, + "state_code": null, + "city": "Kathmandu", + "geonames_city": { + "id": 1283240, + "city": "Kathmandu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iaas.tu.edu.np" + ], + "aliases": [ + "Institute of Agriculture and Animal Science, Tribhuvan University", + "Tribhuvan University Institute of Agriculture and Animal Science" + ], + "acronyms": [ + "IAAS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_of_Agriculture_and_Animal_Science", + "labels": [], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5608252" + ], + "preferred": "Q5608252" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04gqg1a07.json b/v1.50/v1/04gqg1a07.json new file mode 100644 index 000000000..9b1616f8c --- /dev/null +++ b/v1.50/v1/04gqg1a07.json @@ -0,0 +1,172 @@ +{ + "id": "https://ror.org/04gqg1a07", + "name": "Université Savoie Mont Blanc", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut National de l'Énergie Solaire", + "type": "Child", + "id": "https://ror.org/00qk0vr83" + }, + { + "label": "Institut de Microélectronique, Electromagnétisme et Photonique", + "type": "Child", + "id": "https://ror.org/03taa9n66" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Laboratoire Optimisation de la Conception et Ingénierie de l'Environnement", + "type": "Child", + "id": "https://ror.org/015gaxx73" + }, + { + "label": "Laboratoire d'Annecy-le-Vieux de Physique Théorique", + "type": "Child", + "id": "https://ror.org/010hz2d37" + }, + { + "label": "Laboratoire d'Écologie Alpine", + "type": "Child", + "id": "https://ror.org/03x1z2w73" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "Child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "Child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Langages, Littératures, Sociétés. Études Transfrontalières et Internationales", + "type": "Child", + "id": "https://ror.org/0157h5t87" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "Child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "Laboratoire Inter-universitaire de Psychologie: Personnalité, Cognition, Changement Social", + "type": "Child", + "id": "https://ror.org/03jrb0276" + }, + { + "label": "Laboratoire d’Annecy de Physique des Particules", + "type": "Child", + "id": "https://ror.org/049nhh297" + }, + { + "label": "Centre de Radiofréquences, Optique et Micro-nanoélectronique des Alpes", + "type": "Child", + "id": "https://ror.org/050rs7291" + }, + { + "label": "Laboratoire Interuniversitaire de Biologie de la Motricité", + "type": "Related", + "id": "https://ror.org/03sc1p174" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 45.56628, + "lng": 5.92079, + "state": null, + "state_code": null, + "city": "Chambéry", + "geonames_city": { + "id": 3027422, + "city": "Chambéry", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-smb.fr/" + ], + "aliases": [ + "Chambéry University", + "University of Savoy Mont Blanc", + "Université de Chambéry" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Savoy", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018159" + ], + "preferred": "100018159" + }, + "GRID": { + "all": "grid.5388.6", + "preferred": "grid.5388.6" + }, + "ISNI": { + "all": [ + "0000 0001 2193 5487" + ], + "preferred": "0000 0001 2193 5487" + }, + "Wikidata": { + "all": [ + "Q2496158" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04grq1g73.json b/v1.50/v1/04grq1g73.json new file mode 100644 index 000000000..9e3e74c1b --- /dev/null +++ b/v1.50/v1/04grq1g73.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04grq1g73", + "name": "Centre amiénois de recherche en éducation et formation", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://caref.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "CAREF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780901" + ], + "preferred": "Q51780901" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04h1h0y33.json b/v1.50/v1/04h1h0y33.json new file mode 100644 index 000000000..12115de4a --- /dev/null +++ b/v1.50/v1/04h1h0y33.json @@ -0,0 +1,170 @@ +{ + "id": "https://ror.org/04h1h0y33", + "name": "Centre National d'Études Spatiales", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire AstroParticule et Cosmologie", + "type": "Child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Collecte Localisation Satellites (France)", + "type": "Child", + "id": "https://ror.org/00q7mnz48" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Laboratoire Hydrazines et Composés Energétiques Polyazotés", + "type": "Child", + "id": "https://ror.org/01racwh88" + }, + { + "label": "Laboratoire d'Optique Atmosphérique", + "type": "Child", + "id": "https://ror.org/02mdnkg28" + }, + { + "label": "Laboratoire de Planétologie et Géosciences", + "type": "Child", + "id": "https://ror.org/04fm0sh33" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Institut de Recherche en Astrophysique et Planétologie", + "type": "Child", + "id": "https://ror.org/05hm2ja81" + }, + { + "label": "AERIS/ICARE Data and Services Center", + "type": "Child", + "id": "https://ror.org/013z99a51" + }, + { + "label": "Service des Avions Français Instrumentés pour la Recherche en Environnement", + "type": "Child", + "id": "https://ror.org/02qdgbw61" + }, + { + "label": "Laboratoire de Physique et Chimie de l’Environnement et de l’Espace", + "type": "Child", + "id": "https://ror.org/049k66y27" + }, + { + "label": "TéSA", + "type": "Related", + "id": "https://ror.org/01zgcd031" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cnes.fr" + ], + "aliases": [], + "acronyms": [ + "CNES" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CNES", + "labels": [ + { + "label": "National Centre for Space Studies", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002830" + ], + "preferred": null + }, + "GRID": { + "all": "grid.13349.3c", + "preferred": "grid.13349.3c" + }, + "ISNI": { + "all": [ + "0000 0001 2201 6490" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q48756" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04j47fz63.json b/v1.50/v1/04j47fz63.json new file mode 100644 index 000000000..4b2fe049f --- /dev/null +++ b/v1.50/v1/04j47fz63.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04j47fz63", + "name": "Haute École de Santé Vaud", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hesav.ch" + ], + "aliases": [ + "HES-SO Haute Ecole de Santé Vaud", + "HES-SO School of Health Sciences", + "HESAV - Haute École de Santé Vaud" + ], + "acronyms": [ + "HESAV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/04j4kfb22.json b/v1.50/v1/04j4kfb22.json new file mode 100644 index 000000000..9db6bbde9 --- /dev/null +++ b/v1.50/v1/04j4kfb22.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/04j4kfb22", + "name": "Centre for Advanced Laser Applications", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Technical University of Munich", + "type": "Parent", + "id": "https://ror.org/02kkvpp62" + }, + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + } + ], + "addresses": [ + { + "lat": 48.24896, + "lng": 11.65101, + "state": null, + "state_code": null, + "city": "Garching", + "geonames_city": { + "id": 2922582, + "city": "Garching", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cala-laser.de/" + ], + "aliases": [], + "acronyms": [ + "CALA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007221" + ], + "preferred": null + }, + "GRID": { + "all": "grid.469346.a", + "preferred": "grid.469346.a" + }, + "ISNI": { + "all": [ + "0000 0004 9236 0790" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04jc43x05.json b/v1.50/v1/04jc43x05.json new file mode 100644 index 000000000..246b35359 --- /dev/null +++ b/v1.50/v1/04jc43x05.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04jc43x05", + "name": "Klinikum rechts der Isar", + "email_address": null, + "ip_addresses": [], + "established": 1834, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Technical University of Munich", + "type": "Parent", + "id": "https://ror.org/02kkvpp62" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mri.tum.de/" + ], + "aliases": [ + "Rechts der Isar Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Rechts_der_Isar_Hospital", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.15474.33", + "preferred": "grid.15474.33" + }, + "ISNI": { + "all": [ + "0000 0004 0477 2438" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q883813" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04jvgth94.json b/v1.50/v1/04jvgth94.json new file mode 100644 index 000000000..306b5bc34 --- /dev/null +++ b/v1.50/v1/04jvgth94.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04jvgth94", + "name": "Adaptation physiologiques à l'exercice et réadaptation à l'effort", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://apere.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "APERE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783509" + ], + "preferred": "Q51783509" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04jx68594.json b/v1.50/v1/04jx68594.json new file mode 100644 index 000000000..48b739557 --- /dev/null +++ b/v1.50/v1/04jx68594.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/04jx68594", + "name": "École Nationale Supérieure de Mécanique et d'Aérotechnique", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Pprime", + "type": "Child", + "id": "https://ror.org/05vjdsn22" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + } + ], + "addresses": [ + { + "lat": 46.65131, + "lng": 0.37233, + "state": null, + "state_code": null, + "city": "Chasseneuil-du-Poitou", + "geonames_city": { + "id": 3026391, + "city": "Chasseneuil-du-Poitou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ensma.fr/en/" + ], + "aliases": [], + "acronyms": [ + "ENSMA", + "ISAE-ENSMA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_nationale_sup%C3%A9rieure_de_m%C3%A9canique_et_d%27a%C3%A9rotechnique", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.434217.7", + "preferred": "grid.434217.7" + }, + "ISNI": { + "all": [ + "0000 0001 2178 9782" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q391044" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04k2vrw13.json b/v1.50/v1/04k2vrw13.json new file mode 100644 index 000000000..4aab73751 --- /dev/null +++ b/v1.50/v1/04k2vrw13.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04k2vrw13", + "name": "Istituto Nazionale per la Valutazione del Sistema dell'Istruzione", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.invalsi.it" + ], + "aliases": [], + "acronyms": [ + "INVALSI" + ], + "status": "active", + "wikipedia_url": "https://it.wikipedia.org/wiki/Istituto_INVALSI", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2205 3080" + ], + "preferred": "0000 0001 2205 3080" + }, + "Wikidata": { + "all": [ + "Q3803782" + ], + "preferred": "Q3803782" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04k8k6n84.json b/v1.50/v1/04k8k6n84.json new file mode 100644 index 000000000..2eef2e3dd --- /dev/null +++ b/v1.50/v1/04k8k6n84.json @@ -0,0 +1,139 @@ +{ + "id": "https://ror.org/04k8k6n84", + "name": "Université de Haute-Alsace", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Institut de Sciences des Matériaux de Mulhouse", + "type": "Child", + "id": "https://ror.org/012wxdw12" + }, + { + "label": "Laboratoire de Photochimie et d'Ingénierie Macromoléculaire", + "type": "Child", + "id": "https://ror.org/02t1cke57" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Laboratoire Interuniversitaire des Sciences de l'Education et de la Communication", + "type": "Child", + "id": "https://ror.org/04n2vwk08" + }, + { + "label": "Centre de REcherche En Gestion des Organisations", + "type": "Child", + "id": "https://ror.org/0292fgv83" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "Child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 47.75205, + "lng": 7.32866, + "state": null, + "state_code": null, + "city": "Mulhouse", + "geonames_city": { + "id": 2991214, + "city": "Mulhouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.serfa.fr/" + ], + "aliases": [], + "acronyms": [ + "UHA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Upper_Alsace", + "labels": [ + { + "label": "University of Upper Alsace", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.9156.b", + "preferred": "grid.9156.b" + }, + "ISNI": { + "all": [ + "0000 0004 0473 5039" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q280183" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04kvn3r95.json b/v1.50/v1/04kvn3r95.json new file mode 100644 index 000000000..9e1a6de8f --- /dev/null +++ b/v1.50/v1/04kvn3r95.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/04kvn3r95", + "name": "Springer Nature (India)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Springer Nature (Germany)", + "type": "Parent", + "id": "https://ror.org/0117jxy09" + } + ], + "addresses": [ + { + "lat": 18.51957, + "lng": 73.85535, + "state": null, + "state_code": null, + "city": "Pune", + "geonames_city": { + "id": 1259229, + "city": "Pune", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.springernature.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/04m053216.json b/v1.50/v1/04m053216.json new file mode 100644 index 000000000..93aae28ec --- /dev/null +++ b/v1.50/v1/04m053216.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04m053216", + "name": "Khorezm Rural Advisory Support Service", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.55339, + "lng": 60.62057, + "state": null, + "state_code": null, + "city": "Urgench", + "geonames_city": { + "id": 1512473, + "city": "Urgench", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://krass.uz" + ], + "aliases": [], + "acronyms": [ + "KRASS", + "КРАСС" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Xorazm Agromaslahat Markazi", + "iso639": "uz" + }, + { + "label": "Хорезмский Агро-Консультативный Центр", + "iso639": "ru" + } + ], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/04m8fht31.json b/v1.50/v1/04m8fht31.json new file mode 100644 index 000000000..96c513a34 --- /dev/null +++ b/v1.50/v1/04m8fht31.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04m8fht31", + "name": "Saint Paul & Minnesota Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1940, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.94441, + "lng": -93.09327, + "state": null, + "state_code": null, + "city": "Saint Paul", + "geonames_city": { + "id": 5045360, + "city": "Saint Paul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.spmcf.org/" + ], + "aliases": [ + "Saint Paul & Minnesota Foundations", + "Saint Paul and Minnesota Foundation", + "Saint Paul and Minnesota Foundations" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.504011.1", + "preferred": "grid.504011.1" + }, + "Wikidata": { + "all": [ + "Q61934145" + ], + "preferred": "Q61934145" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04mqemp48.json b/v1.50/v1/04mqemp48.json new file mode 100644 index 000000000..87d2f166c --- /dev/null +++ b/v1.50/v1/04mqemp48.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/04mqemp48", + "name": "Shenyang Maternity and Child Health Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.79222, + "lng": 123.43278, + "state": null, + "state_code": null, + "city": "Shenyang", + "geonames_city": { + "id": 2034937, + "city": "Shenyang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sysfybjy.net" + ], + "aliases": [ + "Shenyang Maternity and Child Health Hospital" + ], + "acronyms": [ + "SMCHH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "沈阳市妇幼保健院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/04ms06f06.json b/v1.50/v1/04ms06f06.json new file mode 100644 index 000000000..19c9975de --- /dev/null +++ b/v1.50/v1/04ms06f06.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/04ms06f06", + "name": "Zentrum verantwortungsbewusste Digitalisierung", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Technical University of Darmstadt", + "type": "Parent", + "id": "https://ror.org/05n911h24" + } + ], + "addresses": [ + { + "lat": 49.87167, + "lng": 8.65027, + "state": null, + "state_code": null, + "city": "Darmstadt", + "geonames_city": { + "id": 2938913, + "city": "Darmstadt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://zevedi.de" + ], + "aliases": [ + "Center Responsible Digitality" + ], + "acronyms": [ + "ZEVEDI" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Zentrum_verantwortungsbewusste_Digitalisierung", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/04mywez65.json b/v1.50/v1/04mywez65.json new file mode 100644 index 000000000..0afea0610 --- /dev/null +++ b/v1.50/v1/04mywez65.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04mywez65", + "name": "Agents infectieux, résistance et chimiothérapie", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://agir.u-picardie.fr" + ], + "aliases": [ + "Infectious agents, resistance & chemotherapy", + "Infectious agents, resistance and chemotherapy" + ], + "acronyms": [ + "AGIR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/04n9e8n41.json b/v1.50/v1/04n9e8n41.json new file mode 100644 index 000000000..0656174d1 --- /dev/null +++ b/v1.50/v1/04n9e8n41.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04n9e8n41", + "name": "Aile ve Sosyal Hizmetler Bakanlığı", + "email_address": null, + "ip_addresses": [], + "established": null, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aile.gov.tr" + ], + "aliases": [ + "Ministry of Family and Social Services" + ], + "acronyms": [ + "ASHB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q6082235" + ], + "preferred": "Q6082235" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04nvpy675.json b/v1.50/v1/04nvpy675.json new file mode 100644 index 000000000..c49c6b551 --- /dev/null +++ b/v1.50/v1/04nvpy675.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04nvpy675", + "name": "Gaziantep İslam Bilim ve Teknoloji Üniversitesi", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.05944, + "lng": 37.3825, + "state": null, + "state_code": null, + "city": "Gaziantep", + "geonames_city": { + "id": 314830, + "city": "Gaziantep", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gibtu.edu.tr" + ], + "aliases": [ + "Gaziantep Islam Bilim ve Teknoloji Universitesi", + "Gaziantep University of Science and Technology" + ], + "acronyms": [ + "GISTU", + "GİBTU", + "GİBTÜ" + ], + "status": "active", + "wikipedia_url": "https://tr.wikipedia.org/wiki/Gaziantep_%C4%B0slam_Bilim_ve_Teknoloji_%C3%9Cniversitesi", + "labels": [ + { + "label": "Gaziantep Islam Science and Technology University", + "iso639": "en" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8004 5654" + ], + "preferred": "0000 0004 8004 5654" + }, + "Wikidata": { + "all": [ + "Q60673567" + ], + "preferred": "Q60673567" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04pk7zz41.json b/v1.50/v1/04pk7zz41.json new file mode 100644 index 000000000..a808f8fed --- /dev/null +++ b/v1.50/v1/04pk7zz41.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/04pk7zz41", + "name": "Arctic Long Term Ecological Research", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Long Term Ecological Research Network", + "type": "Parent", + "id": "https://ror.org/039kwqk96" + }, + { + "label": "Environmental Data Initiative", + "type": "Related", + "id": "https://ror.org/0330j0z60" + }, + { + "label": "University of Michigan–Ann Arbor", + "type": "Related", + "id": "https://ror.org/00jmfr291" + }, + { + "label": "University of Vermont", + "type": "Related", + "id": "https://ror.org/0155zta11" + }, + { + "label": "Towson University", + "type": "Related", + "id": "https://ror.org/044w7a341" + }, + { + "label": "Utah State University", + "type": "Related", + "id": "https://ror.org/00h6set76" + } + ], + "addresses": [ + { + "lat": 68.63257, + "lng": -149.60702, + "state": null, + "state_code": null, + "city": "Toolik Lake", + "geonames_city": { + "id": 5876468, + "city": "Toolik Lake", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://arc.lternet.edu" + ], + "aliases": [ + "Arctic LTER" + ], + "acronyms": [ + "ARC", + "ARC LTER" + ], + "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.50/v1/04q58ph11.json b/v1.50/v1/04q58ph11.json new file mode 100644 index 000000000..c3e9dd819 --- /dev/null +++ b/v1.50/v1/04q58ph11.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04q58ph11", + "name": "National Commission on Research Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -22.55941, + "lng": 17.08323, + "state": null, + "state_code": null, + "city": "Windhoek", + "geonames_city": { + "id": 3352136, + "city": "Windhoek", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ncrst.na" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Namibia", + "country_code": "NA" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100011855" + ], + "preferred": "501100011855" + }, + "Wikidata": { + "all": [ + "Q114556702" + ], + "preferred": "Q114556702" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04q8dyb68.json b/v1.50/v1/04q8dyb68.json new file mode 100644 index 000000000..ebcaa4d97 --- /dev/null +++ b/v1.50/v1/04q8dyb68.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/04q8dyb68", + "name": "Devki Devi Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.65195, + "lng": 77.23149, + "state": null, + "state_code": null, + "city": "Delhi", + "geonames_city": { + "id": 1273294, + "city": "Delhi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.devkidevifoundation.org" + ], + "aliases": [], + "acronyms": [ + "DDV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/04qa46285.json b/v1.50/v1/04qa46285.json new file mode 100644 index 000000000..94bb0d668 --- /dev/null +++ b/v1.50/v1/04qa46285.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04qa46285", + "name": "Dietrich Bonhoeffer Klinikum", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Universitätsmedizin Greifswald", + "type": "Related", + "id": "https://ror.org/025vngs54" + } + ], + "addresses": [ + { + "lat": 53.56414, + "lng": 13.27532, + "state": null, + "state_code": null, + "city": "Neubrandenburg", + "geonames_city": { + "id": 2866135, + "city": "Neubrandenburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dbknb.de" + ], + "aliases": [], + "acronyms": [ + "DBK" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.491786.5", + "preferred": "grid.491786.5" + }, + "ISNI": { + "all": [ + "0000 0001 0211 9062" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04qae1p49.json b/v1.50/v1/04qae1p49.json new file mode 100644 index 000000000..dd61caeba --- /dev/null +++ b/v1.50/v1/04qae1p49.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04qae1p49", + "name": "DoCoMo Communications Laboratories Europe GmbH", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "NTT (Germany)", + "type": "Parent", + "id": "https://ror.org/045vwce28" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://docomolab-euro.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.32217.35", + "preferred": "grid.32217.35" + }, + "ISNI": { + "all": [ + "0000 0004 0552 1892" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04qb2qm38.json b/v1.50/v1/04qb2qm38.json new file mode 100644 index 000000000..8612fee58 --- /dev/null +++ b/v1.50/v1/04qb2qm38.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/04qb2qm38", + "name": "Université Paris-Panthéon-Assas", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre d’Etudes et de Recherches de Sciences Administratives et Politiques", + "type": "Child", + "id": "https://ror.org/00abqs885" + }, + { + "label": "Laboratoire d'Économie Mathématique et de Microéconomie Appliquée", + "type": "Child", + "id": "https://ror.org/003ckn545" + }, + { + "label": "Engineering School of Information and Digital Technologies", + "type": "Child", + "id": "https://ror.org/01h7hvj14" + }, + { + "label": "Institut d'Histoire du Droit Jean Gaudemet", + "type": "Child", + "id": "https://ror.org/04j9ztm78" + }, + { + "label": "Bibliothèque interuniversitaire Cujas", + "type": "Child", + "id": "https://ror.org/011c8cv48" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.u-paris2.fr/" + ], + "aliases": [ + "Panthéon-Assas University", + "Université Panthéon-Assas" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Panth%C3%A9on-Assas_University", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.33831.3a", + "preferred": "grid.33831.3a" + }, + "ISNI": { + "all": [ + "0000 0001 2299 9829" + ], + "preferred": "0000 0001 2299 9829" + }, + "Wikidata": { + "all": [ + "Q662976" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04qf1dc42.json b/v1.50/v1/04qf1dc42.json new file mode 100644 index 000000000..e2c79967b --- /dev/null +++ b/v1.50/v1/04qf1dc42.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/04qf1dc42", + "name": "Plazi Verein", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.94809, + "lng": 7.44744, + "state": null, + "state_code": null, + "city": "Bern", + "geonames_city": { + "id": 2661552, + "city": "Bern", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://plazi.org" + ], + "aliases": [ + "Plazi" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q7203726" + ], + "preferred": "Q7203726" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04qs3nf63.json b/v1.50/v1/04qs3nf63.json new file mode 100644 index 000000000..fb1a68c09 --- /dev/null +++ b/v1.50/v1/04qs3nf63.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04qs3nf63", + "name": "Escola Superior de Tecnologias de Fafe", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Instituto Europeu de Estudos Superiores", + "type": "Parent", + "id": "https://ror.org/02v6n4042" + } + ], + "addresses": [ + { + "lat": 41.55032, + "lng": -8.42005, + "state": null, + "state_code": null, + "city": "Braga", + "geonames_city": { + "id": 2742032, + "city": "Braga", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iees.pt/escola-superior-de-tecnologias-de-fafe/" + ], + "aliases": [], + "acronyms": [ + "IEES ESTF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4651 5560" + ], + "preferred": "0000 0004 4651 5560" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04r1rhv60.json b/v1.50/v1/04r1rhv60.json new file mode 100644 index 000000000..8a23701b8 --- /dev/null +++ b/v1.50/v1/04r1rhv60.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04r1rhv60", + "name": "Hospital do Servidor Público Estadual", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Instituto de Assistência Médica ao Servidor Público Estadual", + "type": "Parent", + "id": "https://ror.org/03cg93958" + } + ], + "addresses": [ + { + "lat": -23.5475, + "lng": -46.63611, + "state": null, + "state_code": null, + "city": "São Paulo", + "geonames_city": { + "id": 3448439, + "city": "São Paulo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iamspe.sp.gov.br/hospital-do-servidor-publico-estadual/" + ], + "aliases": [], + "acronyms": [ + "HSPE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hospital_do_Servidor_P%C3%BAblico_Estadual", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "GRID": { + "all": "grid.414644.7", + "preferred": "grid.414644.7" + }, + "ISNI": { + "all": [ + "0000 0004 0411 4654" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04s5mat29.json b/v1.50/v1/04s5mat29.json new file mode 100644 index 000000000..f8db4ff4b --- /dev/null +++ b/v1.50/v1/04s5mat29.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/04s5mat29", + "name": "University of Victoria", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Bamfield Marine Sciences Centre", + "type": "Child", + "id": "https://ror.org/039cthy03" + }, + { + "label": "Ocean Networks Canada Society", + "type": "Child", + "id": "https://ror.org/05gknh003" + }, + { + "label": "Pacific Institute for Climate Solutions", + "type": "Child", + "id": "https://ror.org/00hv6g197" + }, + { + "label": "NorthEast Pacific Deep-sea Exploration Project", + "type": "Related", + "id": "https://ror.org/01fkg1209" + } + ], + "addresses": [ + { + "lat": 48.4359, + "lng": -123.35155, + "state": null, + "state_code": null, + "city": "Victoria", + "geonames_city": { + "id": 6174041, + "city": "Victoria", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uvic.ca/" + ], + "aliases": [ + "Victoria College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Victoria", + "labels": [ + { + "label": "Université de victoria", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008997", + "100008998", + "501100000078" + ], + "preferred": "100008997" + }, + "GRID": { + "all": "grid.143640.4", + "preferred": "grid.143640.4" + }, + "ISNI": { + "all": [ + "0000 0004 1936 9465" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1458113" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04s5p1a35.json b/v1.50/v1/04s5p1a35.json new file mode 100644 index 000000000..76bedc244 --- /dev/null +++ b/v1.50/v1/04s5p1a35.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/04s5p1a35", + "name": "Instituto Chico Mendes de Conservação da Biodiversidade", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -15.77972, + "lng": -47.92972, + "state": null, + "state_code": null, + "city": "Brasília", + "geonames_city": { + "id": 3469058, + "city": "Brasília", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.icmbio.gov.br/portal/quem-somos/o-instituto.html" + ], + "aliases": [ + "Cecav", + "ICMBio", + "ICMBio/Cecav" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Chico_Mendes_Institute_for_Biodiversity_Conservation", + "labels": [ + { + "label": "Centro Nacional de Pesquisa e Conservação de Cavernas", + "iso639": "pt" + }, + { + "label": "Chico Mendes Institute for Biodiversity Conservation", + "iso639": "en" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009985" + ], + "preferred": "501100009985" + }, + "GRID": { + "all": "grid.456561.5", + "preferred": "grid.456561.5" + }, + "ISNI": { + "all": [ + "0000 0000 9218 0782" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04s7shc55.json b/v1.50/v1/04s7shc55.json new file mode 100644 index 000000000..ac3466fba --- /dev/null +++ b/v1.50/v1/04s7shc55.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04s7shc55", + "name": "Forschungsinstitut für Anwendungsorientierte Wissensverarbeitung", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Universität Ulm", + "type": "Parent", + "id": "https://ror.org/032000t02" + } + ], + "addresses": [ + { + "lat": 48.39841, + "lng": 9.99155, + "state": null, + "state_code": null, + "city": "Ulm", + "geonames_city": { + "id": 2820256, + "city": "Ulm", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.faw-neu-ulm.de/" + ], + "aliases": [], + "acronyms": [ + "FAW" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.424518.e", + "preferred": "grid.424518.e" + }, + "ISNI": { + "all": [ + "0000 0001 1014 6175" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1386565" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04sftj265.json b/v1.50/v1/04sftj265.json new file mode 100644 index 000000000..4d9432fdb --- /dev/null +++ b/v1.50/v1/04sftj265.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04sftj265", + "name": "Vietnam Women's Academy", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.0245, + "lng": 105.84117, + "state": null, + "state_code": null, + "city": "Hanoi", + "geonames_city": { + "id": 1581130, + "city": "Hanoi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hvpnvn.edu.vn" + ], + "aliases": [], + "acronyms": [ + "HVPNVN", + "VWA" + ], + "status": "active", + "wikipedia_url": "https://vi.wikipedia.org/wiki/H%E1%BB%8Dc_vi%E1%BB%87n_Ph%E1%BB%A5_n%E1%BB%AF_Vi%E1%BB%87t_Nam", + "labels": [ + { + "label": "Học viện Phụ nữ Việt Nam", + "iso639": "vi" + } + ], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q18458592" + ], + "preferred": "Q18458592" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04smycn12.json b/v1.50/v1/04smycn12.json new file mode 100644 index 000000000..37744b5af --- /dev/null +++ b/v1.50/v1/04smycn12.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/04smycn12", + "name": "Roy Rosenzweig Center for History and New Media", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "George Mason University", + "type": "Parent", + "id": "https://ror.org/02jqj7156" + } + ], + "addresses": [ + { + "lat": 38.84622, + "lng": -77.30637, + "state": null, + "state_code": null, + "city": "Fairfax", + "geonames_city": { + "id": 4758023, + "city": "Fairfax", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rrchnm.org" + ], + "aliases": [ + "Center for History and New Media" + ], + "acronyms": [ + "CHNM", + "RRCHNM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q7373315" + ], + "preferred": "Q7373315" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04szabx38.json b/v1.50/v1/04szabx38.json new file mode 100644 index 000000000..277cf3615 --- /dev/null +++ b/v1.50/v1/04szabx38.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/04szabx38", + "name": "Institut de Biologie Structurale", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ibs.fr" + ], + "aliases": [ + "Institut de Biologie Structurale Jean-Pierre Ebel" + ], + "acronyms": [ + "IBS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418192.7", + "preferred": "grid.418192.7" + }, + "ISNI": { + "all": [ + "0000 0004 0641 5776" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q21619458" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04t0gwh46.json b/v1.50/v1/04t0gwh46.json new file mode 100644 index 000000000..1514b28e6 --- /dev/null +++ b/v1.50/v1/04t0gwh46.json @@ -0,0 +1,175 @@ +{ + "id": "https://ror.org/04t0gwh46", + "name": "Institut Curie", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "Child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Intégrité du génome, ARN et cancer", + "type": "Child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Immunité et Cancer", + "type": "Child", + "id": "https://ror.org/01zefvs55" + }, + { + "label": "Dynamique du noyau", + "type": "Child", + "id": "https://ror.org/04team556" + }, + { + "label": "Physique des Cellules et Cancers", + "type": "Child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "Child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Musée Curie", + "type": "Child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "Child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "Child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Laboratoire d'imagerie translationnelle en oncologie", + "type": "Child", + "id": "https://ror.org/05qy9ka59" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.institut-curie.org/" + ], + "aliases": [ + "Institut Curie" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Curie_Institute_(Paris)", + "labels": [ + { + "label": "Institute Curie", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010463" + ], + "preferred": "501100010463" + }, + "GRID": { + "all": "grid.418596.7", + "preferred": "grid.418596.7" + }, + "ISNI": { + "all": [ + "0000 0004 0639 6384" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2451973" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04tpgrv36.json b/v1.50/v1/04tpgrv36.json new file mode 100644 index 000000000..545dc23e5 --- /dev/null +++ b/v1.50/v1/04tpgrv36.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/04tpgrv36", + "name": "Institute for Wildlife Studies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.86652, + "lng": -124.08284, + "state": null, + "state_code": null, + "city": "Arcata", + "geonames_city": { + "id": 5558953, + "city": "Arcata", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iws.org" + ], + "aliases": [], + "acronyms": [ + "IWS" + ], + "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.50/v1/04v0fk911.json b/v1.50/v1/04v0fk911.json new file mode 100644 index 000000000..f19073ed1 --- /dev/null +++ b/v1.50/v1/04v0fk911.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/04v0fk911", + "name": "Technology Agency of the Czech Republic", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tacr.cz" + ], + "aliases": [], + "acronyms": [ + "TA CR", + "TA ČR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Technology_Agency_of_the_Czech_Republic", + "labels": [ + { + "label": "Technologická agentura České republiky", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002969", + "100014809" + ], + "preferred": null + }, + "GRID": { + "all": "grid.452996.5", + "preferred": "grid.452996.5" + }, + "ISNI": { + "all": [ + "0000 0005 1088 4863" + ], + "preferred": "0000 0005 1088 4863" + }, + "Wikidata": { + "all": [ + "Q20058195" + ], + "preferred": "Q20058195" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04vfs2w97.json b/v1.50/v1/04vfs2w97.json new file mode 100644 index 000000000..c23fab400 --- /dev/null +++ b/v1.50/v1/04vfs2w97.json @@ -0,0 +1,467 @@ +{ + "id": "https://ror.org/04vfs2w97", + "name": "Université de Lorraine", + "email_address": null, + "ip_addresses": [], + "established": 1572, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Animal et Fonctionnalités des Produits Animaux", + "type": "Child", + "id": "https://ror.org/02ynmc580" + }, + { + "label": "Archives Henri-Poincaré - Philosophie et Recherches sur les Sciences et les Technologies", + "type": "Child", + "id": "https://ror.org/02fdf4056" + }, + { + "label": "Bureau d'Economie Théorique et Appliquée", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Centre d'Investigation Clinique Pierre Drouin", + "type": "Child", + "id": "https://ror.org/04ghtjd11" + }, + { + "label": "Centre de Recherches Pétrographiques et Géochimiques", + "type": "Child", + "id": "https://ror.org/011nqat45" + }, + { + "label": "Analyse et Traitement Informatique de la Langue Française", + "type": "Child", + "id": "https://ror.org/02cy9g557" + }, + { + "label": "Imagerie Adaptative Diagnostique et Interventionnelle", + "type": "Child", + "id": "https://ror.org/025mhc977" + }, + { + "label": "Dynamique des Génomes et Adaptation Microbienne", + "type": "Child", + "id": "https://ror.org/01gbppd30" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "Child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Groupe de Recherche en Énergie Électrique de Nancy", + "type": "Child", + "id": "https://ror.org/01kwx4m12" + }, + { + "label": "Ingénierie Moléculaire et Physiopathologie Articulaire", + "type": "Child", + "id": "https://ror.org/04yc2e502" + }, + { + "label": "Institut Jean Lamour", + "type": "Child", + "id": "https://ror.org/05k1smh27" + }, + { + "label": "Institut Élie Cartan de Lorraine", + "type": "Child", + "id": "https://ror.org/04rvw8791" + }, + { + "label": "Maison des sciences de l'homme Lorraine", + "type": "Child", + "id": "https://ror.org/01petg633" + }, + { + "label": "Interactions Arbres-Microorganismes", + "type": "Child", + "id": "https://ror.org/03c4rpa03" + }, + { + "label": "Laboratoire Interdisciplinaire des Environnements Continentaux", + "type": "Child", + "id": "https://ror.org/05je79696" + }, + { + "label": "Labex ARBRE", + "type": "Child", + "id": "https://ror.org/00gyb4719" + }, + { + "label": "Laboratoire Matériaux Optiques, Photonique et Systèmes", + "type": "Child", + "id": "https://ror.org/055swm364" + }, + { + "label": "Laboratoire Réactions et Génie des Procédés", + "type": "Child", + "id": "https://ror.org/00p6sn362" + }, + { + "label": "Laboratoire d'Energétique et de Mécanique Théorique et Appliquée", + "type": "Child", + "id": "https://ror.org/01pfter31" + }, + { + "label": "Laboratoire de Chimie Physique et Microbiologie pour l'Environnement", + "type": "Child", + "id": "https://ror.org/03nknpw16" + }, + { + "label": "Laboratoire de Conception Fabrication Commande", + "type": "Child", + "id": "https://ror.org/01xd0ys45" + }, + { + "label": "Laboratoire de Cristallographie, Résonance Magnétique et Modélisations", + "type": "Child", + "id": "https://ror.org/017je3b10" + }, + { + "label": "Laboratoire d'Étude des Microstructures et de Mécanique des Matériaux", + "type": "Child", + "id": "https://ror.org/01nyrrx14" + }, + { + "label": "Laboratoire Sols et Environnement", + "type": "Child", + "id": "https://ror.org/01e8etd40" + }, + { + "label": "Laboratoire Lorrain de Recherche en Informatique et ses Applications", + "type": "Child", + "id": "https://ror.org/02vnf0c38" + }, + { + "label": "Centre de Recherche en Automatique de Nancy", + "type": "Child", + "id": "https://ror.org/022r5hc56" + }, + { + "label": "Silva", + "type": "Child", + "id": "https://ror.org/01d5v2p67" + }, + { + "label": "Zone Atelier Moselle", + "type": "Child", + "id": "https://ror.org/016vxbe23" + }, + { + "label": "Centre Européen de Recherche en Economie Financière et Gestion des Entreprises", + "type": "Child", + "id": "https://ror.org/0106d5c37" + }, + { + "label": "Laboratoire Interuniversitaire des Sciences de l'Education et de la Communication", + "type": "Child", + "id": "https://ror.org/04n2vwk08" + }, + { + "label": "Laboratoire de Génie Informatique, de Production et de Maintenance", + "type": "Child", + "id": "https://ror.org/04xykxd72" + }, + { + "label": "Laboratoire Agronomie et Environnement", + "type": "Child", + "id": "https://ror.org/01dg9a450" + }, + { + "label": "GeoRessources", + "type": "Child", + "id": "https://ror.org/04mq2px33" + }, + { + "label": "Observatoire Terre et environnement de Lorraine", + "type": "Child", + "id": "https://ror.org/02cyw3861" + }, + { + "label": "Laboratoire de Chimie-Physique Macromoléculaire", + "type": "Child", + "id": "https://ror.org/0371yc337" + }, + { + "label": "Laboratoire Lorrain de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/020azc393" + }, + { + "label": "Laboratoire de Physique et Chimie Théoriques", + "type": "Child", + "id": "https://ror.org/02atkd403" + }, + { + "label": "Centre de Recherche sur les Médiations", + "type": "Child", + "id": "https://ror.org/04ev1zs55" + }, + { + "label": "Laboratoire d'Ingénierie des Biomolécules", + "type": "Child", + "id": "https://ror.org/03d28dw78" + }, + { + "label": "Laboratoire de Conception, Optimisation et Modélisation des Systèmes", + "type": "Child", + "id": "https://ror.org/04x6jg419" + }, + { + "label": "Cibles thérapeutiques, formulation et expertise préclinique du médicament", + "type": "Child", + "id": "https://ror.org/05adajg67" + }, + { + "label": "Défaillance Cardiovasculaire Aiguë et Chronique", + "type": "Child", + "id": "https://ror.org/05ft9wv42" + }, + { + "label": "Développement, Adaptation et Handicap", + "type": "Child", + "id": "https://ror.org/019c1xz73" + }, + { + "label": "Interactions Gène-Environnement en Physiopathologie Cardio-Vasculaire", + "type": "Child", + "id": "https://ror.org/01evjjx71" + }, + { + "label": "Nutrition-Génétique et Exposition aux Risques Environnementaux", + "type": "Child", + "id": "https://ror.org/053d03003" + }, + { + "label": "Stress, immunité, pathogènes", + "type": "Child", + "id": "https://ror.org/04f50n919" + }, + { + "label": "Interpsy", + "type": "Child", + "id": "https://ror.org/0495mzm65" + }, + { + "label": "Psychologie Ergonomique et Sociale pour l'Expérience Utilisateurs", + "type": "Child", + "id": "https://ror.org/018d4rr63" + }, + { + "label": "Laboratoire de Chimie et Physique - Approche Multi-échelle des Milieux Complexes", + "type": "Child", + "id": "https://ror.org/05yc49b49" + }, + { + "label": "Composés Alimentaires : Biofonctionnalités et risques Neurotoxiques", + "type": "Child", + "id": "https://ror.org/02vc99v03" + }, + { + "label": "Équipe de Recherche sur les Processus Innovatifs", + "type": "Child", + "id": "https://ror.org/01hntn815" + }, + { + "label": "Laboratoire d'Etude et de Recherche sur le Matériau Bois", + "type": "Child", + "id": "https://ror.org/01sp9jb48" + }, + { + "label": "Institut François Gény", + "type": "Child", + "id": "https://ror.org/05kjgf606" + }, + { + "label": "Institut de recherches sur l'évolution de la nation et de l'État", + "type": "Child", + "id": "https://ror.org/04gmrh438" + }, + { + "label": "Centre d'Etudes Germaniques Interculturelles de Lorraine", + "type": "Child", + "id": "https://ror.org/055yrx709" + }, + { + "label": "Centre de Recherche sur les Cultures et les Littératures Européennes", + "type": "Child", + "id": "https://ror.org/03hhwe765" + }, + { + "label": "Centre de Recherche en Géographie", + "type": "Child", + "id": "https://ror.org/03pz4q672" + }, + { + "label": "Centre de Recherche Universitaire Lorrain d’Histoire", + "type": "Child", + "id": "https://ror.org/00xngy573" + }, + { + "label": "Centre lorrain de recherches interdisciplinaires dans les domaines des littératures, des cultures et de la théologie", + "type": "Child", + "id": "https://ror.org/01e0n5141" + }, + { + "label": "Histoire et Cultures de l'Antiquité et du Moyen Âge", + "type": "Child", + "id": "https://ror.org/00wbse129" + }, + { + "label": "Interdisciplinarité dans les Etudes Anglophones", + "type": "Child", + "id": "https://ror.org/052k52s41" + }, + { + "label": "Littératures, Imaginaire, Sociétés", + "type": "Child", + "id": "https://ror.org/00mny5z95" + }, + { + "label": "Laboratoire Lorrain de Sciences Sociales", + "type": "Child", + "id": "https://ror.org/01fe8k477" + }, + { + "label": "Laboratoire lorrain de psychologie et neurosciences de la dynamique des comportements", + "type": "Child", + "id": "https://ror.org/00e8hwt93" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre Hospitalier Universitaire de Nancy", + "type": "Related", + "id": "https://ror.org/016ncsr12" + }, + { + "label": "Adaptation, mesure et évaluation en santé. Approches interdisciplinaires", + "type": "Child", + "id": "https://ror.org/04dx32582" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.68439, + "lng": 6.18496, + "state": null, + "state_code": null, + "city": "Nancy", + "geonames_city": { + "id": 2990999, + "city": "Nancy", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-lorraine.fr" + ], + "aliases": [], + "acronyms": [ + "UL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Lorraine", + "labels": [ + { + "label": "University of Lorraine", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008990" + ], + "preferred": null + }, + "GRID": { + "all": "grid.29172.3f", + "preferred": "grid.29172.3f" + }, + "ISNI": { + "all": [ + "0000 0001 2194 6418" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4173330", + "Q1132955", + "Q1465237" + ], + "preferred": "Q4173330" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04waf7p94.json b/v1.50/v1/04waf7p94.json new file mode 100644 index 000000000..b6e7bfb03 --- /dev/null +++ b/v1.50/v1/04waf7p94.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/04waf7p94", + "name": "Instytut Biologii Doświadczalnej im. Marcelego Nenckiego", + "email_address": null, + "ip_addresses": [], + "established": 1918, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Polish Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/01dr6c206" + }, + { + "label": "Uniwersytet SWPS", + "type": "Related", + "id": "https://ror.org/0407f1r36" + } + ], + "addresses": [ + { + "lat": 52.22977, + "lng": 21.01178, + "state": null, + "state_code": null, + "city": "Warsaw", + "geonames_city": { + "id": 756135, + "city": "Warsaw", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://en.nencki.gov.pl/" + ], + "aliases": [ + "Nencki Institute of Experimental Biology" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100014418" + ], + "preferred": "501100014418" + }, + "GRID": { + "all": "grid.419305.a", + "preferred": "grid.419305.a" + }, + "ISNI": { + "all": [ + "0000 0001 1943 2944" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04wb5nh51.json b/v1.50/v1/04wb5nh51.json new file mode 100644 index 000000000..bfbe2e142 --- /dev/null +++ b/v1.50/v1/04wb5nh51.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04wb5nh51", + "name": "Universitas Muhammadiyah Kalimantan Timur", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -0.49167, + "lng": 117.14583, + "state": null, + "state_code": null, + "city": "Samarinda", + "geonames_city": { + "id": 1629001, + "city": "Samarinda", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umkt.ac.id" + ], + "aliases": [ + "Muhammadiyah University of East Kalimantan" + ], + "acronyms": [ + "UMKT" + ], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Universitas_Muhammadiyah_Kalimantan_Timur", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q97308882" + ], + "preferred": "Q97308882" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04wez4p43.json b/v1.50/v1/04wez4p43.json new file mode 100644 index 000000000..c1ee3ceb5 --- /dev/null +++ b/v1.50/v1/04wez4p43.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/04wez4p43", + "name": "Laboratoire d'Automatique, Génie Informatique et Signal", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Nord, Pas-de-Calais et Picardie", + "type": "Parent", + "id": "https://ror.org/04cxsn644" + }, + { + "label": "Ministère de l’Enseignement Supérieur et de la Recherche", + "type": "Parent", + "id": "https://ror.org/03sjk9a61" + }, + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "École Centrale de Lille", + "type": "Parent", + "id": "https://ror.org/01x441g73" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Successor", + "id": "https://ror.org/05vrs3189" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lagis.cnrs.fr/?lang=fr" + ], + "aliases": [], + "acronyms": [ + "LAGIS" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Laboratoire_d%27Automatique,_G%C3%A9nie_Informatique_et_Signal", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503297.a", + "preferred": "grid.503297.a" + }, + "ISNI": { + "all": [ + "0000 0004 0371 0462" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3214416" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04wxbhc62.json b/v1.50/v1/04wxbhc62.json new file mode 100644 index 000000000..fca66e2d9 --- /dev/null +++ b/v1.50/v1/04wxbhc62.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/04wxbhc62", + "name": "Himalayan College of Agricultural Sciences and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Purbanchal University", + "type": "Parent", + "id": "https://ror.org/0353fsq42" + } + ], + "addresses": [ + { + "lat": 27.70169, + "lng": 85.3206, + "state": null, + "state_code": null, + "city": "Kathmandu", + "geonames_city": { + "id": 1283240, + "city": "Kathmandu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hicast.edu.np" + ], + "aliases": [ + "HICAST Purbanchal University" + ], + "acronyms": [ + "HICAST" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/04xaa4j22.json b/v1.50/v1/04xaa4j22.json new file mode 100644 index 000000000..a9f8b4f0e --- /dev/null +++ b/v1.50/v1/04xaa4j22.json @@ -0,0 +1,131 @@ +{ + "id": "https://ror.org/04xaa4j22", + "name": "Institut National des Sciences Appliquées de Rennes", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "Child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "Child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "Child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "Child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "Child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Laboratoire de génie civil et génie mécanique", + "type": "Child", + "id": "https://ror.org/03x0g1010" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 48.11198, + "lng": -1.67429, + "state": null, + "state_code": null, + "city": "Rennes", + "geonames_city": { + "id": 2983990, + "city": "Rennes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.insa-rennes.fr/en.html" + ], + "aliases": [ + "INSA de Rennes" + ], + "acronyms": [ + "INSA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_national_des_sciences_appliqu%C3%A9es_de_Rennes", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.424700.5", + "preferred": "grid.424700.5" + }, + "ISNI": { + "all": [ + "0000 0001 2190 8462" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1934614" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04xhy8q59.json b/v1.50/v1/04xhy8q59.json new file mode 100644 index 000000000..0dfb2c7d1 --- /dev/null +++ b/v1.50/v1/04xhy8q59.json @@ -0,0 +1,198 @@ +{ + "id": "https://ror.org/04xhy8q59", + "name": "Université de Poitiers", + "email_address": null, + "ip_addresses": [], + "established": 1431, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Recherche Interdisciplinaire en Histoire, Histoire de l’art et Musicologie", + "type": "Child", + "id": "https://ror.org/05vjwz959" + }, + { + "label": "Institut Pprime", + "type": "Child", + "id": "https://ror.org/05vjdsn22" + }, + { + "label": "Institut de Chimie des Milieux et des Matériaux de Poitiers", + "type": "Child", + "id": "https://ror.org/001n7ee52" + }, + { + "label": "Institut des Textes et Manuscrits Modernes", + "type": "Child", + "id": "https://ror.org/00x1d4q78" + }, + { + "label": "Institute of Paleoprimatology Human Paleontology Evolution and Paleoenvironments", + "type": "Child", + "id": "https://ror.org/0325zb480" + }, + { + "label": "Migrations Internationales, Espace Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03sv5kk82" + }, + { + "label": "Centre de Recherches sur la Cognition et l'Apprentissage", + "type": "Child", + "id": "https://ror.org/01sdp1y98" + }, + { + "label": "XLIM", + "type": "Child", + "id": "https://ror.org/00f7srh09" + }, + { + "label": "Écologie et Biologie des Interactions", + "type": "Child", + "id": "https://ror.org/051f3f740" + }, + { + "label": "Recherches en Psychopathologie et Psychanalyse", + "type": "Child", + "id": "https://ror.org/04fke6556" + }, + { + "label": "Groupe de Recherches Sociologiques sur les sociétés Contemporaines", + "type": "Child", + "id": "https://ror.org/01h67hk15" + }, + { + "label": "Pharmacologie des anti-infectieux et antibiorésistance", + "type": "Child", + "id": "https://ror.org/041v99f68" + }, + { + "label": "Ischémie Reperfusion, Métabolisme et Inflammation Stérile en Transplantation", + "type": "Child", + "id": "https://ror.org/05kkw6065" + }, + { + "label": "Laboratoire de Neurosciences Expérimentales et Cliniques", + "type": "Child", + "id": "https://ror.org/04rfxk768" + }, + { + "label": "Centre d'études supérieures de civilisation médiévale", + "type": "Child", + "id": "https://ror.org/005hw9085" + }, + { + "label": "Laboratoire de Mathématiques et Applications", + "type": "Child", + "id": "https://ror.org/02p2rk609" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre Hospitalier Universitaire de Poitiers", + "type": "Related", + "id": "https://ror.org/029s6hd13" + }, + { + "label": "Clinique de l'Acte et PSychosexualité", + "type": "Related", + "id": "https://ror.org/01egbmk61" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 46.58261, + "lng": 0.34348, + "state": null, + "state_code": null, + "city": "Poitiers", + "geonames_city": { + "id": 2986495, + "city": "Poitiers", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-poitiers.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Poitiers", + "labels": [ + { + "label": "University of Poitiers", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022108" + ], + "preferred": "501100022108" + }, + "GRID": { + "all": "grid.11166.31", + "preferred": "grid.11166.31" + }, + "ISNI": { + "all": [ + "0000 0001 2160 6368" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q661056" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04xrcta15.json b/v1.50/v1/04xrcta15.json new file mode 100644 index 000000000..f7e3268bb --- /dev/null +++ b/v1.50/v1/04xrcta15.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04xrcta15", + "name": "Munich Center for Quantum Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mcqst.de/" + ], + "aliases": [], + "acronyms": [ + "MCQST" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100021825" + ], + "preferred": "501100021825" + }, + "GRID": { + "all": "grid.510972.8", + "preferred": "grid.510972.8" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04y8cs423.json b/v1.50/v1/04y8cs423.json new file mode 100644 index 000000000..9168a7387 --- /dev/null +++ b/v1.50/v1/04y8cs423.json @@ -0,0 +1,167 @@ +{ + "id": "https://ror.org/04y8cs423", + "name": "École Nationale Supérieure des Mines de Paris", + "email_address": null, + "ip_addresses": [], + "established": 1783, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de sociologie de l'innovation", + "type": "Child", + "id": "https://ror.org/00a8p0m24" + }, + { + "label": "Centre de Gestion Scientifique", + "type": "Child", + "id": "https://ror.org/003y0kg83" + }, + { + "label": "Centre de Recherche en Informatique", + "type": "Child", + "id": "https://ror.org/020cdve92" + }, + { + "label": "Centre des Matériaux", + "type": "Child", + "id": "https://ror.org/01q5ge486" + }, + { + "label": "Centre de Mise en Forme des Matériaux", + "type": "Child", + "id": "https://ror.org/00qm1ye08" + }, + { + "label": "Centre Procédés, Energies Renouvelables et Systèmes Energétiques", + "type": "Child", + "id": "https://ror.org/01ydp2x12" + }, + { + "label": "Centre de Géosciences", + "type": "Child", + "id": "https://ror.org/03kc13263" + }, + { + "label": "Laboratoire Mécanique des Solides", + "type": "Child", + "id": "https://ror.org/00xd1ek73" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "Child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "ParisTech", + "type": "Parent", + "id": "https://ror.org/05c2qg481" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://minesparis.psl.eu" + ], + "aliases": [ + "Mines ParisTech", + "École des Mines de Paris" + ], + "acronyms": [ + "ENSMP" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Mines_ParisTech", + "labels": [ + { + "label": "Mines Paris - PSL", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.58140.38", + "preferred": "grid.58140.38" + }, + "ISNI": { + "all": [ + "0000 0001 2097 6957" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1189954" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04yem5s35.json b/v1.50/v1/04yem5s35.json new file mode 100644 index 000000000..0db904865 --- /dev/null +++ b/v1.50/v1/04yem5s35.json @@ -0,0 +1,159 @@ +{ + "id": "https://ror.org/04yem5s35", + "name": "INFRANALYTICS", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Université Claude Bernard Lyon 1", + "type": "Related", + "id": "https://ror.org/029brtt94" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Related", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "Institut National des Sciences Appliquées Rouen Normandie", + "type": "Related", + "id": "https://ror.org/020ws7586" + }, + { + "label": "Université de Rouen Normandie", + "type": "Related", + "id": "https://ror.org/03nhjew95" + }, + { + "label": "École Polytechnique", + "type": "Related", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Related", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Related", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Université de Strasbourg", + "type": "Related", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Related", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Aix-Marseille Université", + "type": "Related", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Université de Lorraine", + "type": "Related", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Université de Bordeaux", + "type": "Related", + "id": "https://ror.org/057qpr032" + }, + { + "label": "Sorbonne Université", + "type": "Related", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris-Saclay", + "type": "Related", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université de Lille", + "type": "Related", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 47.90289, + "lng": 1.90389, + "state": null, + "state_code": null, + "city": "Orléans", + "geonames_city": { + "id": 2989317, + "city": "Orléans", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://infranalytics.fr" + ], + "aliases": [ + "FR 2054" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695012" + ], + "preferred": "Q123695012" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04yfac239.json b/v1.50/v1/04yfac239.json new file mode 100644 index 000000000..5a3978fa8 --- /dev/null +++ b/v1.50/v1/04yfac239.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04yfac239", + "name": "Complex Oncology Center - Ruse", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.84872, + "lng": 25.9534, + "state": null, + "state_code": null, + "city": "Rousse", + "geonames_city": { + "id": 727523, + "city": "Rousse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kocruse.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "COC Ruse", + "iso639": "en" + }, + { + "label": "Kompleksen Onkologichen Tsentar – Ruse", + "iso639": "bg" + }, + { + "label": "Комплексен Онкологичен Център Русе", + "iso639": "bg" + } + ], + "country": { + "country_name": "Bulgaria", + "country_code": "BG" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/04yznqr36.json b/v1.50/v1/04yznqr36.json new file mode 100644 index 000000000..7ec0b0165 --- /dev/null +++ b/v1.50/v1/04yznqr36.json @@ -0,0 +1,232 @@ +{ + "id": "https://ror.org/04yznqr36", + "name": "Université Jean Monnet", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Biologie, Ingénierie et Imagerie de la Greffe de Cornée", + "type": "Child", + "id": "https://ror.org/037b3he73" + }, + { + "label": "Centre Max Weber", + "type": "Child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "Child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Conception de l'Action en Situation", + "type": "Child", + "id": "https://ror.org/0476zq753" + }, + { + "label": "Education, Cultures, Politiques", + "type": "Child", + "id": "https://ror.org/037xc1874" + }, + { + "label": "Environnement, ville, société", + "type": "Child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "type": "Child", + "id": "https://ror.org/042fmc481" + }, + { + "label": "Histoire et Sources des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/01yx7av22" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Laboratoire Hubert Curien", + "type": "Child", + "id": "https://ror.org/0028p8r67" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "Child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "Child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Biotechnologies Végétales Appliquées aux Plantes Aromatiques et Médicinales", + "type": "Child", + "id": "https://ror.org/01j6cta96" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "Child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Ingenierie des Materiaux polymeres", + "type": "Child", + "id": "https://ror.org/02160my55" + }, + { + "label": "Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles", + "type": "Child", + "id": "https://ror.org/04rkh0096" + }, + { + "label": "Centre de Recherche en Neurosciences de Lyon", + "type": "Child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Centre d'Investigation Clinique - Epidémiologie Clinique Saint-Etienne", + "type": "Child", + "id": "https://ror.org/044dp1584" + }, + { + "label": "Research on healthcare performance", + "type": "Child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Laboratoire Interuniversitaire de Biologie de la Motricité", + "type": "Related", + "id": "https://ror.org/03sc1p174" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 45.43389, + "lng": 4.39, + "state": null, + "state_code": null, + "city": "Saint-Etienne", + "geonames_city": { + "id": 2980291, + "city": "Saint-Etienne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://portail.univ-st-etienne.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Jean_Monnet_University", + "labels": [ + { + "label": "Jean Monnet University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.6279.a", + "preferred": "grid.6279.a" + }, + "ISNI": { + "all": [ + "0000 0001 2158 1682" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q623154" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04z73qb28.json b/v1.50/v1/04z73qb28.json new file mode 100644 index 000000000..e9df45af7 --- /dev/null +++ b/v1.50/v1/04z73qb28.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/04z73qb28", + "name": "Brooklyn Philharmonic", + "email_address": null, + "ip_addresses": [], + "established": 1857, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.bphil.org" + ], + "aliases": [ + "Brooklyn Philharmonic Symphony Orchestra" + ], + "acronyms": [ + "BSO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Brooklyn_Philharmonic#cite_note-5", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446393.f", + "preferred": "grid.446393.f" + }, + "ISNI": { + "all": [ + "0000 0000 9550 2919" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2039845" + ], + "preferred": "Q2039845" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04z8qxc46.json b/v1.50/v1/04z8qxc46.json new file mode 100644 index 000000000..c2b356f75 --- /dev/null +++ b/v1.50/v1/04z8qxc46.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/04z8qxc46", + "name": "The Fund for Science, Technology and Innovation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.33507, + "lng": -4.0039, + "state": null, + "state_code": null, + "city": "Cocody", + "geonames_city": { + "id": 2290623, + "city": "Cocody", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Fund for Science, Technology and Innovation" + ], + "acronyms": [ + "FONSTI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ivory Coast", + "country_code": "CI" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100018568" + ], + "preferred": "501100018568" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04zj3zq12.json b/v1.50/v1/04zj3zq12.json new file mode 100644 index 000000000..88d09353d --- /dev/null +++ b/v1.50/v1/04zj3zq12.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04zj3zq12", + "name": "Fachklinik für Neurologie Dietenbronn", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Sana Klinikum", + "type": "Parent", + "id": "https://ror.org/01b4gqk18" + }, + { + "label": "Universität Ulm", + "type": "Related", + "id": "https://ror.org/032000t02" + } + ], + "addresses": [ + { + "lat": 48.17424, + "lng": 9.97541, + "state": null, + "state_code": null, + "city": "Schwendi", + "geonames_city": { + "id": 2834334, + "city": "Schwendi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sana.de/dietenbronn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.511964.e", + "preferred": "grid.511964.e" + }, + "ISNI": { + "all": [ + "0000 0004 0580 4171" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q19962345" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04zmssz18.json b/v1.50/v1/04zmssz18.json new file mode 100644 index 000000000..dd7167228 --- /dev/null +++ b/v1.50/v1/04zmssz18.json @@ -0,0 +1,293 @@ +{ + "id": "https://ror.org/04zmssz18", + "name": "École Normale Supérieure de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 1880, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Max Weber", + "type": "Child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Education, Cultures, Politiques", + "type": "Child", + "id": "https://ror.org/037xc1874" + }, + { + "label": "Environnement, ville, société", + "type": "Child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Equipe de recherche de Lyon en Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/04y24xj84" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "type": "Child", + "id": "https://ror.org/042fmc481" + }, + { + "label": "Histoire et Sources des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/01yx7av22" + }, + { + "label": "Histoire, Archéologie, Littératures des Mondes Chrétiens et Musulmans Médiévaux", + "type": "Child", + "id": "https://ror.org/05mqwtr17" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "Child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Interactions, Corpus, Apprentissages, Représentations", + "type": "Child", + "id": "https://ror.org/04mn0nr69" + }, + { + "label": "Centre International de Recherche en Infectiologie", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "Child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Chimie", + "type": "Child", + "id": "https://ror.org/02gaw1s20" + }, + { + "label": "Laboratoire de Physique de l'ENS de Lyon", + "type": "Child", + "id": "https://ror.org/00w5ay796" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire de Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/0453rk787" + }, + { + "label": "Laboratoire de l'Informatique du Parallélisme", + "type": "Child", + "id": "https://ror.org/04msnz457" + }, + { + "label": "Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles", + "type": "Child", + "id": "https://ror.org/04rkh0096" + }, + { + "label": "Institut d'Asie Orientale", + "type": "Child", + "id": "https://ror.org/007dy3y92" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Centre Européen de Résonance Magnétique Nucléaire A Très Hauts Champs", + "type": "Child", + "id": "https://ror.org/00j29pk38" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Unité de Mathématiques Pures et Appliquées", + "type": "Child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Virologie et Pathologies Humaines", + "type": "Child", + "id": "https://ror.org/031xg0236" + }, + { + "label": "Center for Economic Research on Governance, Inequality and Conflict", + "type": "Child", + "id": "https://ror.org/055gja518" + }, + { + "label": "Sciences, Société, Historicité, Éducation et Pratiques", + "type": "Child", + "id": "https://ror.org/04cre2h49" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "Child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Centre de Recherche Astrophysique de Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Observatoire de Lyon", + "type": "Child", + "id": "https://ror.org/03j307b25" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ens-lyon.eu/ecole-normale-superieure-de-lyon-accueil-77247.kjsp" + ], + "aliases": [ + "ENS Lyon", + "Normale Sup' Lyon" + ], + "acronyms": [ + "ENSL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure_de_Lyon", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100018692" + ], + "preferred": "501100018692" + }, + "GRID": { + "all": "grid.15140.31", + "preferred": "grid.15140.31" + }, + "ISNI": { + "all": [ + "0000 0001 2175 9188" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10159" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/04zvemf87.json b/v1.50/v1/04zvemf87.json new file mode 100644 index 000000000..f4b70245f --- /dev/null +++ b/v1.50/v1/04zvemf87.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/04zvemf87", + "name": "Higher Institute of Science and Technology Sabratha", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.79335, + "lng": 12.48845, + "state": null, + "state_code": null, + "city": "Şabrātah", + "geonames_city": { + "id": 2212771, + "city": "Şabrātah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://shi.edu.ly" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "المعهد العالي للعلوم والتقنية - صبراتة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Libya", + "country_code": "LY" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/050a1gn71.json b/v1.50/v1/050a1gn71.json new file mode 100644 index 000000000..d9add7c5b --- /dev/null +++ b/v1.50/v1/050a1gn71.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/050a1gn71", + "name": "Modèles et simulations pour l'Architecture et le Patrimoine", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Ministère de la Culture", + "type": "Parent", + "id": "https://ror.org/017rnyz40" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.map.cnrs.fr" + ], + "aliases": [ + "Models and Simulations for Architecture and Heritage" + ], + "acronyms": [ + "MAP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q125267404" + ], + "preferred": "Q125267404" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/050jn9y42.json b/v1.50/v1/050jn9y42.json new file mode 100644 index 000000000..6cf02782b --- /dev/null +++ b/v1.50/v1/050jn9y42.json @@ -0,0 +1,202 @@ +{ + "id": "https://ror.org/050jn9y42", + "name": "Institut National des Sciences Appliquées de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Biologie Fonctionnelle Insectes et Interactions", + "type": "Child", + "id": "https://ror.org/03d1jma17" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "Child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Centre d'Énergétique et de Thermique de Lyon", + "type": "Child", + "id": "https://ror.org/01k383v05" + }, + { + "label": "Laboratoire de Mécanique des Contacts et des Structures", + "type": "Child", + "id": "https://ror.org/05s608j53" + }, + { + "label": "Decision & Information Sciences for Production Systems", + "type": "Child", + "id": "https://ror.org/02stf8w13" + }, + { + "label": "Environnement, ville, société", + "type": "Child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Field Observatory in Urban Hydrology", + "type": "Child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Institut de Chimie et Biochimie Moléculaires et Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00gj33s30" + }, + { + "label": "Institut des Nanotechnologies de Lyon", + "type": "Child", + "id": "https://ror.org/04jsk0b74" + }, + { + "label": "Laboratoire Ampère", + "type": "Child", + "id": "https://ror.org/04xbczw40" + }, + { + "label": "Laboratoire CarMeN", + "type": "Child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "Child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "Child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Ingenierie des Materiaux polymeres", + "type": "Child", + "id": "https://ror.org/02160my55" + }, + { + "label": "Matériaux Ingénierie et Science", + "type": "Child", + "id": "https://ror.org/01rnfhz46" + }, + { + "label": "Laboratoire de Microbiologie, Adaptation et Pathogénie", + "type": "Child", + "id": "https://ror.org/03p3f6k20" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.insa-lyon.fr" + ], + "aliases": [ + "INSA Lyon" + ], + "acronyms": [ + "INSA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_national_des_sciences_appliqu%C3%A9es_de_Lyon", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009081" + ], + "preferred": "501100009081" + }, + "GRID": { + "all": "grid.15399.37", + "preferred": "grid.15399.37" + }, + "ISNI": { + "all": [ + "0000 0004 1765 5089" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1633859" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05120qw60.json b/v1.50/v1/05120qw60.json new file mode 100644 index 000000000..955b980e8 --- /dev/null +++ b/v1.50/v1/05120qw60.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05120qw60", + "name": "Escola Superior de Saúde Jean Piaget de Viseu", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Instituto Piaget", + "type": "Parent", + "id": "https://ror.org/044k31203" + } + ], + "addresses": [ + { + "lat": 40.82747, + "lng": -7.79816, + "state": null, + "state_code": null, + "city": "Viseu", + "geonames_city": { + "id": 2732264, + "city": "Viseu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ipiaget.org/escola-superior-de-saude-viseu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4651 6037" + ], + "preferred": "0000 0004 4651 6037" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/051escj72.json b/v1.50/v1/051escj72.json new file mode 100644 index 000000000..58a321d04 --- /dev/null +++ b/v1.50/v1/051escj72.json @@ -0,0 +1,413 @@ +{ + "id": "https://ror.org/051escj72", + "name": "Université de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1289, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "UMR Botanique et Modélisation de l’Architecture des Plantes et des végétations", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Recherche de Biochimie Macromoléculaire", + "type": "Child", + "id": "https://ror.org/01xpc6869" + }, + { + "label": "Diversité, adaptation, développement des plantes", + "type": "Child", + "id": "https://ror.org/02banhz78" + }, + { + "label": "Diversity, Genomes and Insects-Microorganisms Interactions", + "type": "Child", + "id": "https://ror.org/03q1qx424" + }, + { + "label": "Forests and Societies", + "type": "Child", + "id": "https://ror.org/02pzyz439" + }, + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Institut Charles Gerhardt", + "type": "Child", + "id": "https://ror.org/028wq3277" + }, + { + "label": "Institut Européen des Membranes", + "type": "Child", + "id": "https://ror.org/04nmj9827" + }, + { + "label": "Institut d'Électronique et des Systèmes", + "type": "Child", + "id": "https://ror.org/0431hh004" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Génétique Moléculaire de Montpellier", + "type": "Child", + "id": "https://ror.org/02785qs39" + }, + { + "label": "Institut Montpelliérain Alexander Grothendieck", + "type": "Child", + "id": "https://ror.org/044kxby82" + }, + { + "label": "Institut de Recherche en Infectiologie de Montpellier", + "type": "Child", + "id": "https://ror.org/036eg1q44" + }, + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "Child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "Child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institut de Chimie Séparative de Marcoule", + "type": "Child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institut de Recherche en Cancérologie de Montpellier", + "type": "Child", + "id": "https://ror.org/03capj968" + }, + { + "label": "Institut de Génétique Humaine", + "type": "Child", + "id": "https://ror.org/05ee10k25" + }, + { + "label": "Laboratoire Charles Coulomb", + "type": "Child", + "id": "https://ror.org/02ftce284" + }, + { + "label": "Laboratoire Univers et Particules de Montpellier", + "type": "Child", + "id": "https://ror.org/00nrbzg90" + }, + { + "label": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "type": "Child", + "id": "https://ror.org/03fte3n86" + }, + { + "label": "Laboratoire de Mécanique et Génie Civil", + "type": "Child", + "id": "https://ror.org/02fke9256" + }, + { + "label": "Laboratoire HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "Child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Marine Biodiversity Exploitation and Conservation", + "type": "Child", + "id": "https://ror.org/049dk3691" + }, + { + "label": "Laboratoire d'Informatique, de Robotique et de Microélectronique de Montpellier", + "type": "Child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Physiologie et Médecine Expérimentale du Coeur et des Muscles", + "type": "Child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Sciences pour L’Œnologie", + "type": "Child", + "id": "https://ror.org/04w07sc25" + }, + { + "label": "Centre d’Etudes Politiques Et sociaLes", + "type": "Child", + "id": "https://ror.org/02wzg8t73" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "Child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "Child", + "id": "https://ror.org/03kbarg82" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "Child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "Child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "Child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Centre Méditerranéen de l’Environnement et de la Biodiversité", + "type": "Child", + "id": "https://ror.org/04eeyfe07" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "Université Montpellier 1", + "type": "Predecessor", + "id": "https://ror.org/0227fbx80" + }, + { + "label": "Université Montpellier 2", + "type": "Predecessor", + "id": "https://ror.org/00wh4bp03" + }, + { + "label": "Hôpital Lapeyronie", + "type": "Related", + "id": "https://ror.org/03xzagw65" + }, + { + "label": "Hôpital Saint Eloi", + "type": "Related", + "id": "https://ror.org/04pwyfk22" + }, + { + "label": "Institut Universitaire de Recherche Clinique", + "type": "Related", + "id": "https://ror.org/03kfkzp90" + }, + { + "label": "Centre Hospitalier Universitaire de Montpellier", + "type": "Related", + "id": "https://ror.org/00mthsf17" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umontpellier.fr/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Montpellier", + "labels": [ + { + "label": "University of Montpellier", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008222" + ], + "preferred": null + }, + "GRID": { + "all": "grid.121334.6", + "preferred": "grid.121334.6" + }, + "ISNI": { + "all": [ + "0000 0001 2097 0141" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q776223" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/051kejp81.json b/v1.50/v1/051kejp81.json new file mode 100644 index 000000000..f27090302 --- /dev/null +++ b/v1.50/v1/051kejp81.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/051kejp81", + "name": "Brooklyn Public Library", + "email_address": null, + "ip_addresses": [], + "established": 1896, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Brooklyn Historical Society", + "type": "Child", + "id": "https://ror.org/03xvvtc63" + } + ], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bklynlibrary.org/" + ], + "aliases": [], + "acronyms": [ + "BPL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Brooklyn_Public_Library", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.475039.c", + "preferred": "grid.475039.c" + }, + "ISNI": { + "all": [ + "0000 0001 2190 1332" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1198796" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/051pmyn62.json b/v1.50/v1/051pmyn62.json new file mode 100644 index 000000000..a58f6f5b3 --- /dev/null +++ b/v1.50/v1/051pmyn62.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/051pmyn62", + "name": "Centre for Infection, Immunity and Inflammation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/faculty-medicine/center-infection-immunity-inflammation" + ], + "aliases": [ + "Université d’Ottawa Centre de l’infection, de l’immunité et de l’inflammation" + ], + "acronyms": [ + "CI3" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de l’infection, de l’immunité et de l’inflammation", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/052bz7812.json b/v1.50/v1/052bz7812.json new file mode 100644 index 000000000..42ed5a966 --- /dev/null +++ b/v1.50/v1/052bz7812.json @@ -0,0 +1,131 @@ +{ + "id": "https://ror.org/052bz7812", + "name": "Université Paris Dauphine-PSL", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Recherche en Mathématiques de la Décision", + "type": "Child", + "id": "https://ror.org/03s0gj002" + }, + { + "label": "Dauphine Recherches en Management", + "type": "Child", + "id": "https://ror.org/01mzxgm71" + }, + { + "label": "Institut de Recherche Interdisciplinaire en Sciences Sociales", + "type": "Child", + "id": "https://ror.org/05mmjvv12" + }, + { + "label": "Lamsade", + "type": "Child", + "id": "https://ror.org/03pnp1a74" + }, + { + "label": "Laboratoire d’Economie de Dauphine", + "type": "Child", + "id": "https://ror.org/026exgg05" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Centre de recherche droit Dauphine", + "type": "Child", + "id": "https://ror.org/01ag91m47" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dauphine.psl.eu" + ], + "aliases": [ + "Paris Dauphine University", + "University Paris Dauphine-PSL", + "Université Paris 9 Dauphine" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Paris_Dauphine_University", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.11024.36", + "preferred": "grid.11024.36" + }, + "ISNI": { + "all": [ + "0000 0001 2097 7052" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1546437" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/052msxy68.json b/v1.50/v1/052msxy68.json new file mode 100644 index 000000000..1573a027f --- /dev/null +++ b/v1.50/v1/052msxy68.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/052msxy68", + "name": "Montana University System", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Montana Technological University", + "type": "Child", + "id": "https://ror.org/03ttqt747" + }, + { + "label": "University of Montana", + "type": "Child", + "id": "https://ror.org/0078xmk34" + }, + { + "label": "University of Montana Western", + "type": "Child", + "id": "https://ror.org/04rr0m327" + } + ], + "addresses": [ + { + "lat": 46.59271, + "lng": -112.03611, + "state": null, + "state_code": null, + "city": "Helena", + "geonames_city": { + "id": 5656882, + "city": "Helena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://mus.edu/" + ], + "aliases": [ + "University of Montana System" + ], + "acronyms": [ + "MUS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Montana_University_System", + "labels": [ + { + "label": "Sistema Universitario de Montana", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015067" + ], + "preferred": "100015067" + }, + "GRID": { + "all": "grid.297878.b", + "preferred": "grid.297878.b" + }, + "ISNI": { + "all": [ + "0000 0000 8658 4430" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2495887" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0535cbn94.json b/v1.50/v1/0535cbn94.json new file mode 100644 index 000000000..7f8de487b --- /dev/null +++ b/v1.50/v1/0535cbn94.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/0535cbn94", + "name": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.symmes.fr" + ], + "aliases": [ + "Molecular Systems and nanoMaterials for Energy and Health" + ], + "acronyms": [ + "SyMMES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q30262431" + ], + "preferred": "Q30262431" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/053avzc18.json b/v1.50/v1/053avzc18.json new file mode 100644 index 000000000..8959cfb17 --- /dev/null +++ b/v1.50/v1/053avzc18.json @@ -0,0 +1,411 @@ +{ + "id": "https://ror.org/053avzc18", + "name": "Czech Academy of Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1784, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Academia Nakladatelství", + "type": "Child", + "id": "https://ror.org/05ef3yq64" + }, + { + "label": "Czech Academy of Sciences, Astronomical Institute", + "type": "Child", + "id": "https://ror.org/03tp8z347" + }, + { + "label": "Czech Academy of Sciences, Biology Centre", + "type": "Child", + "id": "https://ror.org/05pq4yn02" + }, + { + "label": "Czech Academy of Sciences, Centre of Administration and Operations", + "type": "Child", + "id": "https://ror.org/03zkxs276" + }, + { + "label": "Centre of the Region Haná for Biotechnical and Agricultural Research", + "type": "Child", + "id": "https://ror.org/03bh94f16" + }, + { + "label": "Czech Botanical Society", + "type": "Child", + "id": "https://ror.org/02gndyy51" + }, + { + "label": "Czech Society for Biochemistry and Molecular Biology", + "type": "Child", + "id": "https://ror.org/01b23gh75" + }, + { + "label": "Czech Academy of Sciences, Economics Institute", + "type": "Child", + "id": "https://ror.org/01y3ft232" + }, + { + "label": "Engineering Academy of the Czech Republic", + "type": "Child", + "id": "https://ror.org/04dea3c58" + }, + { + "label": "Czech Academy of Sciences, Global Change Research Institute", + "type": "Child", + "id": "https://ror.org/01v5hek98" + }, + { + "label": "Czech Academy of Sciences, Institute of Analytical Chemistry", + "type": "Child", + "id": "https://ror.org/05g7knd32" + }, + { + "label": "Czech Academy of Sciences, Institute of Animal Physiology and Genetics", + "type": "Child", + "id": "https://ror.org/0157za327" + }, + { + "label": "Czech Academy of Sciences, Institute of Archaeology, Brno", + "type": "Child", + "id": "https://ror.org/02bvcjw39" + }, + { + "label": "Czech Academy of Sciences, Institute of Archaeology, Prague", + "type": "Child", + "id": "https://ror.org/0287jta43" + }, + { + "label": "Czech Academy of Sciences, Institute of Art History", + "type": "Child", + "id": "https://ror.org/00913gw18" + }, + { + "label": "Czech Academy of Sciences, Institute of Atmospheric Physics", + "type": "Child", + "id": "https://ror.org/04vtzcr32" + }, + { + "label": "Czech Academy of Sciences, Institute of Biophysics", + "type": "Child", + "id": "https://ror.org/00angvn73" + }, + { + "label": "Czech Academy of Sciences, Institute of Biotechnology", + "type": "Child", + "id": "https://ror.org/00wzqmx94" + }, + { + "label": "Czech Academy of Sciences, Institute of Botany", + "type": "Child", + "id": "https://ror.org/03qqnc658" + }, + { + "label": "Czech Academy of Sciences, Institute of Chemical Process Fundamentals", + "type": "Child", + "id": "https://ror.org/02acv3g39" + }, + { + "label": "Czech Academy of Sciences, Institute of Computer Science", + "type": "Child", + "id": "https://ror.org/0496n6574" + }, + { + "label": "Czech Academy of Sciences, Institute of Contemporary History", + "type": "Child", + "id": "https://ror.org/01zghvr36" + }, + { + "label": "Czech Academy of Sciences, Institute of Czech Literature", + "type": "Child", + "id": "https://ror.org/01vr20t27" + }, + { + "label": "Czech Academy of Sciences, Institute of Ethnology", + "type": "Child", + "id": "https://ror.org/01qj7sc02" + }, + { + "label": "Czech Academy of Sciences, Institute of Experimental Botany", + "type": "Child", + "id": "https://ror.org/057br4398" + }, + { + "label": "Czech Academy of Sciences, Institute of Experimental Medicine", + "type": "Child", + "id": "https://ror.org/03hjekm25" + }, + { + "label": "Czech Academy of Sciences, Institute of Geology", + "type": "Child", + "id": "https://ror.org/04wh80b80" + }, + { + "label": "Czech Academy of Sciences, Institute of Geonics", + "type": "Child", + "id": "https://ror.org/02d3n7h84" + }, + { + "label": "Czech Academy of Sciences, Institute of Geophysics", + "type": "Child", + "id": "https://ror.org/02e8b2r87" + }, + { + "label": "Czech Academy of Sciences, Institute of History", + "type": "Child", + "id": "https://ror.org/03tybc759" + }, + { + "label": "Czech Academy of Sciences, Institute of Hydrodynamics", + "type": "Child", + "id": "https://ror.org/009wryk55" + }, + { + "label": "Czech Academy of Sciences, Institute of Information Theory and Automation", + "type": "Child", + "id": "https://ror.org/03h1hsz49" + }, + { + "label": "Czech Academy of Sciences, Institute of Inorganic Chemistry", + "type": "Child", + "id": "https://ror.org/01hsjcv06" + }, + { + "label": "Czech Academy of Sciences, Institute of Macromolecular Chemistry", + "type": "Child", + "id": "https://ror.org/0143w7709" + }, + { + "label": "Czech Academy of Sciences, Institute of Mathematics", + "type": "Child", + "id": "https://ror.org/02tv1yf50" + }, + { + "label": "Czech Academy of Sciences, Institute of Microbiology", + "type": "Child", + "id": "https://ror.org/02p1jz666" + }, + { + "label": "Czech Academy of Sciences, Institute of Molecular Genetics", + "type": "Child", + "id": "https://ror.org/045syc608" + }, + { + "label": "Czech Academy of Sciences, Institute of Organic Chemistry and Biochemistry", + "type": "Child", + "id": "https://ror.org/04nfjn472" + }, + { + "label": "Czech Academy of Sciences, Institute of Philosophy", + "type": "Child", + "id": "https://ror.org/01hyg6578" + }, + { + "label": "Czech Academy of Sciences, Institute of Photonics and Electronics", + "type": "Child", + "id": "https://ror.org/05wrbcx33" + }, + { + "label": "Czech Academy of Sciences, Institute of Physics", + "type": "Child", + "id": "https://ror.org/02yhj4v17" + }, + { + "label": "Czech Academy of Sciences, Institute of Physics of Materials", + "type": "Child", + "id": "https://ror.org/02d02f052" + }, + { + "label": "Czech Academy of Sciences, Institute of Physiology", + "type": "Child", + "id": "https://ror.org/05xw0ep96" + }, + { + "label": "Czech Academy of Sciences, Institute of Plasma Physics", + "type": "Child", + "id": "https://ror.org/01h494015" + }, + { + "label": "Czech Academy of Sciences, Institute of Psychology", + "type": "Child", + "id": "https://ror.org/03aba6h29" + }, + { + "label": "Czech Academy of Sciences, Institute of Rock Structure and Mechanics", + "type": "Child", + "id": "https://ror.org/00m4pvq34" + }, + { + "label": "Czech Academy of Sciences, Institute of Scientific Instruments", + "type": "Child", + "id": "https://ror.org/027taah18" + }, + { + "label": "Czech Academy of Sciences, Institute of Sociology", + "type": "Child", + "id": "https://ror.org/018hy5194" + }, + { + "label": "Czech Academy of Sciences, Institute of State and Law", + "type": "Child", + "id": "https://ror.org/00hzy8397" + }, + { + "label": "Czech Academy of Sciences, Institute of Theoretical and Applied Mechanics", + "type": "Child", + "id": "https://ror.org/01hxbnq19" + }, + { + "label": "Czech Academy of Sciences, Institute of Thermomechanics", + "type": "Child", + "id": "https://ror.org/03fvq2a72" + }, + { + "label": "Czech Academy of Sciences, Institute of Vertebrate Biology", + "type": "Child", + "id": "https://ror.org/05bcgdd94" + }, + { + "label": "Czech Academy of Sciences, Czech Language Institute", + "type": "Child", + "id": "https://ror.org/01912nj27" + }, + { + "label": "Czech Academy of Sciences, J. Heyrovský Institute of Physical Chemistry", + "type": "Child", + "id": "https://ror.org/02sat5y74" + }, + { + "label": "Czech Academy of Sciences, Library", + "type": "Child", + "id": "https://ror.org/028sgmw18" + }, + { + "label": "Czech Academy of Sciences, Masaryk Institute and Archives", + "type": "Child", + "id": "https://ror.org/03nvfe914" + }, + { + "label": "Matice Moravská", + "type": "Child", + "id": "https://ror.org/01nsk9g93" + }, + { + "label": "Czech Academy of Sciences, Nuclear Physics Institute", + "type": "Child", + "id": "https://ror.org/04jymbd90" + }, + { + "label": "Czech Academy of Sciences, Oriental Institute", + "type": "Child", + "id": "https://ror.org/04tr8pt83" + }, + { + "label": "Czech Academy of Sciences, Institute of Slavonic Studies", + "type": "Child", + "id": "https://ror.org/03qq0n189" + }, + { + "label": "Ústav T. G. Masaryka", + "type": "Child", + "id": "https://ror.org/004542426" + }, + { + "label": "Czech Education and Scientific Network", + "type": "Child", + "id": "https://ror.org/050dkka69" + } + ], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.avcr.cz/" + ], + "aliases": [], + "acronyms": [ + "AV ČR", + "CAS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Academy_of_Sciences_of_the_Czech_Republic", + "labels": [ + { + "label": "Akademie věd České republiky", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004240" + ], + "preferred": null + }, + "GRID": { + "all": "grid.418095.1", + "preferred": "grid.418095.1" + }, + "ISNI": { + "all": [ + "0000 0001 1015 3316" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q374686" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/054b6pr16.json b/v1.50/v1/054b6pr16.json new file mode 100644 index 000000000..9b5ff2aa5 --- /dev/null +++ b/v1.50/v1/054b6pr16.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/054b6pr16", + "name": "Luxembourg Centre for Contemporary and Digital History", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Luxembourg", + "type": "Parent", + "id": "https://ror.org/036x5ad56" + } + ], + "addresses": [ + { + "lat": 49.49583, + "lng": 5.98056, + "state": null, + "state_code": null, + "city": "Esch-sur-Alzette", + "geonames_city": { + "id": 2960596, + "city": "Esch-sur-Alzette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.c2dh.uni.lu" + ], + "aliases": [], + "acronyms": [ + "C2DH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Luxembourg", + "country_code": "LU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q74434404" + ], + "preferred": "Q74434404" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/054qv7y42.json b/v1.50/v1/054qv7y42.json new file mode 100644 index 000000000..b241f757c --- /dev/null +++ b/v1.50/v1/054qv7y42.json @@ -0,0 +1,158 @@ +{ + "id": "https://ror.org/054qv7y42", + "name": "Institut Polytechnique de Bordeaux", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Chimie et Biologie des Membranes et des Nanoobjects", + "type": "Child", + "id": "https://ror.org/03jtzcc30" + }, + { + "label": "Institut de Chimie de la Matière Condensée de Bordeaux", + "type": "Child", + "id": "https://ror.org/01nw6qk38" + }, + { + "label": "Institut de Mathématiques de Bordeaux", + "type": "Child", + "id": "https://ror.org/05m3r1b84" + }, + { + "label": "Institut de Mécanique et d'Ingénierie", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Institut des Sciences Moléculaires", + "type": "Child", + "id": "https://ror.org/00r8jkk54" + }, + { + "label": "Laboratoire Bordelais de Recherche en Informatique", + "type": "Child", + "id": "https://ror.org/03adqg323" + }, + { + "label": "Laboratoire de Chimie des Polymères Organiques", + "type": "Child", + "id": "https://ror.org/056n05x05" + }, + { + "label": "Laboratoire de l'Intégration du Matériau au Système", + "type": "Child", + "id": "https://ror.org/04nabhy78" + }, + { + "label": "Laboratoire du Futur", + "type": "Child", + "id": "https://ror.org/04qq0qp34" + }, + { + "label": "NutriNeuro", + "type": "Child", + "id": "https://ror.org/04hw9c755" + }, + { + "label": "Oenology Research Unit", + "type": "Child", + "id": "https://ror.org/04xz2my07" + }, + { + "label": "Unité de Recherche Œnologie", + "type": "Child", + "id": "https://ror.org/0473hxz56" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + } + ], + "addresses": [ + { + "lat": 44.84044, + "lng": -0.5805, + "state": null, + "state_code": null, + "city": "Bordeaux", + "geonames_city": { + "id": 3031582, + "city": "Bordeaux", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bordeaux-inp.fr/en" + ], + "aliases": [ + "Bordeaux INP" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.424725.2", + "preferred": "grid.424725.2" + }, + "ISNI": { + "all": [ + "0000 0004 1781 203X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/0557vhy43.json b/v1.50/v1/0557vhy43.json new file mode 100644 index 000000000..9bc330761 --- /dev/null +++ b/v1.50/v1/0557vhy43.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/0557vhy43", + "name": "Laboratoire Biologie et Biotechnologie pour la Santé", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://biosante-lab.fr" + ], + "aliases": [ + "Biology and Biotechnology for Health Laboratory", + "Laboratoire BioSanté" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/05591te55.json b/v1.50/v1/05591te55.json new file mode 100644 index 000000000..38061d0f2 --- /dev/null +++ b/v1.50/v1/05591te55.json @@ -0,0 +1,176 @@ +{ + "id": "https://ror.org/05591te55", + "name": "Ludwig-Maximilians-Universität München", + "email_address": null, + "ip_addresses": [], + "established": 1472, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ifo Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/045495t75" + }, + { + "label": "LMU Klinikum", + "type": "Related", + "id": "https://ror.org/02jet3w32" + }, + { + "label": "LMU Klinikum", + "type": "Child", + "id": "https://ror.org/02jet3w32" + }, + { + "label": "Zentrum für Klinische Tiermedizin", + "type": "Child", + "id": "https://ror.org/02qqvpd39" + }, + { + "label": "Munich Cluster for Systems Neurology", + "type": "Child", + "id": "https://ror.org/025z3z560" + }, + { + "label": "Excellence Cluster Origins", + "type": "Child", + "id": "https://ror.org/010wkny21" + }, + { + "label": "Munich Center for Quantum Science and Technology", + "type": "Child", + "id": "https://ror.org/04xrcta15" + }, + { + "label": "Nanosystems Initiative Munich", + "type": "Child", + "id": "https://ror.org/01mvrj242" + }, + { + "label": "Center for Integrated Protein Science Munich", + "type": "Child", + "id": "https://ror.org/032hzb643" + }, + { + "label": "Center for NanoScience", + "type": "Child", + "id": "https://ror.org/002epp671" + }, + { + "label": "Centre for Advanced Laser Applications", + "type": "Child", + "id": "https://ror.org/04j4kfb22" + }, + { + "label": "Rachel Carson Center for Environment and Society", + "type": "Child", + "id": "https://ror.org/01h2vtb84" + }, + { + "label": "Collegium Carolinum", + "type": "Related", + "id": "https://ror.org/02jjvb954" + }, + { + "label": "Ifo Institute for Economic Research", + "type": "Related", + "id": "https://ror.org/045495t75" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lmu.de" + ], + "aliases": [ + "Ludwig Maximilian University of Munich", + "University of Munich", + "Universität München" + ], + "acronyms": [ + "LMU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ludwig_Maximilian_University_of_Munich", + "labels": [ + { + "label": "Ludwig-Maximilians-Universität in Munich", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005722", + "501100006192", + "501100009401" + ], + "preferred": "501100005722" + }, + "GRID": { + "all": "grid.5252.0", + "preferred": "grid.5252.0" + }, + "ISNI": { + "all": [ + "0000 0004 1936 973X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q55044" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/055t1w920.json b/v1.50/v1/055t1w920.json new file mode 100644 index 000000000..e856a48a5 --- /dev/null +++ b/v1.50/v1/055t1w920.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/055t1w920", + "name": "State Education Development Agency", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 56.946, + "lng": 24.10589, + "state": null, + "state_code": null, + "city": "Riga", + "geonames_city": { + "id": 456172, + "city": "Riga", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.viaa.gov.lv" + ], + "aliases": [ + "Valsts Izglītības Attīstības Aģentūra" + ], + "acronyms": [ + "SEDA", + "VIAA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Valsts izglītības attīstības aģentūra", + "iso639": "lv" + } + ], + "country": { + "country_name": "Latvia", + "country_code": "LV" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100012551" + ], + "preferred": "501100012551" + }, + "GRID": { + "all": "grid.460254.1", + "preferred": "grid.460254.1" + }, + "Wikidata": { + "all": [ + "Q30260918" + ], + "preferred": "Q30260918" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/056g0b798.json b/v1.50/v1/056g0b798.json new file mode 100644 index 000000000..aae71bde7 --- /dev/null +++ b/v1.50/v1/056g0b798.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/056g0b798", + "name": "Fundação Minerva - Cultura - Ensino e Investigação Científica", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Lusíada University of Lisbon", + "type": "Child", + "id": "https://ror.org/00zjprf31" + }, + { + "label": "Lusíada University of Porto", + "type": "Child", + "id": "https://ror.org/04ehtgm24" + }, + { + "label": "Universidade Lusíada de Vila Nova de Famalicão", + "type": "Child", + "id": "https://ror.org/014q1bn90" + } + ], + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fam.ulusiada.pt" + ], + "aliases": [ + "Fundação Minerva", + "Universidade Lusíada" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/056tb7j80.json b/v1.50/v1/056tb7j80.json new file mode 100644 index 000000000..562d8e85d --- /dev/null +++ b/v1.50/v1/056tb7j80.json @@ -0,0 +1,168 @@ +{ + "id": "https://ror.org/056tb7j80", + "name": "Universidad Nacional de Córdoba", + "email_address": null, + "ip_addresses": [], + "established": 1613, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Instituto Multidisciplinario de Biología Vegetal", + "type": "Child", + "id": "https://ror.org/04vhn6x78" + }, + { + "label": "Instituto de Investigaciones en Ciencias de la Salud", + "type": "Child", + "id": "https://ror.org/00vsnbn30" + }, + { + "label": "Instituto de Investigación Médica Mercedes y Martín Ferreyra", + "type": "Child", + "id": "https://ror.org/04nh79216" + }, + { + "label": "Research Center on Earth Sciences", + "type": "Child", + "id": "https://ror.org/01h6ezd77" + }, + { + "label": "Research Centre in Biological Chemistry of Córdoba", + "type": "Child", + "id": "https://ror.org/023dgw813" + }, + { + "label": "Colegio Nacional de Monserrat", + "type": "Child", + "id": "https://ror.org/04gen2f55" + }, + { + "label": "Escuela Superior de Comercio Manuel Belgrano", + "type": "Child", + "id": "https://ror.org/05yfjjn56" + }, + { + "label": "Instituto de Investigaciones Psicológicas", + "type": "Child", + "id": "https://ror.org/013gkdy87" + }, + { + "label": "Centro Científico Tecnológico - Córdoba", + "type": "Related", + "id": "https://ror.org/03vxkne37" + }, + { + "label": "Hospital Domingo Funes", + "type": "Related", + "id": "https://ror.org/05ej0vv18" + }, + { + "label": "Hospital Privado", + "type": "Related", + "id": "https://ror.org/04qtr9c10" + } + ], + "addresses": [ + { + "lat": -31.4135, + "lng": -64.18105, + "state": null, + "state_code": null, + "city": "Córdoba", + "geonames_city": { + "id": 3860259, + "city": "Córdoba", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unc.edu.ar" + ], + "aliases": [], + "acronyms": [ + "UNC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/National_University_of_C%C3%B3rdoba", + "labels": [ + { + "label": "National University of Córdoba", + "iso639": "en" + }, + { + "label": "Universidade Nacional de Córdoba", + "iso639": "pt" + }, + { + "label": "Università Nazionale di Córdoba", + "iso639": "it" + }, + { + "label": "Université nationale de córdoba", + "iso639": "fr" + } + ], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010442", + "100012478" + ], + "preferred": "100010442" + }, + "GRID": { + "all": "grid.10692.3c", + "preferred": "grid.10692.3c" + }, + "ISNI": { + "all": [ + "0000 0001 0115 2557" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1570489" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/057a6gk14.json b/v1.50/v1/057a6gk14.json new file mode 100644 index 000000000..6c52d721b --- /dev/null +++ b/v1.50/v1/057a6gk14.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/057a6gk14", + "name": "University of Gibraltar", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.14474, + "lng": -5.35257, + "state": null, + "state_code": null, + "city": "Gibraltar", + "geonames_city": { + "id": 2411585, + "city": "Gibraltar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unigib.edu.gi" + ], + "aliases": [ + "UniGib" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Gibraltar", + "labels": [], + "country": { + "country_name": "Gibraltar", + "country_code": "GI" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q18357152" + ], + "preferred": "Q18357152" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/057fagq12.json b/v1.50/v1/057fagq12.json new file mode 100644 index 000000000..73804aa19 --- /dev/null +++ b/v1.50/v1/057fagq12.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/057fagq12", + "name": "Bridging Access to Care", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.bac-ny.org/" + ], + "aliases": [ + "The Brooklyn AIDS Task Force" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.432554.1", + "preferred": "grid.432554.1" + }, + "Wikidata": { + "all": [ + "Q30255287" + ], + "preferred": "Q30255287" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/057pxfr24.json b/v1.50/v1/057pxfr24.json new file mode 100644 index 000000000..ca6145420 --- /dev/null +++ b/v1.50/v1/057pxfr24.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/057pxfr24", + "name": "Veterinary Standards and Drug Regulatory Laboratory", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.70169, + "lng": 85.3206, + "state": null, + "state_code": null, + "city": "Kathmandu", + "geonames_city": { + "id": 1283240, + "city": "Kathmandu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vsdrl.gov.np" + ], + "aliases": [ + "भेटेरीनरी गुणस्तर तथा औषधी नियमन प्रयोगशाला" + ], + "acronyms": [ + "VSDRL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/057qpr032.json b/v1.50/v1/057qpr032.json new file mode 100644 index 000000000..873aac5b1 --- /dev/null +++ b/v1.50/v1/057qpr032.json @@ -0,0 +1,427 @@ +{ + "id": "https://ror.org/057qpr032", + "name": "Université de Bordeaux", + "email_address": null, + "ip_addresses": [], + "established": 1896, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Aménagement, Développement, Environnement, Santé et Sociétés", + "type": "Child", + "id": "https://ror.org/027953924" + }, + { + "label": "Interactions Sol Plante Atmosphère", + "type": "Child", + "id": "https://ror.org/02aswf736" + }, + { + "label": "Biologie du Fruit et Pathologie", + "type": "Child", + "id": "https://ror.org/00ccpdp17" + }, + { + "label": "Bordeaux Population Health", + "type": "Child", + "id": "https://ror.org/00xzzba89" + }, + { + "label": "Centre Lasers Intenses et Applications", + "type": "Child", + "id": "https://ror.org/02910d597" + }, + { + "label": "Laboratoire de Physique des deux infinis Bordeaux", + "type": "Child", + "id": "https://ror.org/034a4bk84" + }, + { + "label": "Centre de Recherche Cardio-Thoracique de Bordeaux", + "type": "Child", + "id": "https://ror.org/04vgc9p51" + }, + { + "label": "Centre de Résonance Magnétique des Systèmes Biologiques", + "type": "Child", + "id": "https://ror.org/01mts2g59" + }, + { + "label": "Chimie et Biologie des Membranes et des Nanoobjects", + "type": "Child", + "id": "https://ror.org/03jtzcc30" + }, + { + "label": "De la Préhistoire à l'Actuel : Culture, Environnement et Anthropologie", + "type": "Child", + "id": "https://ror.org/027mnq498" + }, + { + "label": "Ecophysiologie et Génomique Fonctionnelle de la Vigne", + "type": "Child", + "id": "https://ror.org/004q3z910" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", + "type": "Child", + "id": "https://ror.org/01tsa0x55" + }, + { + "label": "Immunology from Concept and Experiments to Translation", + "type": "Child", + "id": "https://ror.org/02dsacc67" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "Child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut de Biochimie et Génétique Cellulaires", + "type": "Child", + "id": "https://ror.org/048xwe611" + }, + { + "label": "Institut de Chimie de la Matière Condensée de Bordeaux", + "type": "Child", + "id": "https://ror.org/01nw6qk38" + }, + { + "label": "Institut de Mathématiques de Bordeaux", + "type": "Child", + "id": "https://ror.org/05m3r1b84" + }, + { + "label": "Institut de Neurosciences Cognitives et Intégratives d’Aquitaine", + "type": "Child", + "id": "https://ror.org/01a6zh966" + }, + { + "label": "Institut de Mécanique et d'Ingénierie", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Institut des Sciences Moléculaires", + "type": "Child", + "id": "https://ror.org/00r8jkk54" + }, + { + "label": "Institut Interdisciplinaire de Neuroscience", + "type": "Child", + "id": "https://ror.org/032j53342" + }, + { + "label": "Laboratoire Bordelais de Recherche en Informatique", + "type": "Child", + "id": "https://ror.org/03adqg323" + }, + { + "label": "Laboratoire Ondes et Matière d'Aquitaine", + "type": "Child", + "id": "https://ror.org/05qsp5m64" + }, + { + "label": "Laboratoire Photonique, Numérique et Nanosciences", + "type": "Child", + "id": "https://ror.org/03vdg7e33" + }, + { + "label": "Laboratoire de Biogenèse Membranaire", + "type": "Child", + "id": "https://ror.org/02nthwg11" + }, + { + "label": "Laboratoire de Chimie des Polymères Organiques", + "type": "Child", + "id": "https://ror.org/056n05x05" + }, + { + "label": "Laboratoire de l'Intégration du Matériau au Système", + "type": "Child", + "id": "https://ror.org/04nabhy78" + }, + { + "label": "Laboratoire des Composites Thermo Structuraux", + "type": "Child", + "id": "https://ror.org/02n2h9t24" + }, + { + "label": "Laboratoire du Futur", + "type": "Child", + "id": "https://ror.org/04qq0qp34" + }, + { + "label": "Laboratoire d'Astrophysique de Bordeaux", + "type": "Child", + "id": "https://ror.org/00yee3n23" + }, + { + "label": "Les Afriques dans le Monde", + "type": "Child", + "id": "https://ror.org/00721wn77" + }, + { + "label": "Molécules d'Intérêt Biologique", + "type": "Child", + "id": "https://ror.org/02wycgj20" + }, + { + "label": "Institut des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/001695n52" + }, + { + "label": "NutriNeuro", + "type": "Child", + "id": "https://ror.org/04hw9c755" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "Oenology Research Unit", + "type": "Child", + "id": "https://ror.org/04xz2my07" + }, + { + "label": "Paul Pascal Research Center", + "type": "Child", + "id": "https://ror.org/043a21x04" + }, + { + "label": "Plateforme Technologique d'Innovation Biomédicale", + "type": "Child", + "id": "https://ror.org/05367a632" + }, + { + "label": "Régulations Naturelle et Artificielle", + "type": "Child", + "id": "https://ror.org/0208m5v39" + }, + { + "label": "Santé et Agroécologie du Vignoble", + "type": "Child", + "id": "https://ror.org/00vfxg105" + }, + { + "label": "UMR BIOdiversity, GEnes & Communities", + "type": "Child", + "id": "https://ror.org/033ebya06" + }, + { + "label": "Unité de Recherche Œnologie", + "type": "Child", + "id": "https://ror.org/0473hxz56" + }, + { + "label": "Centre d'Investigation Clinique Plurithématique de Bordeaux", + "type": "Child", + "id": "https://ror.org/000bbyx17" + }, + { + "label": "Centre Émile Durkheim", + "type": "Child", + "id": "https://ror.org/01k7w0p97" + }, + { + "label": "Centre de droit comparé du travail et de la sécurité sociale", + "type": "Child", + "id": "https://ror.org/041ctrc20" + }, + { + "label": "Laboratoire de Microbiologie Fondamentale et Pathogénicité", + "type": "Child", + "id": "https://ror.org/03e4tg734" + }, + { + "label": "Biologie des maladies cardiovasculaires", + "type": "Child", + "id": "https://ror.org/0463z7496" + }, + { + "label": "Laboratory for the Bioengineering of Tissues", + "type": "Child", + "id": "https://ror.org/012zmcc30" + }, + { + "label": "Sciences, Philosophie, Humanités", + "type": "Child", + "id": "https://ror.org/00bj04t22" + }, + { + "label": "Sommeil, Addiction et Neuropsychiatrie", + "type": "Child", + "id": "https://ror.org/04k8wt746" + }, + { + "label": "Plateforme d'Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/05r25mc45" + }, + { + "label": "TBM-Core", + "type": "Child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Bordeaux Imaging Center", + "type": "Child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Passages", + "type": "Child", + "id": "https://ror.org/00s40r567" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "Child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Maladies Rares: Génétique et Métabolisme", + "type": "Child", + "id": "https://ror.org/01wvg5605" + }, + { + "label": "Bordeaux Sciences Économiques", + "type": "Child", + "id": "https://ror.org/014vz2d20" + }, + { + "label": "Université Montesquieu Bordeaux IV", + "type": "Predecessor", + "id": "https://ror.org/05h5wna09" + }, + { + "label": "Université Bordeaux-I", + "type": "Predecessor", + "id": "https://ror.org/001anga17" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 44.84044, + "lng": -0.5805, + "state": null, + "state_code": null, + "city": "Bordeaux", + "geonames_city": { + "id": 3031582, + "city": "Bordeaux", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.u-bordeaux.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Bordeaux", + "labels": [ + { + "label": "Bordeleko Unibertsitatea", + "iso639": "eu" + }, + { + "label": "University of Bordeaux", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006251" + ], + "preferred": null + }, + "GRID": { + "all": "grid.412041.2", + "preferred": "grid.412041.2" + }, + "ISNI": { + "all": [ + "0000 0001 2106 639X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q13344" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/057sc3e48.json b/v1.50/v1/057sc3e48.json new file mode 100644 index 000000000..96ccece5b --- /dev/null +++ b/v1.50/v1/057sc3e48.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/057sc3e48", + "name": "Youxi County General Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 26.24861, + "lng": 117.61861, + "state": null, + "state_code": null, + "city": "Sanming", + "geonames_city": { + "id": 1796663, + "city": "Sanming", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://zyy.yxxzyy.com" + ], + "aliases": [ + "尤溪县总医院" + ], + "acronyms": [ + "YCGH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/058j80c12.json b/v1.50/v1/058j80c12.json new file mode 100644 index 000000000..e9e2cd4af --- /dev/null +++ b/v1.50/v1/058j80c12.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/058j80c12", + "name": "Deutsche Gesellschaft für Limnologie", + "email_address": null, + "ip_addresses": [], + "established": 1922, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.45657, + "lng": 7.01228, + "state": null, + "state_code": null, + "city": "Essen", + "geonames_city": { + "id": 2928810, + "city": "Essen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dgl-ev.de" + ], + "aliases": [ + "German Society of Limnology" + ], + "acronyms": [ + "DGL" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Deutsche_Gesellschaft_f%C3%BCr_Limnologie", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 1089 0105" + ], + "preferred": "0000 0001 1089 0105" + }, + "Wikidata": { + "all": [ + "Q1202895" + ], + "preferred": "Q1202895" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/059et2b68.json b/v1.50/v1/059et2b68.json new file mode 100644 index 000000000..b2891abf2 --- /dev/null +++ b/v1.50/v1/059et2b68.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/059et2b68", + "name": "Université Oran 1 Ahmed Ben Bella", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.69906, + "lng": -0.63588, + "state": null, + "state_code": null, + "city": "Oran", + "geonames_city": { + "id": 2485926, + "city": "Oran", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://univ-oran1.dz" + ], + "aliases": [ + "Es Sénia University", + "Oran1 University", + "Oran1 University Ahmed Benbella", + "University of Oran", + "University of Oran 1", + "Université Oran 1", + "Université d'Oran", + "جامعة وهران" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Oran", + "labels": [ + { + "label": "جامعة وهران1 أحمد بن بلة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": { + "GRID": { + "all": "grid.440479.a", + "preferred": "grid.440479.a" + }, + "ISNI": { + "all": [ + "0000 0001 2347 0804" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3551549" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/059n54003.json b/v1.50/v1/059n54003.json new file mode 100644 index 000000000..fa20e89b7 --- /dev/null +++ b/v1.50/v1/059n54003.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/059n54003", + "name": "École nationale supérieure de techniques avancées Bretagne", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + } + ], + "addresses": [ + { + "lat": 48.39029, + "lng": -4.48628, + "state": null, + "state_code": null, + "city": "Brest", + "geonames_city": { + "id": 3030300, + "city": "Brest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ensta-bretagne.eu/" + ], + "aliases": [ + "ENSIETA", + "ENSTA Bretagne" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_nationale_sup%C3%A9rieure_de_techniques_avanc%C3%A9es_Bretagne", + "labels": [ + { + "label": "National Institute of Advanced Technologies of Brittany", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462182.b", + "preferred": "grid.462182.b" + }, + "ISNI": { + "all": [ + "0000 0001 2287 8728" + ], + "preferred": "0000 0001 2287 8728" + }, + "Wikidata": { + "all": [ + "Q3578240" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05a0dhs15.json b/v1.50/v1/05a0dhs15.json new file mode 100644 index 000000000..4afcb7da8 --- /dev/null +++ b/v1.50/v1/05a0dhs15.json @@ -0,0 +1,303 @@ +{ + "id": "https://ror.org/05a0dhs15", + "name": "École Normale Supérieure - PSL", + "email_address": null, + "ip_addresses": [], + "established": 1794, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Archéologie et Philologie d’Orient et d’Occident", + "type": "Child", + "id": "https://ror.org/05nsvn336" + }, + { + "label": "Centre Maurice-Halbwachs", + "type": "Child", + "id": "https://ror.org/01paa1e42" + }, + { + "label": "Centre de Théorie et Analyse du Droit", + "type": "Child", + "id": "https://ror.org/04bg5j190" + }, + { + "label": "Cereep Ecotron Île-de-France", + "type": "Child", + "id": "https://ror.org/05j6qf006" + }, + { + "label": "Département de mathématiques et applications", + "type": "Child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Département d'Informatique", + "type": "Child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Institut Jean Nicod", + "type": "Child", + "id": "https://ror.org/01qfab443" + }, + { + "label": "Institut d'Histoire Moderne et Contemporaine", + "type": "Child", + "id": "https://ror.org/04795e365" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut des Textes et Manuscrits Modernes", + "type": "Child", + "id": "https://ror.org/00x1d4q78" + }, + { + "label": "Institut d'Histoire et de Philosophie des Sciences et des Techniques", + "type": "Child", + "id": "https://ror.org/02nnpw434" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "Child", + "id": "https://ror.org/01h14ww21" + }, + { + "label": "Laboratoire de Géologie de l’École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/05vg9cw43" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Sciences Cognitives et Psycholinguistique", + "type": "Child", + "id": "https://ror.org/05fvhm231" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "Child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire des Systèmes Perceptifs", + "type": "Child", + "id": "https://ror.org/030za3c40" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Langues, Textes, Traitements Informatiques, Cognition", + "type": "Child", + "id": "https://ror.org/03ms1y683" + }, + { + "label": "Pays Germaniques", + "type": "Child", + "id": "https://ror.org/04f9rh541" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "Child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Théorie et Histoire des Arts et des Littératures de la Modernité", + "type": "Child", + "id": "https://ror.org/00ca65425" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "Child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "Child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "Child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "Child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Fondation de l'Ecole Normale Superieure", + "type": "Child", + "id": "https://ror.org/02fcsjn79" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ens.psl.eu/" + ], + "aliases": [ + "ENS Paris", + "Normale sup" + ], + "acronyms": [ + "ENS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/%C3%89cole_Normale_Sup%C3%A9rieure", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007649" + ], + "preferred": null + }, + "GRID": { + "all": "grid.5607.4", + "preferred": "grid.5607.4" + }, + "ISNI": { + "all": [ + "0000 0001 2353 2622" + ], + "preferred": "0000 0001 2353 2622" + }, + "Wikidata": { + "all": [ + "Q83259" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05be9p317.json b/v1.50/v1/05be9p317.json new file mode 100644 index 000000000..7527baf48 --- /dev/null +++ b/v1.50/v1/05be9p317.json @@ -0,0 +1,152 @@ +{ + "id": "https://ror.org/05be9p317", + "name": "Micropesanteur Fondamentale et Appliquée", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Institut polytechnique de Grenoble", + "type": "Related", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Related", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "École Nationale Supérieure de Mécanique et d'Aérotechnique", + "type": "Related", + "id": "https://ror.org/04jx68594" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Related", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Related", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Centre National d'Études Spatiales", + "type": "Related", + "id": "https://ror.org/04h1h0y33" + }, + { + "label": "Université de Lorraine", + "type": "Related", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Related", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "ESPCI Paris", + "type": "Related", + "id": "https://ror.org/03zx86w41" + }, + { + "label": "CentraleSupélec", + "type": "Related", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Sorbonne Université", + "type": "Related", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Related", + "id": "https://ror.org/013cjyk83" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Fundamental and Applied Microgravity", + "GDR Micropesanteur Fondamentale et Appliquée", + "Groupement de Recherche Fundamental and Applied Microgravity", + "Groupement de Recherche Micropesanteur Fondamentale et Appliquée" + ], + "acronyms": [ + "MFA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782480" + ], + "preferred": "Q51782480" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05bmezg83.json b/v1.50/v1/05bmezg83.json new file mode 100644 index 000000000..dbaecf313 --- /dev/null +++ b/v1.50/v1/05bmezg83.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05bmezg83", + "name": "Die Autobahn GmbH des Bundes (Germany)", + "email_address": null, + "ip_addresses": [], + "established": null, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.autobahn.de" + ], + "aliases": [ + "Autobahn", + "Autobahn GmbH" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Die Autobahn GmbH des Bundes", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q544099" + ], + "preferred": "Q544099" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05brss208.json b/v1.50/v1/05brss208.json new file mode 100644 index 000000000..b093ba298 --- /dev/null +++ b/v1.50/v1/05brss208.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05brss208", + "name": "Laboratoire de physique de la matière condensée", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lpmc.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "LPMC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51786249" + ], + "preferred": "Q51786249" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05bznkw77.json b/v1.50/v1/05bznkw77.json new file mode 100644 index 000000000..3f663b203 --- /dev/null +++ b/v1.50/v1/05bznkw77.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/05bznkw77", + "name": "Bruyère", + "email_address": null, + "ip_addresses": [], + "established": 1845, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Saint-Vincent Hospital", + "type": "Child", + "id": "https://ror.org/05cgcnt36" + }, + { + "label": "Élisabeth Bruyère Hospital", + "type": "Child", + "id": "https://ror.org/05h61fg48" + }, + { + "label": "Centre for Catalysis Research and Innovation", + "type": "Related", + "id": "https://ror.org/00rzr5v92" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.bruyere.org/" + ], + "aliases": [ + "Bruyère Continuing Care" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.418792.1", + "preferred": "grid.418792.1" + }, + "ISNI": { + "all": [ + "0000 0000 9064 3333" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05cz9j146.json b/v1.50/v1/05cz9j146.json new file mode 100644 index 000000000..2b9f6a3e7 --- /dev/null +++ b/v1.50/v1/05cz9j146.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05cz9j146", + "name": "Lusail University", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 25.4908, + "lng": 51.48439, + "state": null, + "state_code": null, + "city": "Al Wusayl", + "geonames_city": { + "id": 289910, + "city": "Al Wusayl", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lu.edu.qa" + ], + "aliases": [], + "acronyms": [ + "LU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lusail_University", + "labels": [ + { + "label": "جَامِعَة لُوسَيْل", + "iso639": "ar" + } + ], + "country": { + "country_name": "Qatar", + "country_code": "QA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q108293481" + ], + "preferred": "Q108293481" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05dh21g53.json b/v1.50/v1/05dh21g53.json new file mode 100644 index 000000000..060581222 --- /dev/null +++ b/v1.50/v1/05dh21g53.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05dh21g53", + "name": "Structure Fédérative de Recherche Santé Lyon Est", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Université Claude Bernard Lyon 1", + "type": "Parent", + "id": "https://ror.org/029brtt94" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sfrsantelyonest.univ-lyon1.fr" + ], + "aliases": [ + "SFR Santé Lyon Est" + ], + "acronyms": [ + "SFR SLE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/05ekbxr47.json b/v1.50/v1/05ekbxr47.json new file mode 100644 index 000000000..349c86fe9 --- /dev/null +++ b/v1.50/v1/05ekbxr47.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05ekbxr47", + "name": "Instituto Politécnico de Saúde do Norte - CESPU", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cooperativa de Ensino Superior Politécnico e Universitário", + "type": "Parent", + "id": "https://ror.org/00w7bj245" + } + ], + "addresses": [ + { + "lat": 41.20116, + "lng": -8.43376, + "state": null, + "state_code": null, + "city": "Gandra", + "geonames_city": { + "id": 2739080, + "city": "Gandra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cespu.pt/ensino/ensino-politecnico/" + ], + "aliases": [ + "Instituto Politécnico de Saúde do Norte" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0393 8125" + ], + "preferred": "0000 0004 0393 8125" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05emabm63.json b/v1.50/v1/05emabm63.json new file mode 100644 index 000000000..8ea9a6d40 --- /dev/null +++ b/v1.50/v1/05emabm63.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/05emabm63", + "name": "University Hospital Ulm", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University and Rehabilitation Clinics Ulm", + "type": "Child", + "id": "https://ror.org/043yx1v14" + }, + { + "label": "Universität Ulm", + "type": "Related", + "id": "https://ror.org/032000t02" + }, + { + "label": "European Huntington's Disease Network", + "type": "Related", + "id": "https://ror.org/01wqpd686" + } + ], + "addresses": [ + { + "lat": 48.39841, + "lng": 9.99155, + "state": null, + "state_code": null, + "city": "Ulm", + "geonames_city": { + "id": 2820256, + "city": "Ulm", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uniklinik-ulm.de/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Universitätsklinikum Ulm", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.410712.1", + "preferred": "grid.410712.1" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05ey0h058.json b/v1.50/v1/05ey0h058.json new file mode 100644 index 000000000..ca3870b6e --- /dev/null +++ b/v1.50/v1/05ey0h058.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05ey0h058", + "name": "Nansen Environmental and Remote Sensing Center", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 60.39299, + "lng": 5.32415, + "state": null, + "state_code": null, + "city": "Bergen", + "geonames_city": { + "id": 3161732, + "city": "Bergen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nersc.no" + ], + "aliases": [ + "Nansen Center", + "Nansensenteret" + ], + "acronyms": [ + "NERSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Stiftelsen Nansen Senter For Miljö OG Fjernmåling", + "iso639": "no" + } + ], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2228 9878" + ], + "preferred": "0000 0001 2228 9878" + }, + "Wikidata": { + "all": [ + "Q11990844" + ], + "preferred": "Q11990844" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05f82e368.json b/v1.50/v1/05f82e368.json new file mode 100644 index 000000000..3b15c9312 --- /dev/null +++ b/v1.50/v1/05f82e368.json @@ -0,0 +1,751 @@ +{ + "id": "https://ror.org/05f82e368", + "name": "Université Paris Cité", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire de Didactique André Revuz", + "type": "Child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "Anthropologie et Histoire des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Laboratoire AstroParticule et Cosmologie", + "type": "Child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "Child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Biologie Intégrée du Globule Rouge", + "type": "Child", + "id": "https://ror.org/048cbmc89" + }, + { + "label": "Bioscar", + "type": "Child", + "id": "https://ror.org/01qdqrj31" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "Child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Centre de Recherche Médecine, Sciences, Santé, Santé Mentale, Société", + "type": "Child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Centre de Recherche sur l'Inflammation", + "type": "Child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Center for Social Studies on African, American and Asian Worlds", + "type": "Child", + "id": "https://ror.org/03pnk9016" + }, + { + "label": "Centre de Linguistique Inter-langues, de Lexicologie, de Linguistique Anglaise et de Corpus-Atelier de Recherche sur la Parole", + "type": "Child", + "id": "https://ror.org/01y85ge33" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "Child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche sur les Liens Sociaux", + "type": "Child", + "id": "https://ror.org/01wcaw014" + }, + { + "label": "Epigénétique et Destin Cellulaire", + "type": "Child", + "id": "https://ror.org/03dbsav41" + }, + { + "label": "Expression Génétique Microbienne", + "type": "Child", + "id": "https://ror.org/05t5n2z26" + }, + { + "label": "Institut des Maladies Génétiques Imagine", + "type": "Child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Institut Cochin", + "type": "Child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Jacques Monod", + "type": "Child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "Child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "Child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institut de Psychiatrie et Neurosciences de Paris", + "type": "Child", + "id": "https://ror.org/02g40zn06" + }, + { + "label": "Interfaces Traitements Organisation et Dynamique des Systèmes", + "type": "Child", + "id": "https://ror.org/03edms940" + }, + { + "label": "Collège International des Sciences du Territoire", + "type": "Child", + "id": "https://ror.org/002t9r032" + }, + { + "label": "Laboratoire Dynamiques Sociales et Recomposition des Espaces", + "type": "Child", + "id": "https://ror.org/045r56524" + }, + { + "label": "Laboratoire ICT", + "type": "Child", + "id": "https://ror.org/04p7gsa29" + }, + { + "label": "Laboratoire Interdisciplinaire des Énergies de Demain", + "type": "Child", + "id": "https://ror.org/00m43ek07" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "Child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "Child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Matière et Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/032w6q449" + }, + { + "label": "Laboratoire Vision Action Cognition", + "type": "Child", + "id": "https://ror.org/03saykv37" + }, + { + "label": "Laboratoire d'Electrochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/03atapr58" + }, + { + "label": "Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques", + "type": "Child", + "id": "https://ror.org/028qedy27" + }, + { + "label": "Laboratoire de Linguistique Formelle", + "type": "Child", + "id": "https://ror.org/0223bz716" + }, + { + "label": "Laboratoire de Physique Nucléaire et de Hautes Énergies", + "type": "Child", + "id": "https://ror.org/01hg8p552" + }, + { + "label": "Laboratoire Matériaux et Phénomènes Quantiques", + "type": "Child", + "id": "https://ror.org/02p3et738" + }, + { + "label": "Laboratory Orofacial Pathologies, Imaging and Biotherapies", + "type": "Child", + "id": "https://ror.org/00kneq391" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "Child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratoire Univers et Théories", + "type": "Child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratoire de Recherche Vasculaire Translationnelle", + "type": "Child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratoire de Psychologie du Développement et de L’Education de l’enfant", + "type": "Child", + "id": "https://ror.org/023kqz006" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "Child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Laboratoire de Biologie Physico-Chimique des Protéines Membranaires", + "type": "Child", + "id": "https://ror.org/03nr8xh07" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratoire de Biochimie Théorique", + "type": "Child", + "id": "https://ror.org/00nvjgv40" + }, + { + "label": "Institut Langevin", + "type": "Child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Mère et Enfant en Milieu Tropical", + "type": "Child", + "id": "https://ror.org/00rd22143" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "Child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "Paris Biotech Santé", + "type": "Child", + "id": "https://ror.org/05h9gyn11" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "Child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Génomes, biologie cellulaire et thérapeutiques", + "type": "Child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "Child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "Child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Centre Population et Développement", + "type": "Child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Institut de Recherche en Informatique Fondamentale", + "type": "Child", + "id": "https://ror.org/02krdtz55" + }, + { + "label": "Sciences, Philosophie, Histoire", + "type": "Child", + "id": "https://ror.org/05c9ks061" + }, + { + "label": "Skin Research Center", + "type": "Child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "Chine, Corée, Japon", + "type": "Child", + "id": "https://ror.org/02djzje70" + }, + { + "label": "Toxicologie, Pharmacologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/021ryxk89" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "Child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "Child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Éco-Anthropologie", + "type": "Child", + "id": "https://ror.org/03x0yny97" + }, + { + "label": "Épidémiologie Clinique, Évaluation Économique Appliquées aux Populations Vulnérables", + "type": "Child", + "id": "https://ror.org/02617e391" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "Child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "RIATE - Centre pour l'analyse spatiale et la géovisualisation", + "type": "Child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "Child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "NeuroDiderot", + "type": "Child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "Child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "Child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "Child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "Child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "HIPI - Immunologie humaine, physiopathologie et immunithérapie", + "type": "Child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Institut Droit et Santé", + "type": "Child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Unité de Recherche en Biomatériaux Innovant et Interfaces", + "type": "Child", + "id": "https://ror.org/01cht3g41" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "Child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre de Recherche Épidémiologie et Statistique", + "type": "Child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Anti-microbiens, Modélisation, Evolution", + "type": "Child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Institut de Recherche bio-Médicale et d'Epidémiologie du Sport", + "type": "Child", + "id": "https://ror.org/00dgdgj39" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Centre Neurosciences intégratives et Cognition", + "type": "Child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "Child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire de Psychologie et d’Ergonomie Appliquées", + "type": "Child", + "id": "https://ror.org/0572pak88" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Fédération de recherche en sciences mathématiques de Paris centre", + "type": "Child", + "id": "https://ror.org/02jwwk370" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "Child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "PremUP", + "type": "Child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "Child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Labex UnivEarthS", + "type": "Child", + "id": "https://ror.org/04mvx3d75" + }, + { + "label": "Hôpitaux Universitaires Paris-Ouest", + "type": "Related", + "id": "https://ror.org/01v676463" + }, + { + "label": "Hôtel-Dieu de Paris", + "type": "Related", + "id": "https://ror.org/03jmjy508" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "Related", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "Hôpital Beaujon", + "type": "Related", + "id": "https://ror.org/03jyzk483" + }, + { + "label": "Bretonneau Hospital", + "type": "Related", + "id": "https://ror.org/0146pps37" + }, + { + "label": "Centre de Nanosciences et de Nanotechnologies", + "type": "Child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Centre Hospitalier Sainte-Anne", + "type": "Related", + "id": "https://ror.org/02kxjxy06" + }, + { + "label": "Centre Virchow-Villermé", + "type": "Child", + "id": "https://ror.org/03vkhr254" + }, + { + "label": "Groupe Hospitalier Cochin - Port-Royal, Hôtel-Dieu, Broca - La Collégiale", + "type": "Related", + "id": "https://ror.org/02v5bgz72" + }, + { + "label": "Hôpital Adélaïde-Hautval", + "type": "Related", + "id": "https://ror.org/01bcqbv56" + }, + { + "label": "Hôpital Bichat-Claude-Bernard", + "type": "Related", + "id": "https://ror.org/03fdnmv92" + }, + { + "label": "Hôpital Broca", + "type": "Related", + "id": "https://ror.org/01m11mf96" + }, + { + "label": "Hôpital Cochin", + "type": "Related", + "id": "https://ror.org/00ph8tk69" + }, + { + "label": "Hôpital Corentin-Celton", + "type": "Related", + "id": "https://ror.org/02e9m1r40" + }, + { + "label": "Hôpital de Vaugirard-Gabriel Pallez", + "type": "Related", + "id": "https://ror.org/023km2z79" + }, + { + "label": "Hôpital Européen Georges-Pompidou", + "type": "Related", + "id": "https://ror.org/016vx5156" + }, + { + "label": "Hôpital Fernand-Widal", + "type": "Related", + "id": "https://ror.org/01zkyzz15" + }, + { + "label": "Hôpital Lariboisière", + "type": "Related", + "id": "https://ror.org/02mqtne57" + }, + { + "label": "Hôpital Louis-Mourier", + "type": "Related", + "id": "https://ror.org/004nnf780" + }, + { + "label": "Hôpital Necker-Enfants Malades", + "type": "Related", + "id": "https://ror.org/05tr67282" + }, + { + "label": "Hôpital Paris Saint-Joseph", + "type": "Related", + "id": "https://ror.org/046bx1082" + }, + { + "label": "Hôpital Robert-Debré", + "type": "Related", + "id": "https://ror.org/02dcqy320" + }, + { + "label": "Hôpital Saint-Louis", + "type": "Related", + "id": "https://ror.org/049am9t04" + }, + { + "label": "Institute Mutualiste Montsouris", + "type": "Related", + "id": "https://ror.org/00bea5h57" + }, + { + "label": "Laboratoire de Physique de l'ENS", + "type": "Child", + "id": "https://ror.org/03a26mh11" + }, + { + "label": "Laboratoire de Physique des 2 Infinis Irène Joliot-Curie", + "type": "Child", + "id": "https://ror.org/03gc1p724" + }, + { + "label": "UMR Géographie-cités", + "type": "Child", + "id": "https://ror.org/05yqfzf35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://u-paris.fr/en" + ], + "aliases": [ + "University of Paris", + "Université de Paris" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Paris_(2019)", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100021716" + ], + "preferred": "501100021716" + }, + "GRID": { + "all": "grid.508487.6", + "preferred": "grid.508487.6" + }, + "ISNI": { + "all": [ + "0000 0004 7885 7602" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q55849612" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05fbn8x75.json b/v1.50/v1/05fbn8x75.json new file mode 100644 index 000000000..5fb114a3d --- /dev/null +++ b/v1.50/v1/05fbn8x75.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05fbn8x75", + "name": "Wolfram Institute for Computational Foundations of Science", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Wolfram Research (United States)", + "type": "Related", + "id": "https://ror.org/03k118f17" + }, + { + "label": "Wolfram Research (United Kingdom)", + "type": "Related", + "id": "https://ror.org/00f003n59" + } + ], + "addresses": [ + { + "lat": 40.11642, + "lng": -88.24338, + "state": null, + "state_code": null, + "city": "Champaign", + "geonames_city": { + "id": 4887158, + "city": "Champaign", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://wolframinstitute.org" + ], + "aliases": [ + "Wolfram Institute" + ], + "acronyms": [ + "WI" + ], + "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.50/v1/05fr89837.json b/v1.50/v1/05fr89837.json new file mode 100644 index 000000000..5975a19de --- /dev/null +++ b/v1.50/v1/05fr89837.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05fr89837", + "name": "Institut für Qualitätsentwicklung an Schulen Schleswig-Holstein", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 54.3433, + "lng": 10.0994, + "state": null, + "state_code": null, + "city": "Kronshagen", + "geonames_city": { + "id": 6551871, + "city": "Kronshagen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://iqsh.de" + ], + "aliases": [ + "Institute for Quality Development in Schools in Schleswig Holstein" + ], + "acronyms": [ + "IQSH" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Institut_f%C3%BCr_Qualit%C3%A4tsentwicklung_an_Schulen_Schleswig-Holstein", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q28758377" + ], + "preferred": "Q28758377" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05frnbh40.json b/v1.50/v1/05frnbh40.json new file mode 100644 index 000000000..3f17e010d --- /dev/null +++ b/v1.50/v1/05frnbh40.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05frnbh40", + "name": "Escola Superior de Saúde Cruz Vermelha Portuguesa - Alto Tâmega", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cruz Vermelha Portuguesa", + "type": "Parent", + "id": "https://ror.org/047j0dn45" + } + ], + "addresses": [ + { + "lat": 41.30062, + "lng": -7.74413, + "state": null, + "state_code": null, + "city": "Vila Real", + "geonames_city": { + "id": 2732438, + "city": "Vila Real", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://esscvpaltotamega.pt" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1089 1617" + ], + "preferred": "0000 0005 1089 1617" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05fw3y429.json b/v1.50/v1/05fw3y429.json new file mode 100644 index 000000000..4cf38fac4 --- /dev/null +++ b/v1.50/v1/05fw3y429.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05fw3y429", + "name": "Klinik und Poliklinik für Orthopädie, Physikalische Medizin und Rehabilitation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "LMU Klinikum", + "type": "Parent", + "id": "https://ror.org/02jet3w32" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.klinikum.uni-muenchen.de/Klinik-und-Poliklinik-fuer-Physikalische-Medizin-und-Rehabilitation/de/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.491963.0", + "preferred": "grid.491963.0" + }, + "Wikidata": { + "all": [ + "Q50038695" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05fwzbv61.json b/v1.50/v1/05fwzbv61.json new file mode 100644 index 000000000..ab1db533e --- /dev/null +++ b/v1.50/v1/05fwzbv61.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05fwzbv61", + "name": "Yayasan Insanulhaq Cidadungu", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -7.36806, + "lng": 108.525, + "state": null, + "state_code": null, + "city": "Kelurahan Banjar", + "geonames_city": { + "id": 8058466, + "city": "Kelurahan Banjar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://insanulhaq.or.id" + ], + "aliases": [ + "Insanulhaq", + "Insanulhaq Cidadungu Foundation" + ], + "acronyms": [ + "YIC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "FundRef": { + "all": [ + "100031438" + ], + "preferred": "100031438" + }, + "Wikidata": { + "all": [ + "Q124827459" + ], + "preferred": "Q124827459" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05g0swy93.json b/v1.50/v1/05g0swy93.json new file mode 100644 index 000000000..7683e8d4e --- /dev/null +++ b/v1.50/v1/05g0swy93.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05g0swy93", + "name": "LIFE Research Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/life" + ], + "aliases": [ + "University of Ottawa LIFE Research Institute", + "Université d’Ottawa LIFE Institute de Recherches", + "uOttawa LIFE Research Institute" + ], + "acronyms": [ + "LRI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "LIFE Institute de Recherches", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/05gfj3z69.json b/v1.50/v1/05gfj3z69.json new file mode 100644 index 000000000..43e21ded2 --- /dev/null +++ b/v1.50/v1/05gfj3z69.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/05gfj3z69", + "name": "Integrated Rural Development And Nature Conservation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -22.55941, + "lng": 17.08323, + "state": null, + "state_code": null, + "city": "Windhoek", + "geonames_city": { + "id": 3352136, + "city": "Windhoek", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://irdnc.org.na" + ], + "aliases": [], + "acronyms": [ + "IRDNC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Namibia", + "country_code": "NA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/05ggc9x40.json b/v1.50/v1/05ggc9x40.json new file mode 100644 index 000000000..1ef74edf6 --- /dev/null +++ b/v1.50/v1/05ggc9x40.json @@ -0,0 +1,294 @@ +{ + "id": "https://ror.org/05ggc9x40", + "name": "Université Paris-Est Créteil", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire de Didactique André Revuz", + "type": "Child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "Centre d'Études et de Recherche en Thermique, Environnement et Systèmes", + "type": "Child", + "id": "https://ror.org/01ea4na26" + }, + { + "label": "Institut de Chimie et des Matériaux Paris-Est", + "type": "Child", + "id": "https://ror.org/04c3cen15" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Laboratoire Cognitions Humaine et Artificielle", + "type": "Child", + "id": "https://ror.org/02k8f5n40" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "Child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Modélisation et Simulation Multi-Echelle", + "type": "Child", + "id": "https://ror.org/04rrzfd14" + }, + { + "label": "Laboratoire d'Urbanisme", + "type": "Child", + "id": "https://ror.org/017x69387" + }, + { + "label": "Laboratoire de Géographie Physique", + "type": "Child", + "id": "https://ror.org/054v0s666" + }, + { + "label": "Laboratoire de Recherche sur la Croissance Cellulaire, la Réparation et la Régénération Tissulaires", + "type": "Child", + "id": "https://ror.org/041dsyz88" + }, + { + "label": "Laboratoire d’Analyse et de Mathématiques Appliquées", + "type": "Child", + "id": "https://ror.org/0581g8849" + }, + { + "label": "Institut de Recherche Vaccinale", + "type": "Child", + "id": "https://ror.org/02f9r3321" + }, + { + "label": "Laboratoire Eau, Environnement et Systèmes Urbains", + "type": "Child", + "id": "https://ror.org/02nqy7n35" + }, + { + "label": "École Nationale Vétérinaire d'Alfort", + "type": "Child", + "id": "https://ror.org/04k031t90" + }, + { + "label": "Institut de Recherche en Gestion", + "type": "Child", + "id": "https://ror.org/0546daj73" + }, + { + "label": "Centre interdisciplinaire de recherche \"Culture, éducation, formation, travail\"", + "type": "Child", + "id": "https://ror.org/0389fzc60" + }, + { + "label": "DYNAMYC MYCOLOGY", + "type": "Child", + "id": "https://ror.org/01htygx54" + }, + { + "label": "Laboratoire Interdisciplinaire d'étude du Politique Hannah Arendt", + "type": "Child", + "id": "https://ror.org/03zffa955" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Résistances Thérapeutiques du Cancer de la Prostate", + "type": "Child", + "id": "https://ror.org/03ssp8273" + }, + { + "label": "Marchés, Institutions, Libertés", + "type": "Child", + "id": "https://ror.org/03e6bgb38" + }, + { + "label": "Laboratoire Images, signaux et systèmes intelligents", + "type": "Child", + "id": "https://ror.org/00w0hef10" + }, + { + "label": "Lettres, idées, savoirs", + "type": "Child", + "id": "https://ror.org/04v85vk04" + }, + { + "label": "Laboratoire interdisciplinaire de recherche sur les transformations des pratiques éducatives et des pratiques sociales", + "type": "Child", + "id": "https://ror.org/03ha87a98" + }, + { + "label": "Laboratoire de Droit Privé", + "type": "Child", + "id": "https://ror.org/01pjw7y38" + }, + { + "label": "Laboratoire d'Algorithmique, Complexité et Logique", + "type": "Child", + "id": "https://ror.org/05bdn0q71" + }, + { + "label": "Institut des Mondes Anglophone, Germanique et Roman", + "type": "Child", + "id": "https://ror.org/05dwv1d98" + }, + { + "label": "Epidemiology in dermatology and evaluation of therapeutics", + "type": "Child", + "id": "https://ror.org/011gnc761" + }, + { + "label": "Excitabilité Nerveuse et Thérapeutique", + "type": "Child", + "id": "https://ror.org/042yv0n82" + }, + { + "label": "Early detection of Colon Cancer using Molecular Markers and Microbiota", + "type": "Child", + "id": "https://ror.org/01mccny28" + }, + { + "label": "Centre de Recherche en Histoire Européenne Comparée, de l'Antiquité à nos jours", + "type": "Child", + "id": "https://ror.org/05f38c676" + }, + { + "label": "Centre d'étude des discours, images, textes, écrits et communications", + "type": "Child", + "id": "https://ror.org/03f3pbx54" + }, + { + "label": "Bioingénierie, Tissus et Neuroplasticité", + "type": "Child", + "id": "https://ror.org/00syfc790" + }, + { + "label": "Institut Mondor de Recherche Biomédicale", + "type": "Child", + "id": "https://ror.org/04qe59j94" + }, + { + "label": "Équipe de Recherche sur l’Utilisation des Données Individuelles en Lien avec la Théorie Économique", + "type": "Child", + "id": "https://ror.org/047egvh76" + }, + { + "label": "Hôpitaux Universitaires Henri-Mondor", + "type": "Related", + "id": "https://ror.org/033yb0967" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 48.79266, + "lng": 2.46569, + "state": null, + "state_code": null, + "city": "Créteil", + "geonames_city": { + "id": 3022530, + "city": "Créteil", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-pec.fr" + ], + "aliases": [ + "Université Paris XII-Val-de-Marne", + "Université Paris-Est Créteil Val-de-Marne" + ], + "acronyms": [ + "UPEC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Paris-Est_Cr%C3%A9teil_University", + "labels": [ + { + "label": "Paris-Est Créteil University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009411" + ], + "preferred": "501100009411" + }, + "GRID": { + "all": "grid.410511.0", + "preferred": "grid.410511.0" + }, + "ISNI": { + "all": [ + "0000 0001 2149 7878", + "0000 0004 9512 4013" + ], + "preferred": "0000 0004 9512 4013" + }, + "Wikidata": { + "all": [ + "Q980688" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05ghbjx71.json b/v1.50/v1/05ghbjx71.json new file mode 100644 index 000000000..11478b048 --- /dev/null +++ b/v1.50/v1/05ghbjx71.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/05ghbjx71", + "name": "Centre intégré de santé et de services sociaux de Chaudière-Appalaches", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpital d'Youville de Sherbrooke", + "type": "Child", + "id": "https://ror.org/02805zw73" + } + ], + "addresses": [ + { + "lat": 46.75818, + "lng": -71.23921, + "state": null, + "state_code": null, + "city": "Saint Romuald", + "geonames_city": { + "id": 8740846, + "city": "Saint Romuald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cisssca.com" + ], + "aliases": [ + "CISSCA Chaudière-Appalaches", + "CISSS Chaudière-Appalaches", + "CISSS of Chaudière-Appalaches", + "Centre de Recherche du Centre intégré de santé et de services sociaux de Chaudière-Appalaches", + "Centre intégré de santé et de services sociaux de Chaudière-Appalaches", + "Centres intégrés de santé et de services sociaux de Chaudière-Appalaches (CISSS)", + "Centres intégrés universitaires de santé et de services sociaux de Chaudière-Appalaches (CIUSSS)" + ], + "acronyms": [ + "CSSS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.420763.4", + "preferred": "grid.420763.4" + }, + "ISNI": { + "all": [ + "0000 0004 4686 6563" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30282741" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05gknh003.json b/v1.50/v1/05gknh003.json new file mode 100644 index 000000000..3c56c708d --- /dev/null +++ b/v1.50/v1/05gknh003.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05gknh003", + "name": "Ocean Networks Canada Society", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Victoria", + "type": "Parent", + "id": "https://ror.org/04s5mat29" + }, + { + "label": "NorthEast Pacific Deep-sea Exploration Project", + "type": "Related", + "id": "https://ror.org/01fkg1209" + } + ], + "addresses": [ + { + "lat": 48.4359, + "lng": -123.35155, + "state": null, + "state_code": null, + "city": "Victoria", + "geonames_city": { + "id": 6174041, + "city": "Victoria", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.oceannetworks.ca/" + ], + "aliases": [], + "acronyms": [ + "ONC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ocean_Networks_Canada", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.440053.6", + "preferred": "grid.440053.6" + }, + "ISNI": { + "all": [ + "0000 0004 5929 2386" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16959841" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05gngra25.json b/v1.50/v1/05gngra25.json new file mode 100644 index 000000000..6e5768626 --- /dev/null +++ b/v1.50/v1/05gngra25.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/05gngra25", + "name": "Escuela Normal Rural \"Gral. Matías Ramos Santos\"", + "email_address": null, + "ip_addresses": [], + "established": 1933, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.27744, + "lng": -101.95196, + "state": null, + "state_code": null, + "city": "San Marcos", + "geonames_city": { + "id": 3985570, + "city": "San Marcos", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.matiasramos.edu.mx" + ], + "aliases": [ + "Normal Rural de San Marcos" + ], + "acronyms": [ + "SAMAZAC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/05gz77z03.json b/v1.50/v1/05gz77z03.json new file mode 100644 index 000000000..c0285342f --- /dev/null +++ b/v1.50/v1/05gz77z03.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05gz77z03", + "name": "Thales Alenia Space (France)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Thales Alenia Space (Italy)", + "type": "Child", + "id": "https://ror.org/02spbd534" + }, + { + "label": "Leonardo (Italy)", + "type": "Parent", + "id": "https://ror.org/0470vke61" + }, + { + "label": "Thales (France)", + "type": "Parent", + "id": "https://ror.org/04emwm605" + } + ], + "addresses": [ + { + "lat": 43.55135, + "lng": 7.01275, + "state": null, + "state_code": null, + "city": "Cannes", + "geonames_city": { + "id": 3028808, + "city": "Cannes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.thalesaleniaspace.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Thales Alenia Space", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q128356" + ], + "preferred": "Q128356" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05hb8m595.json b/v1.50/v1/05hb8m595.json new file mode 100644 index 000000000..f201cacd9 --- /dev/null +++ b/v1.50/v1/05hb8m595.json @@ -0,0 +1,139 @@ +{ + "id": "https://ror.org/05hb8m595", + "name": "PHOTOSYNTHESE", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "École Normale Supérieure - PSL", + "type": "Related", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Related", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Related", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Related", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Related", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Aix-Marseille Université", + "type": "Related", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Sorbonne Université", + "type": "Related", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université Paris-Saclay", + "type": "Related", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Related", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université de Lille", + "type": "Related", + "id": "https://ror.org/02kzqn938" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "GDR 3422", + "GDR PHOTOSYNTHESE", + "Groupement de Recherche PHOTOSYNTHESE" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695176" + ], + "preferred": "Q123695176" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05he7vj96.json b/v1.50/v1/05he7vj96.json new file mode 100644 index 000000000..2a1421ee9 --- /dev/null +++ b/v1.50/v1/05he7vj96.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05he7vj96", + "name": "Modern Business School", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mbs.edu.rs" + ], + "aliases": [], + "acronyms": [ + "MBS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Visoka škola modernog biznisa", + "iso639": "sr" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q126839542" + ], + "preferred": "Q126839542" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05hy3tk52.json b/v1.50/v1/05hy3tk52.json new file mode 100644 index 000000000..13e971965 --- /dev/null +++ b/v1.50/v1/05hy3tk52.json @@ -0,0 +1,255 @@ +{ + "id": "https://ror.org/05hy3tk52", + "name": "École Polytechnique", + "email_address": null, + "ip_addresses": [], + "established": 1794, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire de Biochimie", + "type": "Child", + "id": "https://ror.org/01c6vgf77" + }, + { + "label": "Centre de Recherche en Économie et Statistique", + "type": "Child", + "id": "https://ror.org/0449khs19" + }, + { + "label": "Centre de Physique Théorique", + "type": "Child", + "id": "https://ror.org/02bsd9p69" + }, + { + "label": "Centre de Gestion Scientifique", + "type": "Child", + "id": "https://ror.org/003y0kg83" + }, + { + "label": "Centre de Mathématiques Appliquées", + "type": "Child", + "id": "https://ror.org/012e1xn46" + }, + { + "label": "Laboratoire d'Informatique de l'École Polytechnique", + "type": "Child", + "id": "https://ror.org/04afed728" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Heteroelements and Coordination Chemistry Lab", + "type": "Child", + "id": "https://ror.org/02cf97417" + }, + { + "label": "Laboratoire des Solides Irradiés", + "type": "Child", + "id": "https://ror.org/015x8rz21" + }, + { + "label": "Laboratoire d'Hydrodynamique", + "type": "Child", + "id": "https://ror.org/018b0x874" + }, + { + "label": "Laboratoire d'Optique Appliquée", + "type": "Child", + "id": "https://ror.org/03czns913" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "Child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire d'Optique et Biosciences", + "type": "Child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratoire de Synthèse Organique", + "type": "Child", + "id": "https://ror.org/04qgfge56" + }, + { + "label": "Laboratoire de Physique des Interfaces et des Couches Minces", + "type": "Child", + "id": "https://ror.org/023f9y602" + }, + { + "label": "Centre de Mathématiques Laurent Schwartz", + "type": "Child", + "id": "https://ror.org/00b7djk73" + }, + { + "label": "Laboratoire Leprince-Ringuet", + "type": "Child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "Centre CEA de Saclay", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Laboratoire Mécanique des Solides", + "type": "Child", + "id": "https://ror.org/00xd1ek73" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "Child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Microfluidique Physique et Bio-ingénierie", + "type": "Child", + "id": "https://ror.org/05hvqzx20" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Parent", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "École Nationale Supérieure d'Électrotechnique, d'Électronique, d'Informatique, d'Hydraulique et des Télécommunications", + "type": "Related", + "id": "https://ror.org/05wfw4946" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.polytechnique.edu/en" + ], + "aliases": [ + "l'X" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/%C3%89cole_Polytechnique", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007242" + ], + "preferred": null + }, + "GRID": { + "all": "grid.10877.39", + "preferred": "grid.10877.39" + }, + "ISNI": { + "all": [ + "0000 0001 2158 1279" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273626" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05k10hd12.json b/v1.50/v1/05k10hd12.json new file mode 100644 index 000000000..411cfe19b --- /dev/null +++ b/v1.50/v1/05k10hd12.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05k10hd12", + "name": "Ministry of Agriculture, Food and Viticulture", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.75, + "lng": 6.16667, + "state": null, + "state_code": null, + "city": "Luxembourg", + "geonames_city": { + "id": 2960313, + "city": "Luxembourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ma.gouvernement.lu" + ], + "aliases": [], + "acronyms": [ + "MAVDR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Ministerium für Landwirtschaft, Ernährung und Weinbau", + "iso639": "de" + }, + { + "label": "Ministère de l'Agriculture, de l'Alimentation et de la Viticultur", + "iso639": "fr" + }, + { + "label": "Ministère fir Landwirtschaft, Ernärung a Wäibau", + "iso639": "lu" + } + ], + "country": { + "country_name": "Luxembourg", + "country_code": "LU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q38298732" + ], + "preferred": "Q38298732" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05kpkpg04.json b/v1.50/v1/05kpkpg04.json new file mode 100644 index 000000000..0383a6e65 --- /dev/null +++ b/v1.50/v1/05kpkpg04.json @@ -0,0 +1,211 @@ +{ + "id": "https://ror.org/05kpkpg04", + "name": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Animal, Santé, Territoires, Risques et Ecosystèmes", + "type": "Child", + "id": "https://ror.org/006fhby04" + }, + { + "label": "UMR Botanique et Modélisation de l’Architecture des Plantes et des végétations", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Ecologie des Forêts de Guyane", + "type": "Child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Forests and Societies", + "type": "Child", + "id": "https://ror.org/02pzyz439" + }, + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "Child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Peuplement Végétaux et Bio-agresseurs en Milieu Tropical", + "type": "Child", + "id": "https://ror.org/03mj14b52" + }, + { + "label": "Systèmes d’élevage méditerranéens et tropicaux", + "type": "Child", + "id": "https://ror.org/05merjr74" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Interactions hotes-vecteurs-parasites-environnement dans les maladies tropicales négligées dues aux trypanosomatides", + "type": "Child", + "id": "https://ror.org/05ye29x39" + }, + { + "label": "Savoirs, Environnement, Sociétés", + "type": "Child", + "id": "https://ror.org/04gpe6h67" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "ABSys", + "type": "Child", + "id": "https://ror.org/00n2c0309" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cirad.fr" + ], + "aliases": [], + "acronyms": [ + "CIRAD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French Agricultural Research Centre for International Development", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007204", + "100007599" + ], + "preferred": null + }, + "GRID": { + "all": "grid.8183.2", + "preferred": "grid.8183.2" + }, + "ISNI": { + "all": [ + "0000 0001 2153 9871" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945274" + ], + "preferred": "Q2945274" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05mpb3k90.json b/v1.50/v1/05mpb3k90.json new file mode 100644 index 000000000..c2bfd5d44 --- /dev/null +++ b/v1.50/v1/05mpb3k90.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/05mpb3k90", + "name": "Förderverein Bioökonomieforschung e.V.", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.73438, + "lng": 7.09549, + "state": null, + "state_code": null, + "city": "Bonn", + "geonames_city": { + "id": 2946447, + "city": "Bonn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fbf-forschung.de" + ], + "aliases": [ + "Förderverein Biotechnologieforschung" + ], + "acronyms": [ + "FBF" + ], + "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.50/v1/05n8j1468.json b/v1.50/v1/05n8j1468.json new file mode 100644 index 000000000..4dc7f159f --- /dev/null +++ b/v1.50/v1/05n8j1468.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05n8j1468", + "name": "Fonna Hospital Trust", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Stord hospital", + "type": "Child", + "id": "https://ror.org/045dq5f72" + } + ], + "addresses": [ + { + "lat": 59.41378, + "lng": 5.268, + "state": null, + "state_code": null, + "city": "Haugesund", + "geonames_city": { + "id": 3153623, + "city": "Haugesund", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.helse-fonna.no" + ], + "aliases": [ + "Helse Fonna" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Fonna_Hospital_Trust", + "labels": [], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0627 255X" + ], + "preferred": "0000 0004 0627 255X" + }, + "Wikidata": { + "all": [ + "Q5465049" + ], + "preferred": "Q5465049" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05n911h24.json b/v1.50/v1/05n911h24.json new file mode 100644 index 000000000..600111c61 --- /dev/null +++ b/v1.50/v1/05n911h24.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/05n911h24", + "name": "Technical University of Darmstadt", + "email_address": null, + "ip_addresses": [], + "established": 1877, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Hessian Center for Artificial Intelligence", + "type": "Child", + "id": "https://ror.org/014ybqb54" + }, + { + "label": "TU9", + "type": "Related", + "id": "https://ror.org/02nx8n605" + }, + { + "label": "Zentrum verantwortungsbewusste Digitalisierung", + "type": "Child", + "id": "https://ror.org/04ms06f06" + } + ], + "addresses": [ + { + "lat": 49.87167, + "lng": 8.65027, + "state": null, + "state_code": null, + "city": "Darmstadt", + "geonames_city": { + "id": 2938913, + "city": "Darmstadt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.tu-darmstadt.de/" + ], + "aliases": [ + "TU Darmstadt" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Technische_Universit%C3%A4t_Darmstadt", + "labels": [ + { + "label": "Technische Universität Darmstadt", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005714", + "501100003072" + ], + "preferred": "501100005714" + }, + "GRID": { + "all": "grid.6546.1", + "preferred": "grid.6546.1" + }, + "ISNI": { + "all": [ + "0000 0001 0940 1669" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q310695" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05nxhgm70.json b/v1.50/v1/05nxhgm70.json new file mode 100644 index 000000000..7806f4c0e --- /dev/null +++ b/v1.50/v1/05nxhgm70.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05nxhgm70", + "name": "Hartstichting", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.07667, + "lng": 4.29861, + "state": null, + "state_code": null, + "city": "The Hague", + "geonames_city": { + "id": 2747373, + "city": "The Hague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hartstichting.nl" + ], + "aliases": [], + "acronyms": [ + "NHS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Dutch Heart Foundation", + "iso639": "en" + }, + { + "label": "Nederlandse Hartstichting", + "iso639": "nl" + } + ], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002996" + ], + "preferred": null + }, + "GRID": { + "all": "grid.453051.6", + "preferred": "grid.453051.6" + }, + "ISNI": { + "all": [ + "0000 0001 0409 9800" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05p96ba03.json b/v1.50/v1/05p96ba03.json new file mode 100644 index 000000000..3f5121b0a --- /dev/null +++ b/v1.50/v1/05p96ba03.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05p96ba03", + "name": "Monash Institute of Medical Research", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Monash University", + "type": "Related", + "id": "https://ror.org/02bfwt286" + }, + { + "label": "Hudson Institute of Medical Research", + "type": "Successor", + "id": "https://ror.org/0083mf965" + } + ], + "addresses": [ + { + "lat": -37.91667, + "lng": 145.11667, + "state": null, + "state_code": null, + "city": "Clayton", + "geonames_city": { + "id": 2171400, + "city": "Clayton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "MIMR" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Monash_Institute_of_Medical_Research", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.416057.1", + "preferred": "grid.416057.1" + }, + "ISNI": { + "all": [ + "0000 0000 8764 9988" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6898230" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05pq4yn02.json b/v1.50/v1/05pq4yn02.json new file mode 100644 index 000000000..e6e664f5e --- /dev/null +++ b/v1.50/v1/05pq4yn02.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/05pq4yn02", + "name": "Czech Academy of Sciences, Biology Centre", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + }, + { + "label": "Institute of Entomology", + "type": "Predecessor", + "id": "https://ror.org/039nazg33" + }, + { + "label": "Institute of Hydrobiology, Biology Centre, Academy of Sciences of the Czech Republic", + "type": "Predecessor", + "id": "https://ror.org/0436nxt45" + }, + { + "label": "Institute of Parasitology", + "type": "Predecessor", + "id": "https://ror.org/05rhyza23" + }, + { + "label": "Institute of Plant Molecular Biology", + "type": "Predecessor", + "id": "https://ror.org/00jr65m43" + }, + { + "label": "Institute of Soil Biology", + "type": "Predecessor", + "id": "https://ror.org/02tz8r820" + } + ], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bc.cas.cz" + ], + "aliases": [ + "Biology Centre CAS", + "Biology Centre of the Czech Academy of Sciences", + "Czech Acad Sci, Biol Ctr", + "Czech Academy of Sciences, Biology Centre" + ], + "acronyms": [ + "BC AV ČR", + "BC CAS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Biologické centrum AV ČR", + "iso639": "cs" + }, + { + "label": "Biologické centrum AV ČR, v. v. i.", + "iso639": "cs" + }, + { + "label": "Biologické centrum AV ČR, veřejná výzkumná instituce", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100017273" + ], + "preferred": "501100017273" + }, + "GRID": { + "all": "grid.418338.5", + "preferred": "grid.418338.5" + }, + "ISNI": { + "all": [ + "0000 0001 2255 8513" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q8310408" + ], + "preferred": "Q8310408" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05pqx1c24.json b/v1.50/v1/05pqx1c24.json new file mode 100644 index 000000000..6c7c736f1 --- /dev/null +++ b/v1.50/v1/05pqx1c24.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05pqx1c24", + "name": "Denison University", + "email_address": null, + "ip_addresses": [], + "established": 1831, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.06812, + "lng": -82.5196, + "state": null, + "state_code": null, + "city": "Granville", + "geonames_city": { + "id": 5156270, + "city": "Granville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://denison.edu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Denison_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100019516" + ], + "preferred": "100019516" + }, + "GRID": { + "all": "grid.255014.7", + "preferred": "grid.255014.7" + }, + "ISNI": { + "all": [ + "0000 0001 2185 2366" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4493503" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05q0ncs32.json b/v1.50/v1/05q0ncs32.json new file mode 100644 index 000000000..d600f3c09 --- /dev/null +++ b/v1.50/v1/05q0ncs32.json @@ -0,0 +1,129 @@ +{ + "id": "https://ror.org/05q0ncs32", + "name": "Oniris", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire D'étude des Résidus et Contaminants Dans les Aliments", + "type": "Child", + "id": "https://ror.org/00kewvc41" + }, + { + "label": "Laboratoire de Génie des Procédés – Environnement – Agro-alimentaire", + "type": "Child", + "id": "https://ror.org/05ngxmx20" + }, + { + "label": "Sécurité des Aliments et Microbiologie", + "type": "Child", + "id": "https://ror.org/02nzb0q40" + }, + { + "label": "PAnTher - Physiopathologie Animale et bioThérapie du muscle et du système nerveux", + "type": "Child", + "id": "https://ror.org/05vex5m10" + }, + { + "label": "Biologie Epidémiologie et Analyse de Risque en santé animale", + "type": "Child", + "id": "https://ror.org/059h64789" + }, + { + "label": "Université Nantes Angers Le Mans", + "type": "Related", + "id": "https://ror.org/0406t3m57" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 47.21725, + "lng": -1.55336, + "state": null, + "state_code": null, + "city": "Nantes", + "geonames_city": { + "id": 2990969, + "city": "Nantes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.oniris-nantes.fr" + ], + "aliases": [ + "Nantes-Atlantic National College of Veterinary Medicine, Food Science and Engineering" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nantes-Atlantic_National_College_of_Veterinary_Medicine,_Food_Science_and_Engineering", + "labels": [ + { + "label": "École nationale vétérinaire, agroalimentaire et de l'alimentation, Nantes-Atlantique", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418682.1", + "preferred": "grid.418682.1" + }, + "ISNI": { + "all": [ + "0000 0001 2175 3974" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3578268" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05q3vnk25.json b/v1.50/v1/05q3vnk25.json new file mode 100644 index 000000000..eaede613b --- /dev/null +++ b/v1.50/v1/05q3vnk25.json @@ -0,0 +1,461 @@ +{ + "id": "https://ror.org/05q3vnk25", + "name": "Institut de Recherche pour le Développement", + "email_address": null, + "ip_addresses": [], + "established": 1937, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "AGroecologies, Innovations & Ruralities", + "type": "Child", + "id": "https://ror.org/01sjmsj73" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "Child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "UMR Botanique et Modélisation de l’Architecture des Plantes et des végétations", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Center for Social Studies on African, American and Asian Worlds", + "type": "Child", + "id": "https://ror.org/03pnk9016" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Diversité, adaptation, développement des plantes", + "type": "Child", + "id": "https://ror.org/02banhz78" + }, + { + "label": "Economic & Social Sciences, Health Systems & Medical Informatics", + "type": "Child", + "id": "https://ror.org/0508wny29" + }, + { + "label": "Institut Universitaire Européen de la Mer", + "type": "Child", + "id": "https://ror.org/04pfr1b11" + }, + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Géoazur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Gouvernance, Risque, Environnement, Développement", + "type": "Child", + "id": "https://ror.org/01h4rra97" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Institut Pythéas Observatoire des Sciences de l’Univers", + "type": "Child", + "id": "https://ror.org/00f945z63" + }, + { + "label": "Institut de Recherche Pour le Développement", + "type": "Child", + "id": "https://ror.org/05kf9jb93" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/051ykjw41" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/044vzpb64" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/015q23935" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/01j4h9t83" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/00bnthp71" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/03xx98n35" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/032qezt74" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institut des Géosciences de l'Environnement", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "Institut de minéralogie, de physique des matériaux et de cosmochimie", + "type": "Child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire des Sciences de l'Environnement Marin", + "type": "Child", + "id": "https://ror.org/05h929866" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratoire HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "Child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Marine Biodiversity Exploitation and Conservation", + "type": "Child", + "id": "https://ror.org/049dk3691" + }, + { + "label": "Institut Méditerranéen de Biodiversité et d'Ecologie Marine et Continentale", + "type": "Child", + "id": "https://ror.org/0409c3995" + }, + { + "label": "Institut Méditerranéen d’Océanologie", + "type": "Child", + "id": "https://ror.org/05258q350" + }, + { + "label": "Mère et Enfant en Milieu Tropical", + "type": "Child", + "id": "https://ror.org/00rd22143" + }, + { + "label": "Pharmacochimie et Pharmacologie pour le Développement", + "type": "Child", + "id": "https://ror.org/03p7xrr08" + }, + { + "label": "Laboratoire Population Environnement Développement", + "type": "Child", + "id": "https://ror.org/017qtjx43" + }, + { + "label": "Centre Population et Développement", + "type": "Child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "Child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Unité de Modélisation Mathématique et Informatique des Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/053kxkj53" + }, + { + "label": "Écologie Marine Tropicale des Océans Pacifique et Indien", + "type": "Child", + "id": "https://ror.org/05kxt4539" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "Child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "Patrimoines locaux, Environnement et Globalisation", + "type": "Child", + "id": "https://ror.org/00mryrd39" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "Child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "Ecosystèmes Insulaires Océaniens", + "type": "Child", + "id": "https://ror.org/001j26r80" + }, + { + "label": "Interactions hotes-vecteurs-parasites-environnement dans les maladies tropicales négligées dues aux trypanosomatides", + "type": "Child", + "id": "https://ror.org/05ye29x39" + }, + { + "label": "UMR Développement et Sociétés", + "type": "Child", + "id": "https://ror.org/00waz9262" + }, + { + "label": "Soutenabilité et Résilence", + "type": "Child", + "id": "https://ror.org/047rqcm40" + }, + { + "label": "Savoirs, Environnement, Sociétés", + "type": "Child", + "id": "https://ror.org/04gpe6h67" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "Observatoire des Sciences de l'Univers de la Réunion", + "type": "Child", + "id": "https://ror.org/05mv3tj33" + }, + { + "label": "Ministère de l'Europe et des Affaires étrangères", + "type": "Parent", + "id": "https://ror.org/00dfd1509" + }, + { + "label": "Ministère de l’Enseignement Supérieur et de la Recherche", + "type": "Parent", + "id": "https://ror.org/03sjk9a61" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://en.ird.fr/" + ], + "aliases": [], + "acronyms": [ + "IRD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_de_recherche_pour_le_d%C3%A9veloppement", + "labels": [ + { + "label": "Institute of Research for Development", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006137", + "100012947" + ], + "preferred": "100012947" + }, + "GRID": { + "all": "grid.4399.7", + "preferred": "grid.4399.7" + }, + "ISNI": { + "all": [ + "0000 0001 2287 9528" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2910510" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05q526p85.json b/v1.50/v1/05q526p85.json new file mode 100644 index 000000000..67dc9840f --- /dev/null +++ b/v1.50/v1/05q526p85.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05q526p85", + "name": "Human Rights Research and Education Centre", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uottawa.ca/research-innovation/hrrec" + ], + "aliases": [ + "University of Ottawa Human Rights Research and Education Centre", + "Université d’Ottawa Centre de recherche et d'enseignement sur les droits de la personne", + "uOttawa Human Rights Research and Education Centre" + ], + "acronyms": [ + "HRREC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de recherche et d'enseignement sur les droits de la personne", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/05q65zh81.json b/v1.50/v1/05q65zh81.json new file mode 100644 index 000000000..fd5ab5f05 --- /dev/null +++ b/v1.50/v1/05q65zh81.json @@ -0,0 +1,142 @@ +{ + "id": "https://ror.org/05q65zh81", + "name": "Chimie ParisTech", + "email_address": null, + "ip_addresses": [], + "established": 1896, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Institut de Recherche de Chimie Paris", + "type": "Child", + "id": "https://ror.org/02s6m8n84" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "Child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "ParisTech", + "type": "Parent", + "id": "https://ror.org/05c2qg481" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chimie-paristech.fr/" + ], + "aliases": [ + "Chimie Paris", + "National Chemical Engineering Institute in Paris" + ], + "acronyms": [ + "ENSCP " + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Chimie_ParisTech", + "labels": [ + { + "label": "École nationale supérieure de chimie de Paris", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418677.b", + "preferred": "grid.418677.b" + }, + "ISNI": { + "all": [ + "0000 0000 9519 117X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2963665" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05rhg0h08.json b/v1.50/v1/05rhg0h08.json new file mode 100644 index 000000000..348138a5c --- /dev/null +++ b/v1.50/v1/05rhg0h08.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05rhg0h08", + "name": "Laboratoire d'Informatique Fondamentale de Lille", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Successor", + "id": "https://ror.org/05vrs3189" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lifl.fr/indexb14b.html?" + ], + "aliases": [], + "acronyms": [ + "LIFL" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Laboratoire_d%27Informatique_Fondamentale_de_Lille", + "labels": [ + { + "label": "Computer Science Laboratory of Lille", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503303.6", + "preferred": "grid.503303.6" + }, + "ISNI": { + "all": [ + "0000 0001 0275 1113" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3214431" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05rhyza23.json b/v1.50/v1/05rhyza23.json new file mode 100644 index 000000000..5d92b9087 --- /dev/null +++ b/v1.50/v1/05rhyza23.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05rhyza23", + "name": "Institute of Parasitology", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + }, + { + "label": "Czech Academy of Sciences, Biology Centre", + "type": "Successor", + "id": "https://ror.org/05pq4yn02" + } + ], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.paru.cas.cz/en/" + ], + "aliases": [ + "Parazitologický ústav" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010963" + ], + "preferred": "501100010963" + }, + "GRID": { + "all": "grid.448361.c", + "preferred": "grid.448361.c" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05ryemn72.json b/v1.50/v1/05ryemn72.json new file mode 100644 index 000000000..d592b402a --- /dev/null +++ b/v1.50/v1/05ryemn72.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/05ryemn72", + "name": "Ankara Yıldırım Beyazıt University", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.91987, + "lng": 32.85427, + "state": null, + "state_code": null, + "city": "Ankara", + "geonames_city": { + "id": 323786, + "city": "Ankara", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://aybu.edu.tr" + ], + "aliases": [ + "Ankara Yildirim Beyazit University", + "Yildirim Beyazit Universitesi", + "Yildirim Beyazit University", + "Yıldırım Beyazıt University", + "Yıldırım Beyazıt Üniversitesi" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ankara_Y%C4%B1ld%C4%B1r%C4%B1m_Beyaz%C4%B1t_University", + "labels": [ + { + "label": "Yıldırım Beyazıt Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100014801" + ], + "preferred": "501100014801" + }, + "GRID": { + "all": "grid.449874.2", + "preferred": "grid.449874.2" + }, + "ISNI": { + "all": [ + "0000 0004 0454 9762" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6084324" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05s6rge65.json b/v1.50/v1/05s6rge65.json new file mode 100644 index 000000000..5ed0b806a --- /dev/null +++ b/v1.50/v1/05s6rge65.json @@ -0,0 +1,160 @@ +{ + "id": "https://ror.org/05s6rge65", + "name": "École Centrale de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 1857, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Field Observatory in Urban Hydrology", + "type": "Child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Institut des Nanotechnologies de Lyon", + "type": "Child", + "id": "https://ror.org/04jsk0b74" + }, + { + "label": "Interactions, Corpus, Apprentissages, Représentations", + "type": "Child", + "id": "https://ror.org/04mn0nr69" + }, + { + "label": "Laboratoire Ampère", + "type": "Child", + "id": "https://ror.org/04xbczw40" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "Child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "Child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Laboratoire de Tribologie et Dynamique des Systèmes", + "type": "Child", + "id": "https://ror.org/015vtcw98" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 45.77437, + "lng": 4.77758, + "state": null, + "state_code": null, + "city": "Écully", + "geonames_city": { + "id": 3020392, + "city": "Écully", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ec-lyon.fr/en" + ], + "aliases": [], + "acronyms": [ + "ECL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_centrale_de_Lyon", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009505" + ], + "preferred": "501100009505" + }, + "GRID": { + "all": "grid.15401.31", + "preferred": "grid.15401.31" + }, + "ISNI": { + "all": [ + "0000 0001 2181 0799" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10177" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05sbt2524.json b/v1.50/v1/05sbt2524.json new file mode 100644 index 000000000..37c6a49de --- /dev/null +++ b/v1.50/v1/05sbt2524.json @@ -0,0 +1,239 @@ +{ + "id": "https://ror.org/05sbt2524", + "name": "Institut polytechnique de Grenoble", + "email_address": null, + "ip_addresses": [], + "established": 1892, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Interuniversitaire de MicroElectronique et Nanotechnologies", + "type": "Child", + "id": "https://ror.org/000tdrn36" + }, + { + "label": "Laboratoire d'Economie Appliquée de Grenoble", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Laboratoire d'Informatique de Grenoble", + "type": "Child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "Child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Institut de Microélectronique, Electromagnétisme et Photonique", + "type": "Child", + "id": "https://ror.org/03taa9n66" + }, + { + "label": "Institut des Géosciences de l'Environnement", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Rhéologie et Procédés", + "type": "Child", + "id": "https://ror.org/044ggyg50" + }, + { + "label": "Laboratoire de Conception et d'Intégration des Systèmes", + "type": "Child", + "id": "https://ror.org/04eg25g76" + }, + { + "label": "Laboratoire de Génie Électrique de Grenoble", + "type": "Child", + "id": "https://ror.org/05hyx5a17" + }, + { + "label": "Laboratoire des Sciences pour la Conception, l'Optimisation et la Production", + "type": "Child", + "id": "https://ror.org/00rv5x925" + }, + { + "label": "Laboratoire des Écoulements Géophysiques et Industriels", + "type": "Child", + "id": "https://ror.org/043pfpy19" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "Child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Laboratoire de génie des procédés pour la bioraffinerie, les matériaux bio-sourcés et l’impression fonctionnelle", + "type": "Child", + "id": "https://ror.org/02z8yps18" + }, + { + "label": "Laboratoire de Physique Subatomique et de Cosmologie", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Laboratoire des Matériaux et du Génie Physique", + "type": "Child", + "id": "https://ror.org/014n97s28" + }, + { + "label": "Science et Ingénierie des Matériaux et Procédés", + "type": "Child", + "id": "https://ror.org/00m7zca23" + }, + { + "label": "Sols, Solides, Structures, Risques", + "type": "Child", + "id": "https://ror.org/03bcdsr62" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Translational Innovation in Medicine and Complexity", + "type": "Child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Techniques of Informatics and Microelectronics for Integrated Systems Architecture", + "type": "Child", + "id": "https://ror.org/000063q30" + }, + { + "label": "Verimag", + "type": "Child", + "id": "https://ror.org/05afmzm11" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Centre de Radiofréquences, Optique et Micro-nanoélectronique des Alpes", + "type": "Child", + "id": "https://ror.org/050rs7291" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.grenoble-inp.fr/welcome/" + ], + "aliases": [ + "Grenoble INP" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Grenoble_Institute_of_Technology", + "labels": [ + { + "label": "Grenoble Institute of Technology", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.5676.2", + "preferred": "grid.5676.2" + }, + "ISNI": { + "all": [ + "0000 0004 1765 4326" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1665121" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05scxf493.json b/v1.50/v1/05scxf493.json new file mode 100644 index 000000000..e609b2a1c --- /dev/null +++ b/v1.50/v1/05scxf493.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05scxf493", + "name": "Al Maarif University College", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.42056, + "lng": 43.30778, + "state": null, + "state_code": null, + "city": "Ramadi", + "geonames_city": { + "id": 98717, + "city": "Ramadi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uoa.edu.iq" + ], + "aliases": [ + "Al Maaref University College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Al_Maarif_University_College", + "labels": [ + { + "label": "كلية المعارف الجامعة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "GRID": { + "all": "grid.460851.e", + "preferred": "grid.460851.e" + }, + "Wikidata": { + "all": [ + "Q4704329" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05snag760.json b/v1.50/v1/05snag760.json new file mode 100644 index 000000000..18c3d7524 --- /dev/null +++ b/v1.50/v1/05snag760.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/05snag760", + "name": "Slovenian Language Technologies Society", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sdjt.si" + ], + "aliases": [ + "Slovensko društvo za jezikovne tehnologije" + ], + "acronyms": [ + "SDJT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/05tr67282.json b/v1.50/v1/05tr67282.json new file mode 100644 index 000000000..d615f0261 --- /dev/null +++ b/v1.50/v1/05tr67282.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/05tr67282", + "name": "Hôpital Necker-Enfants Malades", + "email_address": null, + "ip_addresses": [], + "established": 1778, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Centre de Référence Déficits Immunitaires Héréditaires", + "type": "Child", + "id": "https://ror.org/009p5nb11" + }, + { + "label": "Hôpitaux Universitaires Paris-Ouest", + "type": "Parent", + "id": "https://ror.org/01v676463" + }, + { + "label": "ERN Skin", + "type": "Related", + "id": "https://ror.org/0446wcg70" + }, + { + "label": "Université Paris Cité", + "type": "Related", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://hopital-necker.aphp.fr/" + ], + "aliases": [ + "Necker Hospital – Hospital for Sick Children" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Necker-Enfants_Malades_Hospital", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.412134.1", + "preferred": "grid.412134.1" + }, + "ISNI": { + "all": [ + "0000 0004 0593 9113" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3145188" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05txm7f82.json b/v1.50/v1/05txm7f82.json new file mode 100644 index 000000000..c98f6b7c2 --- /dev/null +++ b/v1.50/v1/05txm7f82.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/05txm7f82", + "name": "Northwest University First Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1954, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.25833, + "lng": 108.92861, + "state": null, + "state_code": null, + "city": "Xi'an", + "geonames_city": { + "id": 1790630, + "city": "Xi'an", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nwufh.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "西北大学第一医院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/05tyne317.json b/v1.50/v1/05tyne317.json new file mode 100644 index 000000000..495f66e98 --- /dev/null +++ b/v1.50/v1/05tyne317.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/05tyne317", + "name": "Ministry of Science and Higher Education of the Republic of Kazakhstan", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of Education and Science of the Republic of Kazakhstan", + "type": "Predecessor", + "id": "https://ror.org/03pj6ge82" + }, + { + "label": "Institute for Philosophy, Political Science and Religion Studies", + "type": "Child", + "id": "https://ror.org/04b82qh04" + }, + { + "label": "Institute of Geography", + "type": "Child", + "id": "https://ror.org/01h85cx24" + }, + { + "label": "Institute of Physics and Technology", + "type": "Child", + "id": "https://ror.org/03vaxkw63" + }, + { + "label": "Institute of Plant Biology and Biotechnology", + "type": "Child", + "id": "https://ror.org/00s0yct57" + }, + { + "label": "Institute of Zoology", + "type": "Child", + "id": "https://ror.org/01wtxm109" + } + ], + "addresses": [ + { + "lat": 51.1801, + "lng": 71.44598, + "state": null, + "state_code": null, + "city": "Astana", + "geonames_city": { + "id": 1526273, + "city": "Astana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gov.kz/memleket/entities/sci" + ], + "aliases": [ + "Kazakhstan Ministry of Science and Higher Education", + "Ministry of Science and Higher Education of Kazakhstan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Министерство науки и высшего образования Республики Казахстан", + "iso639": "ru" + }, + { + "label": "Қазақстан Республикасы Ғылым және жоғары білім министрлігі", + "iso639": "kk" + } + ], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/05vdb2m56.json b/v1.50/v1/05vdb2m56.json new file mode 100644 index 000000000..0d8fcc73e --- /dev/null +++ b/v1.50/v1/05vdb2m56.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05vdb2m56", + "name": "Centre for Research on Health and Nursing", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Ottawa", + "type": "Parent", + "id": "https://ror.org/03c4mmv16" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.crssi-crhn.ca" + ], + "aliases": [ + "University of Ottawa Centre for Research on Health and Nursing", + "Université d’Ottawa Centre de recherche en santé et sciences infirmieres", + "uOttawa Centre for Research on Health and Nursing" + ], + "acronyms": [ + "CRHN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre de recherche en santé et sciences infirmieres", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/05vgg3342.json b/v1.50/v1/05vgg3342.json new file mode 100644 index 000000000..9a1d13f3b --- /dev/null +++ b/v1.50/v1/05vgg3342.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05vgg3342", + "name": "HES-SO Vaud", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Successor", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.77852, + "lng": 6.64115, + "state": null, + "state_code": null, + "city": "Yverdon-les-Bains", + "geonames_city": { + "id": 2657941, + "city": "Yverdon-les-Bains", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hes-so.ch/fr/vaud-950.html" + ], + "aliases": [], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [ + { + "label": "Fachhochschule Westschweiz - Waadt", + "iso639": "de" + }, + { + "label": "Haute École Spécialisée de Suisse Occidentale - Vaud", + "iso639": "fr" + }, + { + "label": "University of Applied Sciences and Arts Western Switzerland - Vaud", + "iso639": "en" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.508733.a", + "preferred": "grid.508733.a" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05vrs3189.json b/v1.50/v1/05vrs3189.json new file mode 100644 index 000000000..e5d38d69b --- /dev/null +++ b/v1.50/v1/05vrs3189.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/05vrs3189", + "name": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lille", + "type": "Parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "École Centrale de Lille", + "type": "Parent", + "id": "https://ror.org/01x441g73" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "IMT Nord Europe", + "type": "Parent", + "id": "https://ror.org/042rh9p26" + }, + { + "label": "Laboratoire d'Informatique Fondamentale de Lille", + "type": "Predecessor", + "id": "https://ror.org/05rhg0h08" + }, + { + "label": "Laboratoire d'Automatique, Génie Informatique et Signal", + "type": "Predecessor", + "id": "https://ror.org/04wez4p43" + } + ], + "addresses": [ + { + "lat": 50.61669, + "lng": 3.16664, + "state": null, + "state_code": null, + "city": "Villeneuve-d'Ascq", + "geonames_city": { + "id": 6543862, + "city": "Villeneuve-d'Ascq", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cristal.univ-lille.fr" + ], + "aliases": [], + "acronyms": [ + "CRIStAL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.50/v1/05w9qrp28.json b/v1.50/v1/05w9qrp28.json new file mode 100644 index 000000000..4b22fd4e7 --- /dev/null +++ b/v1.50/v1/05w9qrp28.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/05w9qrp28", + "name": "Modélisation, information et systèmes", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mis.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "MIS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51779982" + ], + "preferred": "Q51779982" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05wcwnx35.json b/v1.50/v1/05wcwnx35.json new file mode 100644 index 000000000..bbc47e1f0 --- /dev/null +++ b/v1.50/v1/05wcwnx35.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/05wcwnx35", + "name": "Brooklyn Academy of Music", + "email_address": null, + "ip_addresses": [], + "established": 1908, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bam.org" + ], + "aliases": [], + "acronyms": [ + "BAM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Brooklyn_Academy_of_Music", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.450464.7", + "preferred": "grid.450464.7" + }, + "ISNI": { + "all": [ + "0000 0004 1057 450X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q72912" + ], + "preferred": "Q72912" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05x85js44.json b/v1.50/v1/05x85js44.json new file mode 100644 index 000000000..e72a22f14 --- /dev/null +++ b/v1.50/v1/05x85js44.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/05x85js44", + "name": "Assumption College of Davao", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.07306, + "lng": 125.61278, + "state": null, + "state_code": null, + "city": "Davao City", + "geonames_city": { + "id": 1715348, + "city": "Davao City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.acd.edu.ph/acd/" + ], + "aliases": [ + "Assumption Academy of Davao", + "Assumption School of Davao", + "Kolehiyo ng Assumption Davao" + ], + "acronyms": [ + "ACD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Assumption_College_of_Davao", + "labels": [], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9129 4939" + ], + "preferred": "0000 0004 9129 4939" + }, + "Wikidata": { + "all": [ + "Q4810352" + ], + "preferred": "Q4810352" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05xwv2r69.json b/v1.50/v1/05xwv2r69.json new file mode 100644 index 000000000..5d67ec134 --- /dev/null +++ b/v1.50/v1/05xwv2r69.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/05xwv2r69", + "name": "Institut Teknologi dan Sains Mandala", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -8.17211, + "lng": 113.69953, + "state": null, + "state_code": null, + "city": "Jember", + "geonames_city": { + "id": 1642588, + "city": "Jember", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itsm.ac.id" + ], + "aliases": [ + "ITS Mandala", + "Mandala College of Economics", + "Mandala Institute of Technology and Science", + "STIE Mandala", + "Sekolah Tinggi Ilmu Ekonomi Mandala" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1762 8574" + ], + "preferred": "0000 0004 1762 8574" + }, + "Wikidata": { + "all": [ + "Q109913141" + ], + "preferred": "Q109913141" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05y441t49.json b/v1.50/v1/05y441t49.json new file mode 100644 index 000000000..6a03427fd --- /dev/null +++ b/v1.50/v1/05y441t49.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05y441t49", + "name": "Centre d'Etudes Hispaniques d'Amiens", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ceha.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "CEHA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2337 0731" + ], + "preferred": "0000 0001 2337 0731" + } + } +} \ No newline at end of file diff --git a/v1.50/v1/05yqfzf35.json b/v1.50/v1/05yqfzf35.json new file mode 100644 index 000000000..8684b8fe0 --- /dev/null +++ b/v1.50/v1/05yqfzf35.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05yqfzf35", + "name": "UMR Géographie-cités", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Related", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.91667, + "lng": 2.38333, + "state": null, + "state_code": null, + "city": "Aubervilliers", + "geonames_city": { + "id": 3036386, + "city": "Aubervilliers", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "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": { + "all": [ + "0000 0004 0623 6436" + ], + "preferred": "0000 0004 0623 6436" + }, + "Wikidata": { + "all": [ + "Q51781143" + ], + "preferred": "Q51781143" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/000nwmh60.json b/v1.51/v1/000nwmh60.json new file mode 100644 index 000000000..1ac550ca9 --- /dev/null +++ b/v1.51/v1/000nwmh60.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/000nwmh60", + "name": "L-3 Communications (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "L3Harris (United States)", + "type": "Successor", + "id": "https://ror.org/05fhwtx59" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.l-3com.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/L-3_Communications", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.436061.6", + "preferred": "grid.436061.6" + }, + "ISNI": { + "all": [ + "0000 0001 0586 9504" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1781428" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/000sg7415.json b/v1.51/v1/000sg7415.json new file mode 100644 index 000000000..6ad81bfa5 --- /dev/null +++ b/v1.51/v1/000sg7415.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/000sg7415", + "name": "Centro Universitario del Sur", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.70466, + "lng": -103.4617, + "state": null, + "state_code": null, + "city": "Ciudad Guzmán", + "geonames_city": { + "id": 4013714, + "city": "Ciudad Guzmán", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cusur.udg.mx" + ], + "aliases": [ + "Universidad de Guadalajara Centro Universitario del Sur" + ], + "acronyms": [ + "CUSUR", + "UDG CUSUR" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Centro_Universitario_del_Sur", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9216 7684" + ], + "preferred": "0000 0000 9216 7684" + }, + "Wikidata": { + "all": [ + "Q8343704" + ], + "preferred": "Q8343704" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/000xs1x50.json b/v1.51/v1/000xs1x50.json new file mode 100644 index 000000000..ce751e02a --- /dev/null +++ b/v1.51/v1/000xs1x50.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/000xs1x50", + "name": "Tusimple (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tusimple.ai" + ], + "aliases": [ + "Beijing Tusimple Future Technology Co Ltd", + "Tusimple, Inc.", + "图森未来" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Tusimple", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/000zz1243.json b/v1.51/v1/000zz1243.json new file mode 100644 index 000000000..4ca26e010 --- /dev/null +++ b/v1.51/v1/000zz1243.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/000zz1243", + "name": "Dinas Pendidikan Kabupaten Grobogan", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -7.13333, + "lng": 110.91667, + "state": null, + "state_code": null, + "city": "Grobogan Regency", + "geonames_city": { + "id": 1643768, + "city": "Grobogan Regency", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://disdik.grobogan.go.id" + ], + "aliases": [ + "Disdik Grobogan", + "Education Office of Grobogan District" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0011v9813.json b/v1.51/v1/0011v9813.json new file mode 100644 index 000000000..ebd12e88c --- /dev/null +++ b/v1.51/v1/0011v9813.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/0011v9813", + "name": "Evenor-Tech (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.38283, + "lng": -5.97317, + "state": null, + "state_code": null, + "city": "Seville", + "geonames_city": { + "id": 2510911, + "city": "Seville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://evenor-tech.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Evenor-Tech", + "iso639": null + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/001rm8957.json b/v1.51/v1/001rm8957.json new file mode 100644 index 000000000..2f50e11d1 --- /dev/null +++ b/v1.51/v1/001rm8957.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/001rm8957", + "name": "Centre for Hydraulic Research", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Sigma Group (Czechia)", + "type": "Parent", + "id": "https://ror.org/01bvh8x83" + } + ], + "addresses": [ + { + "lat": 49.55845, + "lng": 17.13572, + "state": null, + "state_code": null, + "city": "Lutín", + "geonames_city": { + "id": 3071350, + "city": "Lutín", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://matca.cz/en/about-us/consortium/centre-for-hydraulic-research-spol-s-r-o/" + ], + "aliases": [ + "Centre for Hydraulic Research spol. s r.o" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centrum hydraulického výzkumu spol. s r.o.", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q108935579" + ], + "preferred": "Q108935579" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/001w7jn25.json b/v1.51/v1/001w7jn25.json new file mode 100644 index 000000000..3c98a1813 --- /dev/null +++ b/v1.51/v1/001w7jn25.json @@ -0,0 +1,155 @@ +{ + "id": "https://ror.org/001w7jn25", + "name": "Charité - Universitätsmedizin Berlin", + "email_address": null, + "ip_addresses": [], + "established": 1710, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Berlin Institute of Health at Charité - Universitätsmedizin Berlin", + "type": "Child", + "id": "https://ror.org/0493xsw21" + }, + { + "label": "Centre Virchow-Villermé", + "type": "Child", + "id": "https://ror.org/03vkhr254" + }, + { + "label": "Einstein Center Digital Future", + "type": "Child", + "id": "https://ror.org/0086bb350" + }, + { + "label": "Deutsches Herzzentrum der Charité", + "type": "Child", + "id": "https://ror.org/01mmady97" + }, + { + "label": "Stiftung Charité", + "type": "Child", + "id": "https://ror.org/016rf0n60" + }, + { + "label": "Carl-Thiem-Klinikum Cottbus", + "type": "Related", + "id": "https://ror.org/044fhy270" + }, + { + "label": "Freie Universität Berlin", + "type": "Related", + "id": "https://ror.org/046ak2485" + }, + { + "label": "Humboldt-Universität zu Berlin", + "type": "Related", + "id": "https://ror.org/01hcx6992" + }, + { + "label": "Waldkrankenhaus Protestant Hospital", + "type": "Related", + "id": "https://ror.org/03afbx254" + }, + { + "label": "Wyss Institute for Biologically Inspired Engineering", + "type": "Related", + "id": "https://ror.org/008cfmj78" + }, + { + "label": "Berlin Institute for the Foundations of Learning and Data", + "type": "Child", + "id": "https://ror.org/05dsfb086" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.charite.de/en/" + ], + "aliases": [ + "Charité" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Charit%C3%A9", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002839" + ], + "preferred": null + }, + "GRID": { + "all": "grid.6363.0", + "preferred": "grid.6363.0" + }, + "ISNI": { + "all": [ + "0000 0001 2218 4662" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q162684" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/002swtn40.json b/v1.51/v1/002swtn40.json new file mode 100644 index 000000000..f354e2424 --- /dev/null +++ b/v1.51/v1/002swtn40.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/002swtn40", + "name": "JLA Ediciones", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -2.19616, + "lng": -79.88621, + "state": null, + "state_code": null, + "city": "Guayaquil", + "geonames_city": { + "id": 3657509, + "city": "Guayaquil", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://jlacolectivo.com/editorial/" + ], + "aliases": [], + "acronyms": [ + "JLAED" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ecuador", + "country_code": "EC" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00363ea60.json b/v1.51/v1/00363ea60.json new file mode 100644 index 000000000..42facfc00 --- /dev/null +++ b/v1.51/v1/00363ea60.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00363ea60", + "name": "Serbian Sociological Association", + "email_address": null, + "ip_addresses": [], + "established": 1956, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ssd.org.rs" + ], + "aliases": [ + "Srpsko sociološko društvo", + "Српско социолошко друштво" + ], + "acronyms": [ + "SSA", + "SSD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9516 906X" + ], + "preferred": "0000 0004 9516 906X" + }, + "Wikidata": { + "all": [ + "Q110048606" + ], + "preferred": "Q110048606" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/003nx8950.json b/v1.51/v1/003nx8950.json new file mode 100644 index 000000000..294911d30 --- /dev/null +++ b/v1.51/v1/003nx8950.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/003nx8950", + "name": "BlackSky Global (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.60621, + "lng": -122.33207, + "state": null, + "state_code": null, + "city": "Seattle", + "geonames_city": { + "id": 5809844, + "city": "Seattle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.blacksky.com" + ], + "aliases": [ + "BlackSky Aerospace" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "BlackSky Global", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0046gcs23.json b/v1.51/v1/0046gcs23.json new file mode 100644 index 000000000..fba51bd40 --- /dev/null +++ b/v1.51/v1/0046gcs23.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/0046gcs23", + "name": "Max Planck Institute for Infection Biology", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Society", + "type": "Parent", + "id": "https://ror.org/01hhn8329" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.mpiib-berlin.mpg.de/2285/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Max_Planck_Institute_for_Infection_Biology", + "labels": [ + { + "label": "Max-Planck-Institut für Infektionsbiologie", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.418159.0", + "preferred": "grid.418159.0" + }, + "ISNI": { + "all": [ + "0000 0004 0491 2699" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1667439" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/004sb9k31.json b/v1.51/v1/004sb9k31.json new file mode 100644 index 000000000..d03024c4f --- /dev/null +++ b/v1.51/v1/004sb9k31.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/004sb9k31", + "name": "Universidad Tecnológica de Oriental", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.34778, + "lng": -97.58679, + "state": null, + "state_code": null, + "city": "Oriental", + "geonames_city": { + "id": 8583153, + "city": "Oriental", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://utdeoriental.edu.mx" + ], + "aliases": [ + "UTdeOriental" + ], + "acronyms": [ + "UTO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/004yv2z91.json b/v1.51/v1/004yv2z91.json new file mode 100644 index 000000000..89f63bb47 --- /dev/null +++ b/v1.51/v1/004yv2z91.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/004yv2z91", + "name": "Ping An (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.54554, + "lng": 114.0683, + "state": null, + "state_code": null, + "city": "Shenzhen", + "geonames_city": { + "id": 1795565, + "city": "Shenzhen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pingan.com" + ], + "aliases": [ + "China Ping An", + "中国平安", + "中国平安保险集团", + "平安金融" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Ping An", + "iso639": null + }, + { + "label": "中国平安保险(集团)股份有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/005dzvw93.json b/v1.51/v1/005dzvw93.json new file mode 100644 index 000000000..91157e20e --- /dev/null +++ b/v1.51/v1/005dzvw93.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/005dzvw93", + "name": "Zhipu AI (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.zhipuai.cn" + ], + "aliases": [ + "Beijing Knowledge Atlas Technology Co Ltd", + "Beijing Zhipu Huazhang Technology Co.", + "智谱ai" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Zhipu AI", + "iso639": null + }, + { + "label": "北京智谱华章科技有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/005p9kw61.json b/v1.51/v1/005p9kw61.json new file mode 100644 index 000000000..343cadc37 --- /dev/null +++ b/v1.51/v1/005p9kw61.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/005p9kw61", + "name": "New Mexico Institute of Mining and Technology", + "email_address": null, + "ip_addresses": [], + "established": 1889, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 34.0584, + "lng": -106.89142, + "state": null, + "state_code": null, + "city": "Socorro", + "geonames_city": { + "id": 5491999, + "city": "Socorro", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nmt.edu/" + ], + "aliases": [ + "New Mexico School of Mines", + "New Mexico Tech" + ], + "acronyms": [ + "NMIMT", + "NMT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/New_Mexico_Institute_of_Mining_and_Technology", + "labels": [ + { + "label": "École des mines du nouveau-mexique", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.39679.32", + "preferred": "grid.39679.32" + }, + "ISNI": { + "all": [ + "0000 0001 0724 9501" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1052208" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/005ypkf75.json b/v1.51/v1/005ypkf75.json new file mode 100644 index 000000000..2afc571f6 --- /dev/null +++ b/v1.51/v1/005ypkf75.json @@ -0,0 +1,148 @@ +{ + "id": "https://ror.org/005ypkf75", + "name": "University of Reunion Island", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Biologie Intégrée du Globule Rouge", + "type": "Child", + "id": "https://ror.org/048cbmc89" + }, + { + "label": "Laboratoire de l'Atmosphère et des Cyclones", + "type": "Child", + "id": "https://ror.org/03wsemq03" + }, + { + "label": "Observatoire des Sciences de l'Univers de la Réunion", + "type": "Child", + "id": "https://ror.org/05mv3tj33" + }, + { + "label": "Peuplements végétaux et bioagresseurs en milieu tropical", + "type": "Child", + "id": "https://ror.org/03mj14b52" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "Child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Écologie Marine Tropicale des Océans Pacifique et Indien", + "type": "Child", + "id": "https://ror.org/05kxt4539" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "Diabète athérothrombose et thérapies Réunion Océan Indien", + "type": "Child", + "id": "https://ror.org/02z3f5j48" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Centre d'Étude et de Découverte des Tortues Marines", + "type": "Related", + "id": "https://ror.org/01qwvz642" + } + ], + "addresses": [ + { + "lat": -20.88231, + "lng": 55.4504, + "state": null, + "state_code": null, + "city": "Saint-Denis", + "geonames_city": { + "id": 935264, + "city": "Saint-Denis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-reunion.fr/university-of-reunion-island/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_La_R%C3%A9union", + "labels": [ + { + "label": "Université de La Réunion", + "iso639": "fr" + } + ], + "country": { + "country_name": "Réunion", + "country_code": "RE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010465" + ], + "preferred": "501100010465" + }, + "GRID": { + "all": "grid.11642.30", + "preferred": "grid.11642.30" + }, + "ISNI": { + "all": [ + "0000 0001 2111 2608" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q834819" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0064kty71.json b/v1.51/v1/0064kty71.json new file mode 100644 index 000000000..4cb0642ea --- /dev/null +++ b/v1.51/v1/0064kty71.json @@ -0,0 +1,188 @@ +{ + "id": "https://ror.org/0064kty71", + "name": "Sun Yat-sen University", + "email_address": null, + "ip_addresses": [], + "established": 1924, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State Key Laboratory of Oncology in South China", + "type": "Child", + "id": "https://ror.org/04dn2ax39" + }, + { + "label": "State Key Laboratory of Ophthalmology", + "type": "Child", + "id": "https://ror.org/003mfbe21" + }, + { + "label": "State Key Laboratory of Optoelectronic Materials and Technology", + "type": "Child", + "id": "https://ror.org/010fszt18" + }, + { + "label": "State Key Laboratory of Pest Control and Resource Utilization", + "type": "Child", + "id": "https://ror.org/01bs5br94" + }, + { + "label": "Fifth Affiliated Hospital of Sun Yat-sen University", + "type": "Related", + "id": "https://ror.org/023te5r95" + }, + { + "label": "The First Affiliated Hospital, Sun Yat-sen University", + "type": "Related", + "id": "https://ror.org/037p24858" + }, + { + "label": "Hainan Eye Hospital", + "type": "Related", + "id": "https://ror.org/03k18qw23" + }, + { + "label": "SYSU-CMU International Joint Research Institute", + "type": "Related", + "id": "https://ror.org/02w30ae27" + }, + { + "label": "Shantou Central Hospital", + "type": "Related", + "id": "https://ror.org/04jmrra88" + }, + { + "label": "Sixth Affiliated Hospital of Sun Yat-sen University", + "type": "Related", + "id": "https://ror.org/005pe1772" + }, + { + "label": "Solar Energy Research Institute of Sun Yat-sen University", + "type": "Related", + "id": "https://ror.org/028kjem67" + }, + { + "label": "Sun Yat-sen Memorial Hospital", + "type": "Related", + "id": "https://ror.org/01px77p81" + }, + { + "label": "Sun Yat-sen University Cancer Center", + "type": "Related", + "id": "https://ror.org/0400g8r85" + }, + { + "label": "The Seventh Affiliated Hospital of Sun Yat-sen University", + "type": "Related", + "id": "https://ror.org/00rfd5b88" + }, + { + "label": "Third Affiliated Hospital of Sun Yat-sen University", + "type": "Related", + "id": "https://ror.org/04tm3k558" + }, + { + "label": "Hospital of Stomatology, Sun Yat-sen University", + "type": "Related", + "id": "https://ror.org/04bswr545" + }, + { + "label": "Eighth Affiliated Hospital of Sun Yat-sen University", + "type": "Related", + "id": "https://ror.org/00xjwyj62" + }, + { + "label": "Zhongshan Ophthalmic Center, Sun Yat-sen University", + "type": "Child", + "id": "https://ror.org/02z2yec16" + } + ], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sysu.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Sun_Yat-sen_University", + "labels": [ + { + "label": "中山大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002402" + ], + "preferred": null + }, + "GRID": { + "all": "grid.12981.33", + "preferred": "grid.12981.33" + }, + "ISNI": { + "all": [ + "0000 0001 2360 039X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q178972" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/006c9jk14.json b/v1.51/v1/006c9jk14.json new file mode 100644 index 000000000..41896e9ce --- /dev/null +++ b/v1.51/v1/006c9jk14.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/006c9jk14", + "name": "Zymergen (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.83132, + "lng": -122.28525, + "state": null, + "state_code": null, + "city": "Emeryville", + "geonames_city": { + "id": 5346462, + "city": "Emeryville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.zymergen.com" + ], + "aliases": [ + "Zymergen Bioinformatics", + "Zymergen Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Zymergen", + "labels": [ + { + "label": "Zymergen", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0078xmk34.json b/v1.51/v1/0078xmk34.json new file mode 100644 index 000000000..e6f90c8b3 --- /dev/null +++ b/v1.51/v1/0078xmk34.json @@ -0,0 +1,125 @@ +{ + "id": "https://ror.org/0078xmk34", + "name": "University of Montana", + "email_address": null, + "ip_addresses": [], + "established": 1893, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Montana Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/00x0rjj17" + }, + { + "label": "Montana University System", + "type": "Parent", + "id": "https://ror.org/052msxy68" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 46.87215, + "lng": -113.994, + "state": null, + "state_code": null, + "city": "Missoula", + "geonames_city": { + "id": 5666639, + "city": "Missoula", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umt.edu/" + ], + "aliases": [], + "acronyms": [ + "UM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Montana", + "labels": [ + { + "label": "Universidad de Montana", + "iso639": "es" + }, + { + "label": "Université du montana", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008524", + "100008525" + ], + "preferred": "100008524" + }, + "GRID": { + "all": "grid.253613.0", + "preferred": "grid.253613.0" + }, + "ISNI": { + "all": [ + "0000 0001 2192 5772" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2302336" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/007h1qz76.json b/v1.51/v1/007h1qz76.json new file mode 100644 index 000000000..24f6938a9 --- /dev/null +++ b/v1.51/v1/007h1qz76.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/007h1qz76", + "name": "Phramongkutklao Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1932, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Mahidol University", + "type": "Related", + "id": "https://ror.org/01znkr924" + }, + { + "label": "Phramongkutklao College of Medicine", + "type": "Related", + "id": "https://ror.org/04md5yc36" + } + ], + "addresses": [ + { + "lat": 13.75398, + "lng": 100.50144, + "state": null, + "state_code": null, + "city": "Bangkok", + "geonames_city": { + "id": 1609350, + "city": "Bangkok", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pmk.ac.th/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Phramongkutklao_Hospital", + "labels": [], + "country": { + "country_name": "Thailand", + "country_code": "TH" + }, + "external_ids": { + "GRID": { + "all": "grid.414965.b", + "preferred": "grid.414965.b" + }, + "ISNI": { + "all": [ + "0000 0004 0576 1212" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16138459" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/007v4hf75.json b/v1.51/v1/007v4hf75.json new file mode 100644 index 000000000..13419c4bd --- /dev/null +++ b/v1.51/v1/007v4hf75.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/007v4hf75", + "name": "VIT-AP University", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 16.29974, + "lng": 80.45729, + "state": null, + "state_code": null, + "city": "Guntur", + "geonames_city": { + "id": 1270668, + "city": "Guntur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vitap.ac.in" + ], + "aliases": [], + "acronyms": [ + "VITAP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q60748108" + ], + "preferred": "Q60748108" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/008khdx92.json b/v1.51/v1/008khdx92.json new file mode 100644 index 000000000..3a0fc5205 --- /dev/null +++ b/v1.51/v1/008khdx92.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/008khdx92", + "name": "Comerica (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.78306, + "lng": -96.80667, + "state": null, + "state_code": null, + "city": "Dallas", + "geonames_city": { + "id": 4684888, + "city": "Dallas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.comerica.com" + ], + "aliases": [ + "Comerica Bank", + "Comerica Inc", + "Comerica Incorporated" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Comerica", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0438 2739" + ], + "preferred": "0000 0004 0438 2739" + }, + "Wikidata": { + "all": [ + "Q1114148" + ], + "preferred": "Q1114148" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/008n78156.json b/v1.51/v1/008n78156.json new file mode 100644 index 000000000..c4120c0e2 --- /dev/null +++ b/v1.51/v1/008n78156.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/008n78156", + "name": "Laboratoire de neurosciences fonctionnelles et pathologies", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lnfp.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "LNFP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784106" + ], + "preferred": "Q51784106" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/008s47275.json b/v1.51/v1/008s47275.json new file mode 100644 index 000000000..4499e78a1 --- /dev/null +++ b/v1.51/v1/008s47275.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/008s47275", + "name": "Pratt & Whitney Rocketdyne (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.20112, + "lng": -118.59814, + "state": null, + "state_code": null, + "city": "Canoga Park", + "geonames_city": { + "id": 5333913, + "city": "Canoga Park", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Pratt and Whitney Rocketdyne" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pratt_%26_Whitney_Rocketdyne", + "labels": [ + { + "label": "Pratt & Whitney Rocketdyne", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q968710" + ], + "preferred": "Q968710" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/009ps8477.json b/v1.51/v1/009ps8477.json new file mode 100644 index 000000000..659c38949 --- /dev/null +++ b/v1.51/v1/009ps8477.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/009ps8477", + "name": "North Bohemian Museum in Liberec", + "email_address": null, + "ip_addresses": [], + "established": 1873, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.76711, + "lng": 15.05619, + "state": null, + "state_code": null, + "city": "Liberec", + "geonames_city": { + "id": 3071961, + "city": "Liberec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.muzeumlb.cz/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Severočeské muzeum v Liberci", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448241.f", + "preferred": "grid.448241.f" + }, + "ISNI": { + "all": [ + "0000 0001 2287 3345" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/009pwww24.json b/v1.51/v1/009pwww24.json new file mode 100644 index 000000000..a76775f33 --- /dev/null +++ b/v1.51/v1/009pwww24.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/009pwww24", + "name": "IFlyTek (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.86389, + "lng": 117.28083, + "state": null, + "state_code": null, + "city": "Hefei", + "geonames_city": { + "id": 1808722, + "city": "Hefei", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iflytek.com" + ], + "aliases": [ + "Anhui Ustc Iflytek Science and Technology Co Ltd", + "Iflytek Co Ltd", + "Keda Xunfei Co Ltd", + "科大讯飞" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "IFlyTek", + "iso639": null + }, + { + "label": "科大讯飞股份有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q4764375" + ], + "preferred": "Q4764375" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00a356y59.json b/v1.51/v1/00a356y59.json new file mode 100644 index 000000000..c9b394a92 --- /dev/null +++ b/v1.51/v1/00a356y59.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/00a356y59", + "name": "Sociedad Colombiana de Anestesiología y Reanimación", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://scare.org.co" + ], + "aliases": [], + "acronyms": [ + "SCARE" + ], + "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.51/v1/00abj3t43.json b/v1.51/v1/00abj3t43.json new file mode 100644 index 000000000..f4c7a50a7 --- /dev/null +++ b/v1.51/v1/00abj3t43.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00abj3t43", + "name": "Somerset NHS Foundation Trust", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Taunton & Somerset NHS Foundation Trust", + "type": "Predecessor", + "id": "https://ror.org/02y5f7327" + }, + { + "label": "Somerset Partnership NHS Foundation Trust", + "type": "Predecessor", + "id": "https://ror.org/05jt6pc28" + }, + { + "label": "Yeovil District Hospital NHS Foundation Trust", + "type": "Predecessor", + "id": "https://ror.org/00v5nyn36" + } + ], + "addresses": [ + { + "lat": 50.94159, + "lng": -2.63211, + "state": null, + "state_code": null, + "city": "Yeovil", + "geonames_city": { + "id": 2633373, + "city": "Yeovil", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.somersetft.nhs.uk" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Somerset_NHS_Foundation_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q96405998" + ], + "preferred": "Q96405998" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00ac5t267.json b/v1.51/v1/00ac5t267.json new file mode 100644 index 000000000..2ae90b5a1 --- /dev/null +++ b/v1.51/v1/00ac5t267.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00ac5t267", + "name": "Daimler (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1926, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Daimler (Germany)", + "type": "Parent", + "id": "https://ror.org/00m0j3d84" + }, + { + "label": "Mercedes-Benz (Germany)", + "type": "Successor", + "id": "https://ror.org/055rn2a38" + }, + { + "label": "Daimler Truck (Germany)", + "type": "Successor", + "id": "https://ror.org/049ahjd53" + } + ], + "addresses": [ + { + "lat": 51.81665, + "lng": -0.81458, + "state": null, + "state_code": null, + "city": "Aylesbury", + "geonames_city": { + "id": 2656719, + "city": "Aylesbury", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.daimler.com/en/" + ], + "aliases": [ + "Daimler-Benz", + "DaimlerChrysler" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Daimler_AG", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.505589.4", + "preferred": "grid.505589.4" + }, + "Wikidata": { + "all": [ + "Q64143144" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00bc02b32.json b/v1.51/v1/00bc02b32.json new file mode 100644 index 000000000..233a7b723 --- /dev/null +++ b/v1.51/v1/00bc02b32.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00bc02b32", + "name": "AutoZone (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.14953, + "lng": -90.04898, + "state": null, + "state_code": null, + "city": "Memphis", + "geonames_city": { + "id": 4641239, + "city": "Memphis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.autozone.com" + ], + "aliases": [ + "Autozone Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "AutoZone", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00c319182.json b/v1.51/v1/00c319182.json new file mode 100644 index 000000000..9bb534101 --- /dev/null +++ b/v1.51/v1/00c319182.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00c319182", + "name": "The Society of Occupational Medicine", + "email_address": null, + "ip_addresses": [], + "established": 1935, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.som.org.uk" + ], + "aliases": [ + "Society of Occupational Medicine" + ], + "acronyms": [ + "SOM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q120043570" + ], + "preferred": "Q120043570" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00cb23x68.json b/v1.51/v1/00cb23x68.json new file mode 100644 index 000000000..f7a4bb722 --- /dev/null +++ b/v1.51/v1/00cb23x68.json @@ -0,0 +1,135 @@ +{ + "id": "https://ror.org/00cb23x68", + "name": "Kwame Nkrumah University of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "All Nations University", + "type": "Child", + "id": "https://ror.org/00cdwva22" + }, + { + "label": "University College of Management Studies", + "type": "Child", + "id": "https://ror.org/01jthvx19" + }, + { + "label": "Accra Institute of Technology", + "type": "Related", + "id": "https://ror.org/03ajsbp04" + }, + { + "label": "Komfo Anokye Teaching Hospital", + "type": "Related", + "id": "https://ror.org/05ks08368" + }, + { + "label": "St. Joseph's College of Education", + "type": "Related", + "id": "https://ror.org/05ba8sq03" + }, + { + "label": "Akrokerri College of Education", + "type": "Related", + "id": "https://ror.org/00w49ww42" + }, + { + "label": "Wesley College of Education", + "type": "Related", + "id": "https://ror.org/02yv7k107" + }, + { + "label": "Lakeside University College Ghana", + "type": "Related", + "id": "https://ror.org/03qn3zw06" + } + ], + "addresses": [ + { + "lat": 6.68848, + "lng": -1.62443, + "state": null, + "state_code": null, + "city": "Kumasi", + "geonames_city": { + "id": 2298890, + "city": "Kumasi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.knust.edu.gh/" + ], + "aliases": [], + "acronyms": [ + "KNUST" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Kwame_Nkrumah_University_of_Science_and_Technology", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100012015" + ], + "preferred": "501100012015" + }, + "GRID": { + "all": "grid.9829.a", + "preferred": "grid.9829.a" + }, + "ISNI": { + "all": [ + "0000 0001 0946 6120" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1654025" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00cvxb145.json b/v1.51/v1/00cvxb145.json new file mode 100644 index 000000000..d9e6477f5 --- /dev/null +++ b/v1.51/v1/00cvxb145.json @@ -0,0 +1,218 @@ +{ + "id": "https://ror.org/00cvxb145", + "name": "University of Washington", + "email_address": null, + "ip_addresses": [], + "established": 1861, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Effective Global Action", + "type": "Child", + "id": "https://ror.org/03djjyk45" + }, + { + "label": "Harborview Injury Prevention and Research Center", + "type": "Child", + "id": "https://ror.org/0394z0v14" + }, + { + "label": "Health Alliance International", + "type": "Child", + "id": "https://ror.org/022c13n15" + }, + { + "label": "Seattle Epidemiologic Information and Research Center", + "type": "Child", + "id": "https://ror.org/0155sw530" + }, + { + "label": "University of Washington Applied Physics Laboratory", + "type": "Child", + "id": "https://ror.org/03d17d270" + }, + { + "label": "Washington Sea Grant", + "type": "Child", + "id": "https://ror.org/047fr0y29" + }, + { + "label": "Washington Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/01bfczx74" + }, + { + "label": "Friday Harbor Laboratories", + "type": "Child", + "id": "https://ror.org/052w21a87" + }, + { + "label": "Harborview Medical Center", + "type": "Related", + "id": "https://ror.org/059jq5127" + }, + { + "label": "Kootenai Medical Center", + "type": "Related", + "id": "https://ror.org/0513nfd47" + }, + { + "label": "Northwest Hospital and Medical Center", + "type": "Related", + "id": "https://ror.org/02eypkr92" + }, + { + "label": "Seattle Children's Hospital", + "type": "Related", + "id": "https://ror.org/01njes783" + }, + { + "label": "University of Washington Medical Center", + "type": "Related", + "id": "https://ror.org/00wbzw723" + }, + { + "label": "VA Puget Sound Health Care System", + "type": "Related", + "id": "https://ror.org/00ky3az31" + }, + { + "label": "Valley Medical Center", + "type": "Related", + "id": "https://ror.org/01vjngb81" + }, + { + "label": "Washington Research Foundation", + "type": "Related", + "id": "https://ror.org/00hasdx88" + }, + { + "label": "Ocean Observatories Initiative", + "type": "Related", + "id": "https://ror.org/00vnfmn19" + }, + { + "label": "Fred Hutchinson/University of Washington/Seattle Children’s Cancer Consortium", + "type": "Related", + "id": "https://ror.org/018da3y22" + }, + { + "label": "Atlas of Variant Effects Alliance", + "type": "Related", + "id": "https://ror.org/00p2ftz29" + }, + { + "label": "University of Washington Bothell", + "type": "Child", + "id": "https://ror.org/02ygzhr13" + }, + { + "label": "University of Washington Tacoma", + "type": "Child", + "id": "https://ror.org/05n8t2628" + } + ], + "addresses": [ + { + "lat": 47.60621, + "lng": -122.33207, + "state": null, + "state_code": null, + "city": "Seattle", + "geonames_city": { + "id": 5809844, + "city": "Seattle", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.washington.edu/" + ], + "aliases": [], + "acronyms": [ + "UW" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Washington", + "labels": [ + { + "label": "Universidad de Washington", + "iso639": "es" + }, + { + "label": "Université de Washington", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007812", + "100010500", + "100008342", + "100008244", + "100008142", + "100009542", + "100009037", + "100007813", + "100012485", + "100013350" + ], + "preferred": "100007812" + }, + "GRID": { + "all": "grid.34477.33", + "preferred": "grid.34477.33" + }, + "ISNI": { + "all": [ + "0000 0001 2298 6657" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q219563" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00d0nc645.json b/v1.51/v1/00d0nc645.json new file mode 100644 index 000000000..33d8c9679 --- /dev/null +++ b/v1.51/v1/00d0nc645.json @@ -0,0 +1,207 @@ +{ + "id": "https://ror.org/00d0nc645", + "name": "Microsoft (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "LinkedIn (United States)", + "type": "Child", + "id": "https://ror.org/02fyxhe35" + }, + { + "label": "Microsoft (Belgium)", + "type": "Child", + "id": "https://ror.org/05168yk81" + }, + { + "label": "Microsoft (Brazil)", + "type": "Child", + "id": "https://ror.org/00hc2mf91" + }, + { + "label": "Microsoft (Canada)", + "type": "Child", + "id": "https://ror.org/04xhxg104" + }, + { + "label": "Microsoft (Denmark)", + "type": "Child", + "id": "https://ror.org/015drfm81" + }, + { + "label": "Microsoft (Finland)", + "type": "Child", + "id": "https://ror.org/01nehjf29" + }, + { + "label": "Microsoft (France)", + "type": "Child", + "id": "https://ror.org/0521n7n83" + }, + { + "label": "Microsoft (Germany)", + "type": "Child", + "id": "https://ror.org/001dd4s60" + }, + { + "label": "Microsoft (India)", + "type": "Child", + "id": "https://ror.org/04ww0w091" + }, + { + "label": "Microsoft (Ireland)", + "type": "Child", + "id": "https://ror.org/017fqk185" + }, + { + "label": "Microsoft (Israel)", + "type": "Child", + "id": "https://ror.org/03819cc96" + }, + { + "label": "Microsoft (Netherlands)", + "type": "Child", + "id": "https://ror.org/01x21tj82" + }, + { + "label": "Microsoft (Norway)", + "type": "Child", + "id": "https://ror.org/03jtz4s80" + }, + { + "label": "Microsoft (Portugal)", + "type": "Child", + "id": "https://ror.org/00eqfbw40" + }, + { + "label": "Microsoft (Switzerland)", + "type": "Child", + "id": "https://ror.org/03zryq964" + }, + { + "label": "Microsoft (United Kingdom)", + "type": "Child", + "id": "https://ror.org/01rw27z95" + }, + { + "label": "Microsoft Research (India)", + "type": "Child", + "id": "https://ror.org/02w7f3w92" + }, + { + "label": "Microsoft Research (United Kingdom)", + "type": "Child", + "id": "https://ror.org/05k87vq12" + }, + { + "label": "Microsoft Research Asia (China)", + "type": "Child", + "id": "https://ror.org/0300m5276" + }, + { + "label": "Ninja Theory (United Kingdom)", + "type": "Child", + "id": "https://ror.org/04xrsn650" + }, + { + "label": "Microsoft Research New England (United States)", + "type": "Child", + "id": "https://ror.org/010wkqn50" + }, + { + "label": "Microsoft Research New York City (United States)", + "type": "Child", + "id": "https://ror.org/056zprp28" + } + ], + "addresses": [ + { + "lat": 47.67399, + "lng": -122.12151, + "state": null, + "state_code": null, + "city": "Redmond", + "geonames_city": { + "id": 5808079, + "city": "Redmond", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.microsoft.com/en-us" + ], + "aliases": [ + "Microsoft Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Microsoft", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100004318", + "100006112" + ], + "preferred": "100004318" + }, + "GRID": { + "all": "grid.419815.0", + "preferred": "grid.419815.0" + }, + "ISNI": { + "all": [ + "0000 0001 2181 3404" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2283", + "Q47462228" + ], + "preferred": "Q2283" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00d7mgz29.json b/v1.51/v1/00d7mgz29.json new file mode 100644 index 000000000..44e170f40 --- /dev/null +++ b/v1.51/v1/00d7mgz29.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/00d7mgz29", + "name": "Paramount Global (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.paramount.com" + ], + "aliases": [ + "Paramount", + "ViacomCBS", + "ViacomCBS Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Paramount Global", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q927134" + ], + "preferred": "Q927134" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00davry38.json b/v1.51/v1/00davry38.json new file mode 100644 index 000000000..4f23e9887 --- /dev/null +++ b/v1.51/v1/00davry38.json @@ -0,0 +1,154 @@ +{ + "id": "https://ror.org/00davry38", + "name": "Tecnológico Nacional de México", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Instituto Tecnológico de Boca del Río", + "type": "Child", + "id": "https://ror.org/0302jbz39" + }, + { + "label": "Instituto Tecnológico Superior de Los Reyes", + "type": "Child", + "id": "https://ror.org/05p299b07" + }, + { + "label": "Instituto Tecnológico de La Paz", + "type": "Child", + "id": "https://ror.org/0460tzy11" + }, + { + "label": "Instituto Tecnológico de San Luis Potosí", + "type": "Child", + "id": "https://ror.org/04w0a0617" + }, + { + "label": "Instituto Tecnólogico de La Laguna", + "type": "Child", + "id": "https://ror.org/00xbw4a70" + }, + { + "label": "Instituto Tecnológico Superior Zacatecas Norte", + "type": "Child", + "id": "https://ror.org/01nq33970" + }, + { + "label": "Instituto Tecnológico Superior de Loreto", + "type": "Child", + "id": "https://ror.org/03dgrff29" + }, + { + "label": "Secretariat of Public Education", + "type": "Parent", + "id": "https://ror.org/02e1c4h55" + }, + { + "label": "Instituto Tecnológico Superior de Atlixco", + "type": "Child", + "id": "https://ror.org/01brjce02" + }, + { + "label": "Instituto Tecnologico Superior de Misantla", + "type": "Child", + "id": "https://ror.org/03t5a9538" + }, + { + "label": "Instituto Tecnológico Superior de Acatlán de Osorio", + "type": "Child", + "id": "https://ror.org/04zjhw235" + }, + { + "label": "Instituto Tecnológico de Ciudad Guzmán", + "type": "Child", + "id": "https://ror.org/01d6p8r58" + } + ], + "addresses": [ + { + "lat": 19.42847, + "lng": -99.12766, + "state": null, + "state_code": null, + "city": "Mexico City", + "geonames_city": { + "id": 3530597, + "city": "Mexico City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tecnm.mx" + ], + "aliases": [], + "acronyms": [ + "TecNM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Technological Institute of Mexico", + "iso639": "en" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012725" + ], + "preferred": "100012725" + }, + "GRID": { + "all": "grid.484694.3", + "preferred": "grid.484694.3" + }, + "ISNI": { + "all": [ + "0000 0004 5988 7021" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00dv28z40.json b/v1.51/v1/00dv28z40.json new file mode 100644 index 000000000..252144079 --- /dev/null +++ b/v1.51/v1/00dv28z40.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00dv28z40", + "name": "Nobel International Business School", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 5.55602, + "lng": -0.1969, + "state": null, + "state_code": null, + "city": "Accra", + "geonames_city": { + "id": 2306104, + "city": "Accra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nibs.edu.gh" + ], + "aliases": [], + "acronyms": [ + "NiBS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4684 070X" + ], + "preferred": "0000 0004 4684 070X" + }, + "Wikidata": { + "all": [ + "Q125761957" + ], + "preferred": "Q125761957" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00e2ydp85.json b/v1.51/v1/00e2ydp85.json new file mode 100644 index 000000000..06c640142 --- /dev/null +++ b/v1.51/v1/00e2ydp85.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00e2ydp85", + "name": "NeuroInDx (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.83585, + "lng": -118.34063, + "state": null, + "state_code": null, + "city": "Torrance", + "geonames_city": { + "id": 5403022, + "city": "Torrance", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ndx-instruments.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.422520.3", + "preferred": "grid.422520.3" + }, + "Wikidata": { + "all": [ + "Q30283767" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00ee9xb13.json b/v1.51/v1/00ee9xb13.json new file mode 100644 index 000000000..5feb95316 --- /dev/null +++ b/v1.51/v1/00ee9xb13.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00ee9xb13", + "name": "Fafo Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "The Fafo Institute for Labour and Social Research", + "type": "Child", + "id": "https://ror.org/0286hg268" + } + ], + "addresses": [ + { + "lat": 59.91273, + "lng": 10.74609, + "state": null, + "state_code": null, + "city": "Oslo", + "geonames_city": { + "id": 3143244, + "city": "Oslo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.fafo.no/index.php/nb/" + ], + "aliases": [ + "Fafo", + "Fafo Research Foundation", + "Forskningsstiftelsen Fafo" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Fafo_Foundation", + "labels": [], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "GRID": { + "all": "grid.425072.6", + "preferred": "grid.425072.6" + }, + "ISNI": { + "all": [ + "0000 0000 8504 0730" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5429350" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00f2yqf98.json b/v1.51/v1/00f2yqf98.json new file mode 100644 index 000000000..bfb06b247 --- /dev/null +++ b/v1.51/v1/00f2yqf98.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/00f2yqf98", + "name": "Medizinische Hochschule Hannover", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre for Individualised Infection Medicine", + "type": "Child", + "id": "https://ror.org/04s99xz91" + }, + { + "label": "Centre for Structural Systems Biology", + "type": "Child", + "id": "https://ror.org/04fhwda97" + }, + { + "label": "KRH Klinikum Nordstadt", + "type": "Related", + "id": "https://ror.org/00tq6rn55" + }, + { + "label": "CAIMed - Niedersächsisches Zentrum für KI und Kausale Methoden in der Medizin", + "type": "Related", + "id": "https://ror.org/04n901n71" + } + ], + "addresses": [ + { + "lat": 52.37052, + "lng": 9.73322, + "state": null, + "state_code": null, + "city": "Hanover", + "geonames_city": { + "id": 2910831, + "city": "Hanover", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mhh.de" + ], + "aliases": [ + "Med. HS Hannover" + ], + "acronyms": [ + "MHH" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Hannover_Medical_School", + "labels": [ + { + "label": "Hannover Medical School", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005624" + ], + "preferred": null + }, + "GRID": { + "all": "grid.10423.34", + "preferred": "grid.10423.34" + }, + "ISNI": { + "all": [ + "0000 0000 9529 9877" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q911561" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00fbnyb24.json b/v1.51/v1/00fbnyb24.json new file mode 100644 index 000000000..c231a1f17 --- /dev/null +++ b/v1.51/v1/00fbnyb24.json @@ -0,0 +1,131 @@ +{ + "id": "https://ror.org/00fbnyb24", + "name": "University of Würzburg", + "email_address": null, + "ip_addresses": [], + "established": 1402, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Bavarian Polymer Institute", + "type": "Child", + "id": "https://ror.org/054zwas39" + }, + { + "label": "Complexity and Topology in Quantum Matter", + "type": "Child", + "id": "https://ror.org/00kkpv737" + }, + { + "label": "Comprehensive Cancer Center Mainfranken", + "type": "Child", + "id": "https://ror.org/013tmk464" + }, + { + "label": "Klinikum Coburg", + "type": "Related", + "id": "https://ror.org/02d1rkr63" + }, + { + "label": "Universitätsklinikum Würzburg", + "type": "Related", + "id": "https://ror.org/03pvr2g57" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 49.79391, + "lng": 9.95121, + "state": null, + "state_code": null, + "city": "Würzburg", + "geonames_city": { + "id": 2805615, + "city": "Würzburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uni-wuerzburg.de/en/ueber/university/" + ], + "aliases": [ + "Julius Maximilian University of Würzburg" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_W%C3%BCrzburg", + "labels": [ + { + "label": "Julius-Maximilians-Universität Würzburg", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008769", + "501100009379" + ], + "preferred": "501100008769" + }, + "GRID": { + "all": "grid.8379.5", + "preferred": "grid.8379.5" + }, + "ISNI": { + "all": [ + "0000 0001 1958 8658" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q161976" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00ffxmn68.json b/v1.51/v1/00ffxmn68.json new file mode 100644 index 000000000..e997be45b --- /dev/null +++ b/v1.51/v1/00ffxmn68.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00ffxmn68", + "name": "Fox Corporation (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.foxcorporation.com" + ], + "aliases": [ + "TFCF Corp" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fox Corporation", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00fjt5570.json b/v1.51/v1/00fjt5570.json new file mode 100644 index 000000000..8dcd2c2e0 --- /dev/null +++ b/v1.51/v1/00fjt5570.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00fjt5570", + "name": "Best Buy (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.04852, + "lng": -114.15559, + "state": null, + "state_code": null, + "city": "Richfield", + "geonames_city": { + "id": 5605298, + "city": "Richfield", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bestbuy.com" + ], + "aliases": [ + "Best Buy Co Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Best Buy", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100021771" + ], + "preferred": "100021771" + }, + "ISNI": { + "all": [ + "0000 0005 1229 6774" + ], + "preferred": "0000 0005 1229 6774" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00fxxw604.json b/v1.51/v1/00fxxw604.json new file mode 100644 index 000000000..c44be1ef6 --- /dev/null +++ b/v1.51/v1/00fxxw604.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00fxxw604", + "name": "Ministry of Culture", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Museum of Glass and Jewellery in Jablonec nad Nisou", + "type": "Child", + "id": "https://ror.org/01nvq4081" + } + ], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.mkcr.cz/en/" + ], + "aliases": [ + "Ministerstvo Kultury České Republiky" + ], + "acronyms": [ + "MKČR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Culture_(Czech_Republic)", + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005619" + ], + "preferred": null + }, + "GRID": { + "all": "grid.454194.9", + "preferred": "grid.454194.9" + }, + "Wikidata": { + "all": [ + "Q6866715" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00hbd6420.json b/v1.51/v1/00hbd6420.json new file mode 100644 index 000000000..5d622d799 --- /dev/null +++ b/v1.51/v1/00hbd6420.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00hbd6420", + "name": "Spotify (Sweden)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.32938, + "lng": 18.06871, + "state": null, + "state_code": null, + "city": "Stockholm", + "geonames_city": { + "id": 2673730, + "city": "Stockholm", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.spotify.com" + ], + "aliases": [ + "Spotify Technology", + "Spotify Technology S.A." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Spotify", + "iso639": null + } + ], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0494 6722" + ], + "preferred": "0000 0005 0494 6722" + }, + "Wikidata": { + "all": [ + "Q60269744" + ], + "preferred": "Q60269744" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00hjhrf26.json b/v1.51/v1/00hjhrf26.json new file mode 100644 index 000000000..9edf19ed8 --- /dev/null +++ b/v1.51/v1/00hjhrf26.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/00hjhrf26", + "name": "European Research University, z.ú", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.77984, + "lng": 18.43688, + "state": null, + "state_code": null, + "city": "Havířov", + "geonames_city": { + "id": 3075921, + "city": "Havířov", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vs-prigo.cz" + ], + "aliases": [ + "European Research University", + "Vysoká škola PRIGO" + ], + "acronyms": [ + "ERUNI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Evropská výzkumná univerzita, z.ú.", + "iso639": "cs" + }, + { + "label": "Vysoká škola PRIGO, z. ú.", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00hpz7z43.json b/v1.51/v1/00hpz7z43.json new file mode 100644 index 000000000..d53435536 --- /dev/null +++ b/v1.51/v1/00hpz7z43.json @@ -0,0 +1,145 @@ +{ + "id": "https://ror.org/00hpz7z43", + "name": "New Mexico State University", + "email_address": null, + "ip_addresses": [], + "established": 1888, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "New Mexico Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/00nr2vg89" + }, + { + "label": "New Mexico State University Carlsbad", + "type": "Child", + "id": "https://ror.org/01kbvt179" + }, + { + "label": "New Mexico State University Grants", + "type": "Child", + "id": "https://ror.org/035k7dd86" + }, + { + "label": "San Juan College", + "type": "Child", + "id": "https://ror.org/041jmaw90" + }, + { + "label": "Jornada Basin Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/05976ta47" + }, + { + "label": "New Mexico State University Alamogordo", + "type": "Child", + "id": "https://ror.org/007sts724" + }, + { + "label": "Agricultural Experiment Station", + "type": "Child", + "id": "https://ror.org/009q0jm69" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 32.31232, + "lng": -106.77834, + "state": null, + "state_code": null, + "city": "Las Cruces", + "geonames_city": { + "id": 5475352, + "city": "Las Cruces", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nmsu.edu/" + ], + "aliases": [], + "acronyms": [ + "NMSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/New_Mexico_State_University", + "labels": [ + { + "label": "Universidad Estatal de Nuevo México", + "iso639": "es" + }, + { + "label": "Université d'État du nouveau-mexique", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100009611" + ], + "preferred": null + }, + "GRID": { + "all": "grid.24805.3b", + "preferred": "grid.24805.3b" + }, + "ISNI": { + "all": [ + "0000 0001 0687 2182", + "0000 0001 0941 243X" + ], + "preferred": "0000 0001 0941 243X" + }, + "Wikidata": { + "all": [ + "Q1353248" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00j5bqf83.json b/v1.51/v1/00j5bqf83.json new file mode 100644 index 000000000..8db30ad11 --- /dev/null +++ b/v1.51/v1/00j5bqf83.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00j5bqf83", + "name": "Nucor (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.22709, + "lng": -80.84313, + "state": null, + "state_code": null, + "city": "Charlotte", + "geonames_city": { + "id": 4460243, + "city": "Charlotte", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nucor.com" + ], + "aliases": [ + "Nucor Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Nucor", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00jcbwz30.json b/v1.51/v1/00jcbwz30.json new file mode 100644 index 000000000..5a21eeb32 --- /dev/null +++ b/v1.51/v1/00jcbwz30.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00jcbwz30", + "name": "Huntington Ingalls Industries (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.98038, + "lng": -76.42975, + "state": null, + "state_code": null, + "city": "Newport News", + "geonames_city": { + "id": 4776024, + "city": "Newport News", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://huntingtoningalls.com" + ], + "aliases": [ + "Huntington Ingalls Industries Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Huntington Ingalls Industries", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00jmfr291.json b/v1.51/v1/00jmfr291.json new file mode 100644 index 000000000..d004e1a18 --- /dev/null +++ b/v1.51/v1/00jmfr291.json @@ -0,0 +1,174 @@ +{ + "id": "https://ror.org/00jmfr291", + "name": "University of Michigan–Ann Arbor", + "email_address": null, + "ip_addresses": [], + "established": 1817, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Michigan Sea Grant", + "type": "Child", + "id": "https://ror.org/015tnsz82" + }, + { + "label": "Michigan Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/057mgcy61" + }, + { + "label": "University of Michigan–Dearborn", + "type": "Child", + "id": "https://ror.org/035wtm547" + }, + { + "label": "University of Michigan–Flint", + "type": "Child", + "id": "https://ror.org/01c3xc117" + }, + { + "label": "Inter-university Consortium for Political and Social Research", + "type": "Child", + "id": "https://ror.org/02q7mkh03" + }, + { + "label": "University of Michigan Press", + "type": "Child", + "id": "https://ror.org/00rx1p510" + }, + { + "label": "University of Michigan Biological Station", + "type": "Child", + "id": "https://ror.org/02hhndj92" + }, + { + "label": "Hurley Medical Center", + "type": "Related", + "id": "https://ror.org/034npj057" + }, + { + "label": "Michigan Medicine", + "type": "Related", + "id": "https://ror.org/01zcpa714" + }, + { + "label": "Arctic Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/04pk7zz41" + } + ], + "addresses": [ + { + "lat": 42.27756, + "lng": -83.74088, + "state": null, + "state_code": null, + "city": "Ann Arbor", + "geonames_city": { + "id": 4984247, + "city": "Ann Arbor", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umich.edu" + ], + "aliases": [ + "UMich" + ], + "acronyms": [ + "UM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Michigan", + "labels": [ + { + "label": "University of Michigan", + "iso639": "en" + }, + { + "label": "Université du Michigan", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007270", + "100008192", + "100006790", + "100006801", + "100008269", + "100005953", + "100008455", + "100008456", + "100006652", + "100008115", + "100005993", + "100009539", + "100005543", + "100005949", + "100008557", + "100006416", + "100005476", + "100011232" + ], + "preferred": "100007270" + }, + "GRID": { + "all": "grid.214458.e", + "preferred": "grid.214458.e" + }, + "ISNI": { + "all": [ + "0000 0000 8683 7370", + "0000 0004 1936 7347" + ], + "preferred": "0000 0004 1936 7347" + }, + "Wikidata": { + "all": [ + "Q230492" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00jz07n34.json b/v1.51/v1/00jz07n34.json new file mode 100644 index 000000000..a2fdae31d --- /dev/null +++ b/v1.51/v1/00jz07n34.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00jz07n34", + "name": "South Petherton Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.94829, + "lng": -2.80708, + "state": null, + "state_code": null, + "city": "South Petherton", + "geonames_city": { + "id": 2637347, + "city": "South Petherton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/south-petherton-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.439449.7", + "preferred": "grid.439449.7" + }, + "Wikidata": { + "all": [ + "Q30292874" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00ksf6k80.json b/v1.51/v1/00ksf6k80.json new file mode 100644 index 000000000..2a2417a39 --- /dev/null +++ b/v1.51/v1/00ksf6k80.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00ksf6k80", + "name": "Darden Restaurants (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.53834, + "lng": -81.37924, + "state": null, + "state_code": null, + "city": "Orlando", + "geonames_city": { + "id": 4167147, + "city": "Orlando", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.darden.com" + ], + "aliases": [ + "Darden Restaurants Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Darden Restaurants", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00kzhpn90.json b/v1.51/v1/00kzhpn90.json new file mode 100644 index 000000000..47fa08397 --- /dev/null +++ b/v1.51/v1/00kzhpn90.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/00kzhpn90", + "name": "Keycorp (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.4995, + "lng": -81.69541, + "state": null, + "state_code": null, + "city": "Cleveland", + "geonames_city": { + "id": 5150529, + "city": "Cleveland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.key.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Keycorp", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00m0j3d84.json b/v1.51/v1/00m0j3d84.json new file mode 100644 index 000000000..57915cfd5 --- /dev/null +++ b/v1.51/v1/00m0j3d84.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/00m0j3d84", + "name": "Daimler (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Daimler (Japan)", + "type": "Child", + "id": "https://ror.org/04hc84p76" + }, + { + "label": "Daimler (United Kingdom)", + "type": "Child", + "id": "https://ror.org/00ac5t267" + }, + { + "label": "Daimler (United States)", + "type": "Child", + "id": "https://ror.org/05angxc35" + }, + { + "label": "Daimler Center for Automotive Information Technology Innovations", + "type": "Child", + "id": "https://ror.org/048d5b075" + }, + { + "label": "Mercedes-Benz (Germany)", + "type": "Successor", + "id": "https://ror.org/055rn2a38" + } + ], + "addresses": [ + { + "lat": 48.78232, + "lng": 9.17702, + "state": null, + "state_code": null, + "city": "Stuttgart", + "geonames_city": { + "id": 2825297, + "city": "Stuttgart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.daimler.com/" + ], + "aliases": [ + "Daimler-Benz", + "DaimlerChrysler" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/Daimler_AG", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.5433.1", + "preferred": "grid.5433.1" + }, + "ISNI": { + "all": [ + "0000 0001 2316 4305" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q27530" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00mbeqy34.json b/v1.51/v1/00mbeqy34.json new file mode 100644 index 000000000..c1a9c137b --- /dev/null +++ b/v1.51/v1/00mbeqy34.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/00mbeqy34", + "name": "Cabio Biotech (Wuhan) Biotechnology Co. Ltd (China)", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.58333, + "lng": 114.26667, + "state": null, + "state_code": null, + "city": "Wuhan", + "geonames_city": { + "id": 1791247, + "city": "Wuhan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cabio.cn" + ], + "aliases": [ + "CABIO", + "Cabio Biotech (Wuhan) Biotechnology", + "Cabio Biotech (Wuhan) Biotechnology Co.", + "嘉必优" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cabio Biotech (Wuhan) Biotechnology Co. Ltd", + "iso639": "en" + }, + { + "label": "嘉必优生物技术(武汉)股份有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00mwq1g96.json b/v1.51/v1/00mwq1g96.json new file mode 100644 index 000000000..467b3879d --- /dev/null +++ b/v1.51/v1/00mwq1g96.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00mwq1g96", + "name": "Hartford Financial Services (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.76371, + "lng": -72.68509, + "state": null, + "state_code": null, + "city": "Hartford", + "geonames_city": { + "id": 4835797, + "city": "Hartford", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.thehartford.com" + ], + "aliases": [ + "Hartford Financial Services Group Inc", + "Hartford Investment Management Co.", + "The Hartford", + "The Hartford Financial Services Group Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Hartford Financial Services", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0610 3625" + ], + "preferred": "0000 0004 0610 3625" + }, + "Wikidata": { + "all": [ + "Q444110" + ], + "preferred": "Q444110" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00n16p182.json b/v1.51/v1/00n16p182.json new file mode 100644 index 000000000..61995e838 --- /dev/null +++ b/v1.51/v1/00n16p182.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/00n16p182", + "name": "Martin Marietta Materials (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.7721, + "lng": -78.63861, + "state": null, + "state_code": null, + "city": "Raleigh", + "geonames_city": { + "id": 4487042, + "city": "Raleigh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.martinmarietta.com" + ], + "aliases": [ + "Martin Marietta", + "Martin Marietta Materials Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Martin Marietta Materials", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00n6tv709.json b/v1.51/v1/00n6tv709.json new file mode 100644 index 000000000..ef641103c --- /dev/null +++ b/v1.51/v1/00n6tv709.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/00n6tv709", + "name": "Guidedwave (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.91339, + "lng": -77.77833, + "state": null, + "state_code": null, + "city": "Bellefonte", + "geonames_city": { + "id": 5179799, + "city": "Bellefonte", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gwultrasonics.com" + ], + "aliases": [ + "FBS", + "FBS, Inc. d.b.a. Guidedwave", + "Feature Based Systems Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "FBS, Inc.", + "iso639": "en" + }, + { + "label": "Guidedwave", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.455529.a", + "preferred": "grid.455529.a" + }, + "ISNI": { + "all": [ + "0000 0004 0580 8834" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00nb55479.json b/v1.51/v1/00nb55479.json new file mode 100644 index 000000000..bbe362276 --- /dev/null +++ b/v1.51/v1/00nb55479.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00nb55479", + "name": "Universidad Tecnológica de Manzanillo", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.10856, + "lng": -104.31351, + "state": null, + "state_code": null, + "city": "Manzanillo", + "geonames_city": { + "id": 8581706, + "city": "Manzanillo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://utem.edu.mx" + ], + "aliases": [], + "acronyms": [ + "UTEM" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Tecnol%C3%B3gica_de_Manzanillo", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0513 3435" + ], + "preferred": "0000 0004 0513 3435" + }, + "Wikidata": { + "all": [ + "Q6156707" + ], + "preferred": "Q6156707" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00pd74e08.json b/v1.51/v1/00pd74e08.json new file mode 100644 index 000000000..3ef25379b --- /dev/null +++ b/v1.51/v1/00pd74e08.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/00pd74e08", + "name": "University of Münster", + "email_address": null, + "ip_addresses": [], + "established": 1780, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University Hospital Münster", + "type": "Related", + "id": "https://ror.org/01856cw59" + }, + { + "label": "European Research Center for Information Systems", + "type": "Related", + "id": "https://ror.org/032a28f65" + } + ], + "addresses": [ + { + "lat": 51.96236, + "lng": 7.62571, + "state": null, + "state_code": null, + "city": "Münster", + "geonames_city": { + "id": 2867543, + "city": "Münster", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni-muenster.de" + ], + "aliases": [ + "Universitaet Muenster", + "University of Muenster", + "Westfälische Wilhelms-Universität Münster" + ], + "acronyms": [ + "UM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_M%C3%BCnster", + "labels": [ + { + "label": "Universität Münster", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004869", + "501100004870" + ], + "preferred": "501100004869" + }, + "GRID": { + "all": "grid.5949.1", + "preferred": "grid.5949.1" + }, + "ISNI": { + "all": [ + "0000 0001 2172 9288" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q168426" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00q580v32.json b/v1.51/v1/00q580v32.json new file mode 100644 index 000000000..894bbccf7 --- /dev/null +++ b/v1.51/v1/00q580v32.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00q580v32", + "name": "Reactive Innovations (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Skyhaven Systems (United States)", + "type": "Successor", + "id": "https://ror.org/04j7dh318" + } + ], + "addresses": [ + { + "lat": 42.57926, + "lng": -71.43784, + "state": null, + "state_code": null, + "city": "Westford", + "geonames_city": { + "id": 4955219, + "city": "Westford", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.reactive-innovations.com" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.427407.2", + "preferred": "grid.427407.2" + }, + "ISNI": { + "all": [ + "0000 0004 1790 038X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30286231" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00r1edq15.json b/v1.51/v1/00r1edq15.json new file mode 100644 index 000000000..ee2abaa2e --- /dev/null +++ b/v1.51/v1/00r1edq15.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/00r1edq15", + "name": "Universität Greifswald", + "email_address": null, + "ip_addresses": [], + "established": 1456, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut für Klimaschutz, Energie und Mobilität", + "type": "Child", + "id": "https://ror.org/03rvn2t89" + }, + { + "label": "Universitätsmedizin Greifswald", + "type": "Related", + "id": "https://ror.org/025vngs54" + }, + { + "label": "Stiftung Alfried Krupp Kolleg Greifswald", + "type": "Related", + "id": "https://ror.org/036b8pc68" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni-greifswald.de" + ], + "aliases": [ + "University of Greifswald" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Greifswald", + "labels": [ + { + "label": "Ernst-Moritz-Arndt-Universität Greifswald", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100018934" + ], + "preferred": "501100018934" + }, + "GRID": { + "all": "grid.5603.0", + "preferred": "grid.5603.0" + }, + "ISNI": { + "all": [ + "0000 0001 2353 1531" + ], + "preferred": "0000 0001 2353 1531" + }, + "Wikidata": { + "all": [ + "Q165528" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00r2rga43.json b/v1.51/v1/00r2rga43.json new file mode 100644 index 000000000..867df5813 --- /dev/null +++ b/v1.51/v1/00r2rga43.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00r2rga43", + "name": "Cambricon (China)", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cambricon.com" + ], + "aliases": [ + "Beijing Zhongke Cambricon Technologies Corp Ltd", + "Cambricon Technologies", + "Cambricon Technologies Corp Ltd", + "Cambricon Technologies Corporation Limited", + "Cambricon Technologies Corporation Ltd", + "Hanwuji Keji", + "寒武纪科技" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cambricon", + "iso639": "en" + }, + { + "label": "北京中科寒武纪科技有限公司", + "iso639": "zh" + }, + { + "label": "寒武纪", + "iso639": "en" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00raqbe38.json b/v1.51/v1/00raqbe38.json new file mode 100644 index 000000000..29b336e3e --- /dev/null +++ b/v1.51/v1/00raqbe38.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00raqbe38", + "name": "PPL (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.60843, + "lng": -75.49018, + "state": null, + "state_code": null, + "city": "Allentown", + "geonames_city": { + "id": 5178127, + "city": "Allentown", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pplweb.com" + ], + "aliases": [ + "PP&L", + "PPL Corporation", + "Pennsylvania Power & Light", + "Pennsylvania Power and Light" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "PPL", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q22350440" + ], + "preferred": "Q22350440" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00rs6vg23.json b/v1.51/v1/00rs6vg23.json new file mode 100644 index 000000000..89d2711a4 --- /dev/null +++ b/v1.51/v1/00rs6vg23.json @@ -0,0 +1,178 @@ +{ + "id": "https://ror.org/00rs6vg23", + "name": "The Ohio State University", + "email_address": null, + "ip_addresses": [], + "established": 1870, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Muscle Health and Neuromuscular Disorders", + "type": "Child", + "id": "https://ror.org/00n9sps80" + }, + { + "label": "The Ohio State University Newark", + "type": "Child", + "id": "https://ror.org/01r8m0a35" + }, + { + "label": "The Ohio State University at Lima", + "type": "Child", + "id": "https://ror.org/00qa31321" + }, + { + "label": "The Ohio State University at Mansfield", + "type": "Child", + "id": "https://ror.org/05h8s0v03" + }, + { + "label": "The Ohio State University at Marion", + "type": "Child", + "id": "https://ror.org/03646q924" + }, + { + "label": "Byrd Polar and Climate Research Center", + "type": "Child", + "id": "https://ror.org/030e1gk87" + }, + { + "label": "University System of Ohio", + "type": "Parent", + "id": "https://ror.org/0561zqn56" + }, + { + "label": "The Ohio State University Comprehensive Cancer Center – Arthur G. James Cancer Hospital and Richard J. Solove Research Institute", + "type": "Related", + "id": "https://ror.org/028t46f04" + }, + { + "label": "Nationwide Children's Hospital", + "type": "Related", + "id": "https://ror.org/003rfsp33" + }, + { + "label": "Ohio State University Hospital", + "type": "Related", + "id": "https://ror.org/020yh1f96" + }, + { + "label": "The Ohio State University Wexner Medical Center", + "type": "Related", + "id": "https://ror.org/00c01js51" + }, + { + "label": "McMurdo Dry Valleys Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/04r3s7465" + } + ], + "addresses": [ + { + "lat": 39.96118, + "lng": -82.99879, + "state": null, + "state_code": null, + "city": "Columbus", + "geonames_city": { + "id": 4509177, + "city": "Columbus", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.osu.edu/" + ], + "aliases": [], + "acronyms": [ + "OSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ohio_State_University", + "labels": [ + { + "label": "Universidad Estatal de Ohio", + "iso639": "es" + }, + { + "label": "Université d'État de l'Ohio", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006928", + "100006929", + "100010640", + "100009626", + "100010396", + "100008747", + "100005951", + "100007759", + "100005166", + "100005520", + "100007760", + "100007077", + "100007107", + "100008788", + "100007076" + ], + "preferred": "100006928" + }, + "GRID": { + "all": "grid.261331.4", + "preferred": "grid.261331.4" + }, + "ISNI": { + "all": [ + "0000 0001 2285 7943" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q309331" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00sw6rd76.json b/v1.51/v1/00sw6rd76.json new file mode 100644 index 000000000..de0629d5b --- /dev/null +++ b/v1.51/v1/00sw6rd76.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00sw6rd76", + "name": "Bilad Alrafidain University College", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.75403, + "lng": 44.60518, + "state": null, + "state_code": null, + "city": "Baqubah", + "geonames_city": { + "id": 97990, + "city": "Baqubah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bauc14.edu.iq" + ], + "aliases": [ + "Bilad Alrafidain University" + ], + "acronyms": [ + "BAUC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "كلية بلاد الرافدين الجامعة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0884 1629" + ], + "preferred": "0000 0005 0884 1629" + }, + "Wikidata": { + "all": [ + "Q25450410" + ], + "preferred": "Q25450410" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00t42b697.json b/v1.51/v1/00t42b697.json new file mode 100644 index 000000000..fc5bac9a2 --- /dev/null +++ b/v1.51/v1/00t42b697.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00t42b697", + "name": "Northern Trust (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.85003, + "lng": -87.65005, + "state": null, + "state_code": null, + "city": "Chicago", + "geonames_city": { + "id": 4887398, + "city": "Chicago", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.northerntrust.com" + ], + "aliases": [ + "Northern Trust Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Northern Trust", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00ty2a548.json b/v1.51/v1/00ty2a548.json new file mode 100644 index 000000000..0497462c0 --- /dev/null +++ b/v1.51/v1/00ty2a548.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/00ty2a548", + "name": "Idaho National Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Battelle", + "type": "Parent", + "id": "https://ror.org/01h5tnr73" + }, + { + "label": "Office of Nuclear Energy", + "type": "Parent", + "id": "https://ror.org/05tj7dm33" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 43.46658, + "lng": -112.03414, + "state": null, + "state_code": null, + "city": "Idaho Falls", + "geonames_city": { + "id": 5596475, + "city": "Idaho Falls", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inl.gov/" + ], + "aliases": [ + "Office of Nuclear Energy Idaho National Laboratory", + "United States Department of Energy Office of Nuclear Energy Idaho National Laboratory" + ], + "acronyms": [ + "INL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Idaho_National_Laboratory", + "labels": [ + { + "label": "Laboratoire national de l'idaho", + "iso639": "fr" + }, + { + "label": "Laboratorio Nacional de Idaho", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100011660" + ], + "preferred": "100011660" + }, + "GRID": { + "all": "grid.417824.c", + "preferred": "grid.417824.c" + }, + "ISNI": { + "all": [ + "0000 0001 0020 7392" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1314158" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00v16df20.json b/v1.51/v1/00v16df20.json new file mode 100644 index 000000000..d6972670a --- /dev/null +++ b/v1.51/v1/00v16df20.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00v16df20", + "name": "Austrian Institute for Health Technology Assessment GmbH", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Ludwig Boltzmann Gesellschaft", + "type": "Parent", + "id": "https://ror.org/01v1jam04" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://aihta.at" + ], + "aliases": [ + "Austrian Institute for Health Technology Assessment", + "Ludwig Boltzmann Institute for Health Technology Assessment" + ], + "acronyms": [ + "AIHTA", + "LBI-HTA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "GRID": { + "all": "grid.416150.7", + "preferred": "grid.416150.7" + }, + "ISNI": { + "all": [ + "0000 0001 0414 9599" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00v5nyn36.json b/v1.51/v1/00v5nyn36.json new file mode 100644 index 000000000..fa00ac86b --- /dev/null +++ b/v1.51/v1/00v5nyn36.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00v5nyn36", + "name": "Yeovil District Hospital NHS Foundation Trust", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Yeovil District Hospital", + "type": "Child", + "id": "https://ror.org/05dvbq272" + }, + { + "label": "Somerset NHS Foundation Trust", + "type": "Successor", + "id": "https://ror.org/00abj3t43" + } + ], + "addresses": [ + { + "lat": 50.94159, + "lng": -2.63211, + "state": null, + "state_code": null, + "city": "Yeovil", + "geonames_city": { + "id": 2633373, + "city": "Yeovil", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.yeovilhospital.co.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Yeovil_District_Hospital_NHS_Foundation_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.440204.6", + "preferred": "grid.440204.6" + }, + "ISNI": { + "all": [ + "0000 0004 0487 0310" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q8052494" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00waaqh38.json b/v1.51/v1/00waaqh38.json new file mode 100644 index 000000000..dacb2a583 --- /dev/null +++ b/v1.51/v1/00waaqh38.json @@ -0,0 +1,138 @@ +{ + "id": "https://ror.org/00waaqh38", + "name": "Vietnam National University Ho Chi Minh City", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Economics and Law", + "type": "Child", + "id": "https://ror.org/0138jhg57" + }, + { + "label": "Ho Chi Minh City University of Social Sciences and Humanities", + "type": "Child", + "id": "https://ror.org/02c6yhw44" + }, + { + "label": "Ho Chi Minh City International University", + "type": "Child", + "id": "https://ror.org/003szmg30" + }, + { + "label": "Ho Chi Minh City University of Science", + "type": "Child", + "id": "https://ror.org/05jfbgm49" + }, + { + "label": "Ho Chi Minh City University of Technology", + "type": "Child", + "id": "https://ror.org/04qva2324" + }, + { + "label": "University of Information Technology", + "type": "Child", + "id": "https://ror.org/05kdc4973" + }, + { + "label": "An Giang University", + "type": "Child", + "id": "https://ror.org/023pm6532" + } + ], + "addresses": [ + { + "lat": 10.82302, + "lng": 106.62965, + "state": null, + "state_code": null, + "city": "Ho Chi Minh City", + "geonames_city": { + "id": 1566083, + "city": "Ho Chi Minh City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://vnuhcm.edu.vn" + ], + "aliases": [ + "Viet Nam National University HCMC", + "Viet Nam National University Ho Chi Minh City" + ], + "acronyms": [ + "VNUHCM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Vietnam_National_University,_Ho_Chi_Minh_City", + "labels": [ + { + "label": "Đại học Quốc gia Thành phố Hồ Chí Minh", + "iso639": "vi" + } + ], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010712" + ], + "preferred": "501100010712" + }, + "GRID": { + "all": "grid.444808.4", + "preferred": "grid.444808.4" + }, + "ISNI": { + "all": [ + "0000 0001 2037 434X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q943759" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00wf6p036.json b/v1.51/v1/00wf6p036.json new file mode 100644 index 000000000..01dca8eab --- /dev/null +++ b/v1.51/v1/00wf6p036.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00wf6p036", + "name": "IPG Photonics (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.11676, + "lng": -71.86479, + "state": null, + "state_code": null, + "city": "Oxford", + "geonames_city": { + "id": 4946546, + "city": "Oxford", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ipgphotonics.com" + ], + "aliases": [ + "IPG Photonics Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "IPG Photonics", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00wmhkr98.json b/v1.51/v1/00wmhkr98.json new file mode 100644 index 000000000..36174234d --- /dev/null +++ b/v1.51/v1/00wmhkr98.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/00wmhkr98", + "name": "City College of New York", + "email_address": null, + "ip_addresses": [], + "established": 1847, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "City University of New York", + "type": "Parent", + "id": "https://ror.org/00453a208" + }, + { + "label": "NOAA Center for Earth System Sciences and Remote Sensing Technologies", + "type": "Related", + "id": "https://ror.org/02jb98t16" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ccny.cuny.edu/" + ], + "aliases": [ + "City College", + "City College of the City University of New York" + ], + "acronyms": [ + "CCNY" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/City_College_of_New_York", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008261", + "100008262" + ], + "preferred": "100008261" + }, + "GRID": { + "all": "grid.254250.4", + "preferred": "grid.254250.4" + }, + "ISNI": { + "all": [ + "0000 0001 2264 7145" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1093910" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00wymkh76.json b/v1.51/v1/00wymkh76.json new file mode 100644 index 000000000..87eed9471 --- /dev/null +++ b/v1.51/v1/00wymkh76.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00wymkh76", + "name": "Pima Community College", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 32.22174, + "lng": -110.92648, + "state": null, + "state_code": null, + "city": "Tucson", + "geonames_city": { + "id": 5318313, + "city": "Tucson", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pima.edu/" + ], + "aliases": [], + "acronyms": [ + "PCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pima_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.423122.4", + "preferred": "grid.423122.4" + }, + "ISNI": { + "all": [ + "0000 0000 8952 0846" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7194574" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00x4k9h67.json b/v1.51/v1/00x4k9h67.json new file mode 100644 index 000000000..a91cbfa42 --- /dev/null +++ b/v1.51/v1/00x4k9h67.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/00x4k9h67", + "name": "4Thparadigm (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.4paradigm.com" + ], + "aliases": [ + "Beijing Wusi Chuangxiang Technology Co., Ltd.", + "第四范式" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "4Thparadigm", + "iso639": "en" + }, + { + "label": "第四范式(北京)技术有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00xbw4a70.json b/v1.51/v1/00xbw4a70.json new file mode 100644 index 000000000..516cab4d7 --- /dev/null +++ b/v1.51/v1/00xbw4a70.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00xbw4a70", + "name": "Instituto Tecnólogico de La Laguna", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 25.54389, + "lng": -103.41898, + "state": null, + "state_code": null, + "city": "Torreón", + "geonames_city": { + "id": 3981254, + "city": "Torreón", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.itlalaguna.edu.mx/" + ], + "aliases": [ + "TecNM de La Laguna", + "Tecnológico Nacional de México de La Laguna" + ], + "acronyms": [ + "ITL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.466836.9", + "preferred": "grid.466836.9" + }, + "ISNI": { + "all": [ + "0000 0004 0369 6330" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/00ywema53.json b/v1.51/v1/00ywema53.json new file mode 100644 index 000000000..4795614b5 --- /dev/null +++ b/v1.51/v1/00ywema53.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00ywema53", + "name": "EPAM Systems (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.41398, + "lng": -73.30345, + "state": null, + "state_code": null, + "city": "Newtown", + "geonames_city": { + "id": 5280935, + "city": "Newtown", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.epam.com" + ], + "aliases": [ + "EPAM Systems, Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/EPAM_Systems", + "labels": [ + { + "label": "EPAM Systems", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/00zkxn351.json b/v1.51/v1/00zkxn351.json new file mode 100644 index 000000000..21a211622 --- /dev/null +++ b/v1.51/v1/00zkxn351.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00zkxn351", + "name": "Information Society Development Institute", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.00556, + "lng": 28.8575, + "state": null, + "state_code": null, + "city": "Chisinau", + "geonames_city": { + "id": 618426, + "city": "Chisinau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://idsi.md" + ], + "aliases": [ + "Institutul de Dezvoltare a Societății Informaționale" + ], + "acronyms": [ + "IDSI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Moldova", + "country_code": "MD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q124362032" + ], + "preferred": "Q124362032" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0102wtd28.json b/v1.51/v1/0102wtd28.json new file mode 100644 index 000000000..35c9184e3 --- /dev/null +++ b/v1.51/v1/0102wtd28.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/0102wtd28", + "name": "Monolithic Power Systems (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.68149, + "lng": -122.20874, + "state": null, + "state_code": null, + "city": "Kirkland", + "geonames_city": { + "id": 5799841, + "city": "Kirkland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.monolithicpower.com" + ], + "aliases": [ + "Chengdu Monolithic Power Systems" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Monolithic_Power_Systems", + "labels": [ + { + "label": "Monolithic Power Systems", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0107nyd78.json b/v1.51/v1/0107nyd78.json new file mode 100644 index 000000000..c3f5f7ebc --- /dev/null +++ b/v1.51/v1/0107nyd78.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/0107nyd78", + "name": "Tübingen AI Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Tübingen", + "type": "Parent", + "id": "https://ror.org/03a1kwz48" + }, + { + "label": "Max Planck Institute for Intelligent Systems", + "type": "Parent", + "id": "https://ror.org/04fq9j139" + } + ], + "addresses": [ + { + "lat": 48.52266, + "lng": 9.05222, + "state": null, + "state_code": null, + "city": "Tübingen", + "geonames_city": { + "id": 2820860, + "city": "Tübingen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tuebingen.ai" + ], + "aliases": [], + "acronyms": [], + "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.51/v1/010bvr713.json b/v1.51/v1/010bvr713.json new file mode 100644 index 000000000..d2e8b28af --- /dev/null +++ b/v1.51/v1/010bvr713.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/010bvr713", + "name": "Instituto Colombiano del Petróleo", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.97443, + "lng": -73.02284, + "state": null, + "state_code": null, + "city": "Piedecuesta", + "geonames_city": { + "id": 3672331, + "city": "Piedecuesta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ecopetrol.com.co" + ], + "aliases": [], + "acronyms": [ + "ECOPETROL" + ], + "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.51/v1/010nsgg66.json b/v1.51/v1/010nsgg66.json new file mode 100644 index 000000000..0394c65ce --- /dev/null +++ b/v1.51/v1/010nsgg66.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/010nsgg66", + "name": "Technische Universität Braunschweig", + "email_address": null, + "ip_addresses": [], + "established": 1745, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Forschungszentrum Küste", + "type": "Child", + "id": "https://ror.org/00w53fs94" + }, + { + "label": "L3S Research Center", + "type": "Child", + "id": "https://ror.org/039t4wk02" + }, + { + "label": "TU9", + "type": "Related", + "id": "https://ror.org/02nx8n605" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 52.26594, + "lng": 10.52673, + "state": null, + "state_code": null, + "city": "Braunschweig", + "geonames_city": { + "id": 2945024, + "city": "Braunschweig", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tu-braunschweig.de/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Technical_University_of_Braunschweig", + "labels": [ + { + "label": "TU Braunschweig", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004871" + ], + "preferred": null + }, + "GRID": { + "all": "grid.6738.a", + "preferred": "grid.6738.a" + }, + "ISNI": { + "all": [ + "0000 0001 1090 0254" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q734324" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0111dmn28.json b/v1.51/v1/0111dmn28.json new file mode 100644 index 000000000..0edf20ae6 --- /dev/null +++ b/v1.51/v1/0111dmn28.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/0111dmn28", + "name": "Czech Office for Surveying, Mapping and Cadastre", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cuzk.cz" + ], + "aliases": [], + "acronyms": [ + "ČÚZK" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Český úřad zeměměřický a katastrální", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.473776.6", + "preferred": "grid.473776.6" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/011bwvz55.json b/v1.51/v1/011bwvz55.json new file mode 100644 index 000000000..e9a814fba --- /dev/null +++ b/v1.51/v1/011bwvz55.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/011bwvz55", + "name": "Waste Management (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.76328, + "lng": -95.36327, + "state": null, + "state_code": null, + "city": "Houston", + "geonames_city": { + "id": 4699066, + "city": "Houston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.wm.com" + ], + "aliases": [ + "WM Intellectual Property Holdings LLC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Waste Management", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/011fcvm83.json b/v1.51/v1/011fcvm83.json new file mode 100644 index 000000000..eacc5719c --- /dev/null +++ b/v1.51/v1/011fcvm83.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/011fcvm83", + "name": "Aeroflex", + "email_address": null, + "ip_addresses": [], + "established": 1937, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Cobham (United Kingdom)", + "type": "Successor", + "id": "https://ror.org/054ys4h04" + } + ], + "addresses": [ + { + "lat": 40.77649, + "lng": -73.46735, + "state": null, + "state_code": null, + "city": "Plainview", + "geonames_city": { + "id": 5131638, + "city": "Plainview", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.aeroflex.com" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Aeroflex", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q4688254" + ], + "preferred": "Q4688254" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/011r0yf09.json b/v1.51/v1/011r0yf09.json new file mode 100644 index 000000000..ff013db5a --- /dev/null +++ b/v1.51/v1/011r0yf09.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/011r0yf09", + "name": "Charter Communications (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.05343, + "lng": -73.53873, + "state": null, + "state_code": null, + "city": "Stamford", + "geonames_city": { + "id": 4843564, + "city": "Stamford", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://corporate.charter.com" + ], + "aliases": [ + "Charter Communications Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Charter Communications", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q2961234" + ], + "preferred": "Q2961234" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0122rxn37.json b/v1.51/v1/0122rxn37.json new file mode 100644 index 000000000..af4607d9e --- /dev/null +++ b/v1.51/v1/0122rxn37.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0122rxn37", + "name": "DTE Energy (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.33143, + "lng": -83.04575, + "state": null, + "state_code": null, + "city": "Detroit", + "geonames_city": { + "id": 4990729, + "city": "Detroit", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dteenergy.com" + ], + "aliases": [ + "Detroit Edison" + ], + "acronyms": [ + "DTE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/DTE_Energy", + "labels": [ + { + "label": "DTE Energy", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0384 6458" + ], + "preferred": "0000 0004 0384 6458" + }, + "Wikidata": { + "all": [ + "Q5206232" + ], + "preferred": "Q5206232" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/012874a19.json b/v1.51/v1/012874a19.json new file mode 100644 index 000000000..b2e6cab6e --- /dev/null +++ b/v1.51/v1/012874a19.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/012874a19", + "name": "Anduril Industries (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.66946, + "lng": -117.82311, + "state": null, + "state_code": null, + "city": "Irvine", + "geonames_city": { + "id": 5359777, + "city": "Irvine", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.anduril.com" + ], + "aliases": [ + "Anduril", + "Anduril Industries Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Anduril Industries", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9291 7923" + ], + "preferred": "0000 0004 9291 7923" + }, + "Wikidata": { + "all": [ + "Q4760313" + ], + "preferred": "Q4760313" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/012ddk914.json b/v1.51/v1/012ddk914.json new file mode 100644 index 000000000..af8608d29 --- /dev/null +++ b/v1.51/v1/012ddk914.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/012ddk914", + "name": "Bath & Body Works (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.96118, + "lng": -82.99879, + "state": null, + "state_code": null, + "city": "Columbus", + "geonames_city": { + "id": 4509177, + "city": "Columbus", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lb.com" + ], + "aliases": [ + "Bath and Body Works" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bath_%26_Body_Works", + "labels": [ + { + "label": "Bath & Body Works", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q810773" + ], + "preferred": "Q810773" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/013msgt25.json b/v1.51/v1/013msgt25.json new file mode 100644 index 000000000..92e3791f0 --- /dev/null +++ b/v1.51/v1/013msgt25.json @@ -0,0 +1,208 @@ +{ + "id": "https://ror.org/013msgt25", + "name": "General Electric (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1892, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "General Electric (Argentina)", + "type": "Child", + "id": "https://ror.org/04vxxnr42" + }, + { + "label": "General Electric (Austria)", + "type": "Child", + "id": "https://ror.org/013rtxr98" + }, + { + "label": "General Electric (Canada)", + "type": "Child", + "id": "https://ror.org/00rey4c89" + }, + { + "label": "General Electric (Czechia)", + "type": "Child", + "id": "https://ror.org/02dmq8z55" + }, + { + "label": "General Electric (Denmark)", + "type": "Child", + "id": "https://ror.org/03nscjy42" + }, + { + "label": "General Electric (Finland)", + "type": "Child", + "id": "https://ror.org/04h6zzz03" + }, + { + "label": "General Electric (France)", + "type": "Child", + "id": "https://ror.org/04q26jh72" + }, + { + "label": "General Electric (Germany)", + "type": "Child", + "id": "https://ror.org/02tarpq30" + }, + { + "label": "General Electric (India)", + "type": "Child", + "id": "https://ror.org/04dd9ss52" + }, + { + "label": "General Electric (Israel)", + "type": "Child", + "id": "https://ror.org/00fymn751" + }, + { + "label": "General Electric (Italy)", + "type": "Child", + "id": "https://ror.org/05ehfjt50" + }, + { + "label": "General Electric (Japan)", + "type": "Child", + "id": "https://ror.org/03g2a6c32" + }, + { + "label": "General Electric (Netherlands)", + "type": "Child", + "id": "https://ror.org/03q3a0475" + }, + { + "label": "General Electric (New Zealand)", + "type": "Child", + "id": "https://ror.org/00begqh73" + }, + { + "label": "General Electric (Norway)", + "type": "Child", + "id": "https://ror.org/04vr78v16" + }, + { + "label": "General Electric (Poland)", + "type": "Child", + "id": "https://ror.org/04ytn9a85" + }, + { + "label": "General Electric (Qatar)", + "type": "Child", + "id": "https://ror.org/01yykey67" + }, + { + "label": "General Electric (Spain)", + "type": "Child", + "id": "https://ror.org/04gbh9b75" + }, + { + "label": "General Electric (Sweden)", + "type": "Child", + "id": "https://ror.org/0190p7071" + }, + { + "label": "General Electric (Switzerland)", + "type": "Child", + "id": "https://ror.org/05tj5za17" + }, + { + "label": "General Electric (United Kingdom)", + "type": "Child", + "id": "https://ror.org/03yt24h27" + }, + { + "label": "GE Vernova (United States)", + "type": "Child", + "id": "https://ror.org/04n60x970" + } + ], + "addresses": [ + { + "lat": 42.35843, + "lng": -71.05977, + "state": null, + "state_code": null, + "city": "Boston", + "geonames_city": { + "id": 4930956, + "city": "Boston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ge.com/" + ], + "aliases": [], + "acronyms": [ + "GE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/General_Electric", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100004313", + "100006774" + ], + "preferred": "100004313" + }, + "GRID": { + "all": "grid.418143.b", + "preferred": "grid.418143.b" + }, + "ISNI": { + "all": [ + "0000 0001 0943 0267", + "0000 0004 0400 9416" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q54173", + "Q1485061" + ], + "preferred": "Q54173" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0140bzm64.json b/v1.51/v1/0140bzm64.json new file mode 100644 index 000000000..ad9e0ae8b --- /dev/null +++ b/v1.51/v1/0140bzm64.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/0140bzm64", + "name": "Society for the Study of Human Development", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.37143, + "lng": -83.47021, + "state": null, + "state_code": null, + "city": "Plymouth", + "geonames_city": { + "id": 5006059, + "city": "Plymouth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sshdonline.org" + ], + "aliases": [], + "acronyms": [ + "SSHD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q55633417" + ], + "preferred": "Q55633417" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01485tq96.json b/v1.51/v1/01485tq96.json new file mode 100644 index 000000000..d40784c55 --- /dev/null +++ b/v1.51/v1/01485tq96.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/01485tq96", + "name": "University of Wyoming", + "email_address": null, + "ip_addresses": [], + "established": 1886, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Wyoming Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/04jaeeg73" + }, + { + "label": "Konza Prairie Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/02wavzm11" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 41.31137, + "lng": -105.5911, + "state": null, + "state_code": null, + "city": "Laramie", + "geonames_city": { + "id": 5830062, + "city": "Laramie", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uwyo.edu/" + ], + "aliases": [], + "acronyms": [ + "UW" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Wyoming", + "labels": [ + { + "label": "Universidad de Wyoming", + "iso639": "es" + }, + { + "label": "Université du wyoming", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008106", + "100009212", + "100010598", + "100008107", + "100008108", + "100017825" + ], + "preferred": "100008106" + }, + "GRID": { + "all": "grid.135963.b", + "preferred": "grid.135963.b" + }, + "ISNI": { + "all": [ + "0000 0001 2109 0381" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1326975" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/014kv8184.json b/v1.51/v1/014kv8184.json new file mode 100644 index 000000000..db7fab86d --- /dev/null +++ b/v1.51/v1/014kv8184.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/014kv8184", + "name": "Grand Canyon University", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 33.44838, + "lng": -112.07404, + "state": null, + "state_code": null, + "city": "Phoenix", + "geonames_city": { + "id": 5308655, + "city": "Phoenix", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.gcu.edu/" + ], + "aliases": [], + "acronyms": [ + "GCU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Grand_Canyon_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.411801.d", + "preferred": "grid.411801.d" + }, + "ISNI": { + "all": [ + "0000 0001 0442 7560", + "0000 0004 1936 8980" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4570025" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/014th2j85.json b/v1.51/v1/014th2j85.json new file mode 100644 index 000000000..dccb48743 --- /dev/null +++ b/v1.51/v1/014th2j85.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/014th2j85", + "name": "Generac (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.01168, + "lng": -88.23148, + "state": null, + "state_code": null, + "city": "Waukesha", + "geonames_city": { + "id": 5278052, + "city": "Waukesha", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.generac.com" + ], + "aliases": [ + "Generac Holdings Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Generac", + "labels": [ + { + "label": "Generac", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/014zc6253.json b/v1.51/v1/014zc6253.json new file mode 100644 index 000000000..9866db02a --- /dev/null +++ b/v1.51/v1/014zc6253.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/014zc6253", + "name": "Institute of Marine Biotechnology", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.marine-biotechnologie.de/" + ], + "aliases": [ + "IMaB" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut für Marine Biotechnologie", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.482724.f", + "preferred": "grid.482724.f" + }, + "ISNI": { + "all": [ + "0000 0004 8004 5638" + ], + "preferred": "0000 0004 8004 5638" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01526xe10.json b/v1.51/v1/01526xe10.json new file mode 100644 index 000000000..d766a1664 --- /dev/null +++ b/v1.51/v1/01526xe10.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/01526xe10", + "name": "Boston Consulting Group (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.35843, + "lng": -71.05977, + "state": null, + "state_code": null, + "city": "Boston", + "geonames_city": { + "id": 4930956, + "city": "Boston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bcg.com" + ], + "aliases": [ + "Boston Consulting Group Inc", + "The Boston Consulting Group" + ], + "acronyms": [ + "BCG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Boston Consulting Group", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6011 3197" + ], + "preferred": "0000 0004 6011 3197" + }, + "Wikidata": { + "all": [ + "Q135635" + ], + "preferred": "Q135635" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/015em2733.json b/v1.51/v1/015em2733.json new file mode 100644 index 000000000..ca28a7c58 --- /dev/null +++ b/v1.51/v1/015em2733.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/015em2733", + "name": "Data Documentation Initiative Alliance", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Nonprofit" + ], + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ddialliance.org" + ], + "aliases": [ + "DDI Alliance" + ], + "acronyms": [ + "DDI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Data_Documentation_Initiative", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q29658528" + ], + "preferred": "Q29658528" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0162z8b04.json b/v1.51/v1/0162z8b04.json new file mode 100644 index 000000000..3e64856d8 --- /dev/null +++ b/v1.51/v1/0162z8b04.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/0162z8b04", + "name": "Idaho State University", + "email_address": null, + "ip_addresses": [], + "established": 1901, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 42.8713, + "lng": -112.44553, + "state": null, + "state_code": null, + "city": "Pocatello", + "geonames_city": { + "id": 5604045, + "city": "Pocatello", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.isu.edu/" + ], + "aliases": [], + "acronyms": [ + "ISU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Idaho_State_University", + "labels": [ + { + "label": "Universidad Estatal de Idaho", + "iso639": "es" + }, + { + "label": "Université d'État d'idaho", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100009839" + ], + "preferred": "100009839" + }, + "GRID": { + "all": "grid.257296.d", + "preferred": "grid.257296.d" + }, + "ISNI": { + "all": [ + "0000 0001 2169 6535", + "0000 0004 1936 9027" + ], + "preferred": "0000 0004 1936 9027" + }, + "Wikidata": { + "all": [ + "Q1656608", + "Q39492589" + ], + "preferred": "Q1656608" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/016bysn57.json b/v1.51/v1/016bysn57.json new file mode 100644 index 000000000..1fdee6b21 --- /dev/null +++ b/v1.51/v1/016bysn57.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/016bysn57", + "name": "University of Northern Colorado", + "email_address": null, + "ip_addresses": [], + "established": 1889, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 40.42331, + "lng": -104.70913, + "state": null, + "state_code": null, + "city": "Greeley", + "geonames_city": { + "id": 5577592, + "city": "Greeley", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unco.edu/" + ], + "aliases": [ + "Colorado State College", + "Colorado State College of Education", + "State Normal School" + ], + "acronyms": [ + "UNC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Northern_Colorado", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007666" + ], + "preferred": null + }, + "GRID": { + "all": "grid.266877.a", + "preferred": "grid.266877.a" + }, + "ISNI": { + "all": [ + "0000 0001 2097 3086" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1783608" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/016cpew17.json b/v1.51/v1/016cpew17.json new file mode 100644 index 000000000..cc296ffd8 --- /dev/null +++ b/v1.51/v1/016cpew17.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/016cpew17", + "name": "State Regional Archives in Prague", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.soapraha.cz" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/St%C3%A1tn%C3%AD_oblastn%C3%AD_archiv_v_Praze", + "labels": [ + { + "label": "Státní oblastní archiv v Praze", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2186 1297" + ], + "preferred": "0000 0001 2186 1297" + }, + "Wikidata": { + "all": [ + "Q12056840" + ], + "preferred": "Q12056840" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/016emmf09.json b/v1.51/v1/016emmf09.json new file mode 100644 index 000000000..0d3eb26bf --- /dev/null +++ b/v1.51/v1/016emmf09.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/016emmf09", + "name": "Pan-European University", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.peuni-international.eu" + ], + "aliases": [ + "College of Information Management and Business Administration", + "Vysoká škola podnikání a práva" + ], + "acronyms": [ + "PEUNI", + "VSPP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Panevropská univerzita, a.s.", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.465864.d", + "preferred": "grid.465864.d" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/016vzmc05.json b/v1.51/v1/016vzmc05.json new file mode 100644 index 000000000..2fe91cee7 --- /dev/null +++ b/v1.51/v1/016vzmc05.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/016vzmc05", + "name": "Nippon Steel (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Nippon Steel (Germany)", + "type": "Child", + "id": "https://ror.org/01apday90" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nipponsteel.com" + ], + "aliases": [ + "Shinnittetsu Sumikin Kabushiki-gaisha" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nippon_Steel_%26_Sumitomo_Metal", + "labels": [ + { + "label": "Nippon Steel", + "iso639": null + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "FundRef": { + "all": [ + "100004722", + "100020330" + ], + "preferred": "100020330" + }, + "GRID": { + "all": "grid.462646.4", + "preferred": "grid.462646.4" + }, + "ISNI": { + "all": [ + "0000 0004 4911 6055" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1151693" + ], + "preferred": "Q1151693" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/017gb1s53.json b/v1.51/v1/017gb1s53.json new file mode 100644 index 000000000..c88b40446 --- /dev/null +++ b/v1.51/v1/017gb1s53.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/017gb1s53", + "name": "Collegium Intermarium", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.22977, + "lng": 21.01178, + "state": null, + "state_code": null, + "city": "Warsaw", + "geonames_city": { + "id": 756135, + "city": "Warsaw", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://collegiumintermarium.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://pl.wikipedia.org/wiki/Uczelnia_Collegium_Intermarium", + "labels": [ + { + "label": "Uczelnia Collegium Intermarium", + "iso639": "pl" + } + ], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q107202968" + ], + "preferred": "Q107202968" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/017sz3r20.json b/v1.51/v1/017sz3r20.json new file mode 100644 index 000000000..97b0ade10 --- /dev/null +++ b/v1.51/v1/017sz3r20.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/017sz3r20", + "name": "Invesco (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.invesco.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Invesco", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/018yqmx18.json b/v1.51/v1/018yqmx18.json new file mode 100644 index 000000000..5317afa75 --- /dev/null +++ b/v1.51/v1/018yqmx18.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/018yqmx18", + "name": "Huntington Bancshares (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.96118, + "lng": -82.99879, + "state": null, + "state_code": null, + "city": "Columbus", + "geonames_city": { + "id": 4509177, + "city": "Columbus", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.huntington.com" + ], + "aliases": [ + "Huntington Bancshares Inc", + "Huntington Bancshares Incorporated", + "Huntington National Bank" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Huntington_Bancshares", + "labels": [ + { + "label": "Huntington Bancshares", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q798819" + ], + "preferred": "Q798819" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0191b3351.json b/v1.51/v1/0191b3351.json new file mode 100644 index 000000000..14510d0b5 --- /dev/null +++ b/v1.51/v1/0191b3351.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/0191b3351", + "name": "VID Specialized University", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.91273, + "lng": 10.74609, + "state": null, + "state_code": null, + "city": "Oslo", + "geonames_city": { + "id": 3143244, + "city": "Oslo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vid.no" + ], + "aliases": [], + "acronyms": [ + "VID" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "VID Vitenskapelige Høgskole", + "iso639": "no" + } + ], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007544", + "501100023251" + ], + "preferred": null + }, + "GRID": { + "all": "grid.463529.f", + "preferred": "grid.463529.f" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0199vdr69.json b/v1.51/v1/0199vdr69.json new file mode 100644 index 000000000..b7f335452 --- /dev/null +++ b/v1.51/v1/0199vdr69.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0199vdr69", + "name": "Principal Financial Group (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.60054, + "lng": -93.60911, + "state": null, + "state_code": null, + "city": "Des Moines", + "geonames_city": { + "id": 4853828, + "city": "Des Moines", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.principal.com" + ], + "aliases": [ + "Principal Financial Group Inc" + ], + "acronyms": [ + "PFG" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Principal_Financial_Group", + "labels": [ + { + "label": "Principal Financial Group", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9694 3804" + ], + "preferred": "0000 0000 9694 3804" + }, + "Wikidata": { + "all": [ + "Q3403513" + ], + "preferred": "Q3403513" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/019q0z051.json b/v1.51/v1/019q0z051.json new file mode 100644 index 000000000..d50fc1edc --- /dev/null +++ b/v1.51/v1/019q0z051.json @@ -0,0 +1,247 @@ +{ + "id": "https://ror.org/019q0z051", + "name": "Rocky Mountain Advanced Computing Consortium", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Arizona State University", + "type": "Related", + "id": "https://ror.org/03efmqc40" + }, + { + "label": "Brigham Young University", + "type": "Related", + "id": "https://ror.org/047rhhm47" + }, + { + "label": "Boise State University", + "type": "Related", + "id": "https://ror.org/02e3zdp86" + }, + { + "label": "Colorado School of Mines", + "type": "Related", + "id": "https://ror.org/04raf6v53" + }, + { + "label": "Colorado State University", + "type": "Related", + "id": "https://ror.org/03k1gpj17" + }, + { + "label": "Colorado Mesa University", + "type": "Related", + "id": "https://ror.org/0451s5g67" + }, + { + "label": "University of Denver", + "type": "Related", + "id": "https://ror.org/04w7skc03" + }, + { + "label": "Grand Canyon University", + "type": "Related", + "id": "https://ror.org/014kv8184" + }, + { + "label": "Colorado State University Pueblo", + "type": "Related", + "id": "https://ror.org/02gn3zg65" + }, + { + "label": "Idaho State University", + "type": "Related", + "id": "https://ror.org/0162z8b04" + }, + { + "label": "Idaho National Laboratory", + "type": "Related", + "id": "https://ror.org/00ty2a548" + }, + { + "label": "Montana State University", + "type": "Related", + "id": "https://ror.org/02w0trx84" + }, + { + "label": "New Mexico State University", + "type": "Related", + "id": "https://ror.org/00hpz7z43" + }, + { + "label": "New Mexico Institute of Mining and Technology", + "type": "Related", + "id": "https://ror.org/005p9kw61" + }, + { + "label": "NSF National Center for Atmospheric Research", + "type": "Related", + "id": "https://ror.org/05cvfcr44" + }, + { + "label": "National Renewable Energy Laboratory", + "type": "Related", + "id": "https://ror.org/036266993" + }, + { + "label": "National Oceanic and Atmospheric Administration", + "type": "Related", + "id": "https://ror.org/02z5nhe81" + }, + { + "label": "Regis University", + "type": "Related", + "id": "https://ror.org/043ae9h44" + }, + { + "label": "Pima Community College", + "type": "Related", + "id": "https://ror.org/00wymkh76" + }, + { + "label": "Northern Arizona University", + "type": "Related", + "id": "https://ror.org/0272j5188" + }, + { + "label": "University of Colorado Anschutz Medical Campus", + "type": "Related", + "id": "https://ror.org/03wmf1y16" + }, + { + "label": "University of Arizona", + "type": "Related", + "id": "https://ror.org/03m2x1q45" + }, + { + "label": "University of Colorado Colorado Springs", + "type": "Related", + "id": "https://ror.org/054spjc55" + }, + { + "label": "University of Montana", + "type": "Related", + "id": "https://ror.org/0078xmk34" + }, + { + "label": "University of Idaho", + "type": "Related", + "id": "https://ror.org/03hbp5t65" + }, + { + "label": "University of Colorado Denver", + "type": "Related", + "id": "https://ror.org/02hh7en24" + }, + { + "label": "University of New Mexico", + "type": "Related", + "id": "https://ror.org/05fs6jp91" + }, + { + "label": "University of Northern Colorado", + "type": "Related", + "id": "https://ror.org/016bysn57" + }, + { + "label": "University of Nevada, Las Vegas", + "type": "Related", + "id": "https://ror.org/0406gha72" + }, + { + "label": "University of Utah", + "type": "Related", + "id": "https://ror.org/03r0ha626" + }, + { + "label": "University of Wyoming", + "type": "Related", + "id": "https://ror.org/01485tq96" + }, + { + "label": "United States Geological Survey", + "type": "Related", + "id": "https://ror.org/035a68863" + }, + { + "label": "Western Colorado University", + "type": "Related", + "id": "https://ror.org/02xs3dj23" + }, + { + "label": "Washington State University", + "type": "Related", + "id": "https://ror.org/05dk0ce17" + }, + { + "label": "Arizona Western College", + "type": "Related", + "id": "https://ror.org/04z557486" + } + ], + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rmacc.org" + ], + "aliases": [], + "acronyms": [ + "RMACC" + ], + "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.51/v1/019wb3548.json b/v1.51/v1/019wb3548.json new file mode 100644 index 000000000..8c8df78b8 --- /dev/null +++ b/v1.51/v1/019wb3548.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/019wb3548", + "name": "Grassroot Soccer, Inc.", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.70229, + "lng": -72.28954, + "state": null, + "state_code": null, + "city": "Hanover", + "geonames_city": { + "id": 5087168, + "city": "Hanover", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://grassrootsoccer.org" + ], + "aliases": [ + "Grassroot Soccer" + ], + "acronyms": [ + "GRS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Grassroot_Soccer", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5597574" + ], + "preferred": "Q5597574" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01apday90.json b/v1.51/v1/01apday90.json new file mode 100644 index 000000000..35f27a318 --- /dev/null +++ b/v1.51/v1/01apday90.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/01apday90", + "name": "Nippon Steel (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Nippon Steel (Japan)", + "type": "Parent", + "id": "https://ror.org/016vzmc05" + } + ], + "addresses": [ + { + "lat": 51.22172, + "lng": 6.77616, + "state": null, + "state_code": null, + "city": "Düsseldorf", + "geonames_city": { + "id": 2934246, + "city": "Düsseldorf", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nipponsteel.com/en/company/offices/europe/" + ], + "aliases": [ + "Nippon Steel and Sumitomo Metal (Germany)", + "Shinnittetsu Sumikin Kabushiki-gaisha" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nippon_Steel_%26_Sumitomo_Metal", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.481760.c", + "preferred": "grid.481760.c" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01avfeb97.json b/v1.51/v1/01avfeb97.json new file mode 100644 index 000000000..737830a0c --- /dev/null +++ b/v1.51/v1/01avfeb97.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/01avfeb97", + "name": "Imam Alkadhim University College", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.34058, + "lng": 44.40088, + "state": null, + "state_code": null, + "city": "Baghdad", + "geonames_city": { + "id": 98182, + "city": "Baghdad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iku.edu.iq" + ], + "aliases": [ + "Imam Alkadhum College" + ], + "acronyms": [ + "IKU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "كلية الامام الكاظم", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01b40r146.json b/v1.51/v1/01b40r146.json new file mode 100644 index 000000000..fb98b7f8f --- /dev/null +++ b/v1.51/v1/01b40r146.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/01b40r146", + "name": "Geological Survey of Denmark and Greenland", + "email_address": null, + "ip_addresses": [], + "established": 1888, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Geocenter Denmark", + "type": "Child", + "id": "https://ror.org/04cz2sw33" + }, + { + "label": "Danish Ministry of Climate, Energy and Utilities", + "type": "Parent", + "id": "https://ror.org/012sh1702" + } + ], + "addresses": [ + { + "lat": 55.67594, + "lng": 12.56553, + "state": null, + "state_code": null, + "city": "Copenhagen", + "geonames_city": { + "id": 2618425, + "city": "Copenhagen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.geus.dk" + ], + "aliases": [ + "Danmarks og Grønlands Geologiske Undersøgelse" + ], + "acronyms": [ + "GEUS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Geological_Survey_of_Denmark_and_Greenland", + "labels": [ + { + "label": "De Nationale Geologiske Undersøgelser for Danmark og Grønland", + "iso639": "da" + } + ], + "country": { + "country_name": "Denmark", + "country_code": "DK" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010437" + ], + "preferred": null + }, + "GRID": { + "all": "grid.13508.3f", + "preferred": "grid.13508.3f" + }, + "ISNI": { + "all": [ + "0000 0001 1017 5662" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4993674" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01b436806.json b/v1.51/v1/01b436806.json new file mode 100644 index 000000000..4f93f3ace --- /dev/null +++ b/v1.51/v1/01b436806.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/01b436806", + "name": "CIRED", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Météo-France", + "type": "Parent", + "id": "https://ror.org/0233st365" + }, + { + "label": "École des Ponts ParisTech", + "type": "Parent", + "id": "https://ror.org/02nwvxz07" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.83669, + "lng": 2.48255, + "state": null, + "state_code": null, + "city": "Nogent-sur-Marne", + "geonames_city": { + "id": 2990265, + "city": "Nogent-sur-Marne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.centre-cired.fr/index.php/en/" + ], + "aliases": [ + "Centre International de Recherche sur l'Environnement et le Developpement", + "International Research Center on Environment and Development", + "UMR CIRED" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre for International Research on Environment and Development", + "iso639": "en" + }, + { + "label": "Centre international de recherche sur l'environnement et le développement", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462809.1", + "preferred": "grid.462809.1" + }, + "ISNI": { + "all": [ + "0000 0001 2165 5311" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01bc41c65.json b/v1.51/v1/01bc41c65.json new file mode 100644 index 000000000..13ccf21f5 --- /dev/null +++ b/v1.51/v1/01bc41c65.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/01bc41c65", + "name": "Dětský domov a Mateřská škola Beroun", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.96382, + "lng": 14.072, + "state": null, + "state_code": null, + "city": "Beroun", + "geonames_city": { + "id": 3079467, + "city": "Beroun", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ddmsberoun.cz/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448019.0", + "preferred": "grid.448019.0" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01beh4y53.json b/v1.51/v1/01beh4y53.json new file mode 100644 index 000000000..2e5c0e117 --- /dev/null +++ b/v1.51/v1/01beh4y53.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01beh4y53", + "name": "Franklin Resources (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.56299, + "lng": -122.32553, + "state": null, + "state_code": null, + "city": "San Mateo", + "geonames_city": { + "id": 5392423, + "city": "San Mateo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.franklinresources.com" + ], + "aliases": [ + "Franklin Resources Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Franklin Resources", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 1516 4647" + ], + "preferred": "0000 0001 1516 4647" + }, + "Wikidata": { + "all": [ + "Q744683" + ], + "preferred": "Q744683" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01brjce02.json b/v1.51/v1/01brjce02.json new file mode 100644 index 000000000..bb980dc26 --- /dev/null +++ b/v1.51/v1/01brjce02.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01brjce02", + "name": "Instituto Tecnológico Superior de Atlixco", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 18.90815, + "lng": -98.43613, + "state": null, + "state_code": null, + "city": "Atlixco", + "geonames_city": { + "id": 3532592, + "city": "Atlixco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.atlixco.tecnm.mx" + ], + "aliases": [ + "ITS Atlixco", + "TecNM Atlixco", + "TecNM Campus Atlixco", + "Tecnológico Nacional de México Campus Atlixco" + ], + "acronyms": [ + "ITSA" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Tecnol%C3%B3gico_Nacional_de_M%C3%A9xico", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01bvh8x83.json b/v1.51/v1/01bvh8x83.json new file mode 100644 index 000000000..f948d9162 --- /dev/null +++ b/v1.51/v1/01bvh8x83.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01bvh8x83", + "name": "Sigma Group (Czechia)", + "email_address": null, + "ip_addresses": [], + "established": 1868, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Centre for Hydraulic Research", + "type": "Child", + "id": "https://ror.org/001rm8957" + } + ], + "addresses": [ + { + "lat": 49.55845, + "lng": 17.13572, + "state": null, + "state_code": null, + "city": "Lutín", + "geonames_city": { + "id": 3071350, + "city": "Lutín", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sigmagroup.cz/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448251.e", + "preferred": "grid.448251.e" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01d6p8r58.json b/v1.51/v1/01d6p8r58.json new file mode 100644 index 000000000..0ae76a8d6 --- /dev/null +++ b/v1.51/v1/01d6p8r58.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/01d6p8r58", + "name": "Instituto Tecnológico de Ciudad Guzmán", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 19.70466, + "lng": -103.4617, + "state": null, + "state_code": null, + "city": "Ciudad Guzmán", + "geonames_city": { + "id": 4013714, + "city": "Ciudad Guzmán", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cdguzman.tecnm.mx" + ], + "aliases": [ + "IT Ciudad Guzmán", + "TecNM Campus Ciudad Guzmán", + "Tecnológico Nacional de México Campus Ciudad Guzmán" + ], + "acronyms": [ + "ITCG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01dfznc08.json b/v1.51/v1/01dfznc08.json new file mode 100644 index 000000000..3e7faeb47 --- /dev/null +++ b/v1.51/v1/01dfznc08.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01dfznc08", + "name": "Rock Flow Dynamics (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rfdyn.com" + ], + "aliases": [], + "acronyms": [ + "RFD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Rock Flow Dynamics", + "iso639": "en" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01ev6a639.json b/v1.51/v1/01ev6a639.json new file mode 100644 index 000000000..a9ba4d198 --- /dev/null +++ b/v1.51/v1/01ev6a639.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01ev6a639", + "name": "Research International (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.85538, + "lng": -121.97096, + "state": null, + "state_code": null, + "city": "Monroe", + "geonames_city": { + "id": 5803786, + "city": "Monroe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.resrchintl.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Research_International", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.437587.a", + "preferred": "grid.437587.a" + }, + "ISNI": { + "all": [ + "0000 0004 0614 7935" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30291617" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01fp50e73.json b/v1.51/v1/01fp50e73.json new file mode 100644 index 000000000..fda4a331a --- /dev/null +++ b/v1.51/v1/01fp50e73.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/01fp50e73", + "name": "Axon Enterprise (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.50921, + "lng": -111.89903, + "state": null, + "state_code": null, + "city": "Scottsdale", + "geonames_city": { + "id": 5313457, + "city": "Scottsdale", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.axon.com" + ], + "aliases": [ + "Taser International" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Axon_Enterprise", + "labels": [ + { + "label": "Axon Enterprise", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012714" + ], + "preferred": "100012714" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01gdw7p94.json b/v1.51/v1/01gdw7p94.json new file mode 100644 index 000000000..7e5645bcd --- /dev/null +++ b/v1.51/v1/01gdw7p94.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/01gdw7p94", + "name": "The Royal Photographic Society", + "email_address": null, + "ip_addresses": [], + "established": 1853, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rps.org" + ], + "aliases": [ + "The Photographic Society of London", + "The Royal Photographic Society of Great Britain" + ], + "acronyms": [ + "RPS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Royal_Photographic_Society", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012094" + ], + "preferred": "100012094" + }, + "GRID": { + "all": "grid.501091.c", + "preferred": "grid.501091.c" + }, + "ISNI": { + "all": [ + "0000 0001 2151 2935" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q969196" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01gsw0r50.json b/v1.51/v1/01gsw0r50.json new file mode 100644 index 000000000..8cc3fcb06 --- /dev/null +++ b/v1.51/v1/01gsw0r50.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/01gsw0r50", + "name": "Deutsche Gesellschaft für Patientensicherheit gGmbH", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.49144, + "lng": 9.20427, + "state": null, + "state_code": null, + "city": "Reutlingen", + "geonames_city": { + "id": 2847736, + "city": "Reutlingen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://patientensicherheit.de" + ], + "aliases": [ + "Deutsche Gesellschaft für Patientensicherheit" + ], + "acronyms": [ + "DGPS" + ], + "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.51/v1/01gyxrk03.json b/v1.51/v1/01gyxrk03.json new file mode 100644 index 000000000..a008c0022 --- /dev/null +++ b/v1.51/v1/01gyxrk03.json @@ -0,0 +1,288 @@ +{ + "id": "https://ror.org/01gyxrk03", + "name": "Université de Picardie Jules Verne", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Southeast Asian Studies", + "type": "Child", + "id": "https://ror.org/02cd98b83" + }, + { + "label": "Ecologie et Dynamique des Systèmes Anthropisés", + "type": "Child", + "id": "https://ror.org/02bhp7a56" + }, + { + "label": "Groupe de Recherche sur l'Alcool et les Pharmacodépendances", + "type": "Child", + "id": "https://ror.org/01c62av11" + }, + { + "label": "Laboratoire Amiénois de Mathématique Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/04smxbm79" + }, + { + "label": "Laboratoire de Réactivité et Chimie des Solides", + "type": "Child", + "id": "https://ror.org/02m9cs548" + }, + { + "label": "Laboratoire de Glycochimie, des Antimicrobiens et des Agroressources", + "type": "Child", + "id": "https://ror.org/01gje7n16" + }, + { + "label": "Maison Européenne des Sciences de l'Homme et de la Société", + "type": "Child", + "id": "https://ror.org/00m090414" + }, + { + "label": "Périnatalité & Risques Toxiques", + "type": "Child", + "id": "https://ror.org/05ewvzm89" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "Child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "Groupe de Recherches sur l’Analyse Multimodale de la Fonction Cérébrale", + "type": "Child", + "id": "https://ror.org/02a9mrq41" + }, + { + "label": "Centre universitaire de recherches sur l'Action Publique et le Politique Épistémologie & Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00rxdng69" + }, + { + "label": "Bassins - Réservoirs - Ressources", + "type": "Child", + "id": "https://ror.org/059424541" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Mécanismes physiopathologiques et conséquences des calcifications cardiovasculaires", + "type": "Child", + "id": "https://ror.org/00bgnvd66" + }, + { + "label": "Textes, représentations, archéologie, autorité et mémoire de l'antiquité à la renaissance", + "type": "Child", + "id": "https://ror.org/02ht85j57" + }, + { + "label": "Habiter le monde", + "type": "Child", + "id": "https://ror.org/02wdygz27" + }, + { + "label": "Centre d'histoire des sociétés, des sciences et des conflits", + "type": "Child", + "id": "https://ror.org/01jrmfs07" + }, + { + "label": "Conflits, représentations et dialogues dans l'univers anglo-saxon", + "type": "Child", + "id": "https://ror.org/03cs09e53" + }, + { + "label": "Centre d'études des relations et des contacts linguistiques et littéraires", + "type": "Child", + "id": "https://ror.org/00erb9339" + }, + { + "label": "Centre d'Etudes Hispaniques d'Amiens", + "type": "Child", + "id": "https://ror.org/05y441t49" + }, + { + "label": "Laboratoire d'Economie, Finance, Management et Innovation", + "type": "Child", + "id": "https://ror.org/00cctyp65" + }, + { + "label": "Centre de recherche sur les institutions, l'industrie et les systèmes économiques d'Amiens", + "type": "Child", + "id": "https://ror.org/01aba3e23" + }, + { + "label": "Laboratoire des technologies innovantes", + "type": "Child", + "id": "https://ror.org/00ry58h45" + }, + { + "label": "Eco-procédés, optimisation et aide à la décision", + "type": "Child", + "id": "https://ror.org/02bn7hs48" + }, + { + "label": "Laboratoire de physique des systèmes complexes", + "type": "Child", + "id": "https://ror.org/01s6bet72" + }, + { + "label": "Laboratoire de physique de la matière condensée", + "type": "Child", + "id": "https://ror.org/05brss208" + }, + { + "label": "Adaptation physiologiques à l'exercice et réadaptation à l'effort", + "type": "Child", + "id": "https://ror.org/04jvgth94" + }, + { + "label": "Laboratoire de physiologie cellulaire et moléculaire", + "type": "Child", + "id": "https://ror.org/03vv60b83" + }, + { + "label": "Centre de droit privé et de sciences criminelles d'Amiens", + "type": "Child", + "id": "https://ror.org/01v9vbn43" + }, + { + "label": "Simplification des soins chez les patients complexes", + "type": "Child", + "id": "https://ror.org/02at6c277" + }, + { + "label": "Chirurgie et extrêmité céphalique, caractérisation morphologique et fonctionnelle", + "type": "Child", + "id": "https://ror.org/012h8gy04" + }, + { + "label": "Agents infectieux, résistance et chimiothérapie", + "type": "Child", + "id": "https://ror.org/04mywez65" + }, + { + "label": "Centre de recherche en psychologie : cognition, psychisme et organisations", + "type": "Child", + "id": "https://ror.org/007a90f76" + }, + { + "label": "Hématopoïèse et immunologie", + "type": "Child", + "id": "https://ror.org/03keztm33" + }, + { + "label": "Centre amiénois de recherche en éducation et formation", + "type": "Child", + "id": "https://ror.org/04grq1g73" + }, + { + "label": "Modélisation, information et systèmes", + "type": "Child", + "id": "https://ror.org/05w9qrp28" + }, + { + "label": "Laboratoire de neurosciences fonctionnelles et pathologies", + "type": "Child", + "id": "https://ror.org/008n78156" + }, + { + "label": "Centre de recherches en arts et esthétique", + "type": "Child", + "id": "https://ror.org/03jt9em80" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-picardie.fr/" + ], + "aliases": [], + "acronyms": [ + "UPJV" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Picardie_Jules_Verne", + "labels": [ + { + "label": "Universitat de Picardia", + "iso639": "ca" + }, + { + "label": "University of Picardie Jules Verne", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.11162.35", + "preferred": "grid.11162.35" + }, + "ISNI": { + "all": [ + "0000 0001 0789 1385" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q947747" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01h1d4660.json b/v1.51/v1/01h1d4660.json new file mode 100644 index 000000000..c3ef84496 --- /dev/null +++ b/v1.51/v1/01h1d4660.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/01h1d4660", + "name": "Enflame (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.22222, + "lng": 121.45806, + "state": null, + "state_code": null, + "city": "Shanghai", + "geonames_city": { + "id": 1796236, + "city": "Shanghai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Beijing Suiyuan Intelligent Tech Co Ltd", + "Shanghai Enflame Technology Co Ltd", + "Shanghai Suiyuan Tech Co Ltd", + "Suiyuan Technology", + "燧原科技" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Enflame", + "iso639": "pt" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01hete527.json b/v1.51/v1/01hete527.json new file mode 100644 index 000000000..ce3a93279 --- /dev/null +++ b/v1.51/v1/01hete527.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/01hete527", + "name": "Universidad Politécnica de Cuautitlán Izcalli", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.64388, + "lng": -99.21598, + "state": null, + "state_code": null, + "city": "Cuautitlán Izcalli", + "geonames_city": { + "id": 3515807, + "city": "Cuautitlán Izcalli", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://upci.edomex.gob.mx/upci" + ], + "aliases": [ + "UP Cuautitlán Izcalli" + ], + "acronyms": [ + "UPCI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01hv86c27.json b/v1.51/v1/01hv86c27.json new file mode 100644 index 000000000..f2a265902 --- /dev/null +++ b/v1.51/v1/01hv86c27.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01hv86c27", + "name": "Agro-écologie et intensification durable des cultures annuelles", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ur-aida.cirad.fr" + ], + "aliases": [ + "Aida", + "UPR Aida" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Agroecology and Sustainable Intensification for Annual Crops", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782042" + ], + "preferred": "Q51782042" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01k5qnb77.json b/v1.51/v1/01k5qnb77.json new file mode 100644 index 000000000..4da073260 --- /dev/null +++ b/v1.51/v1/01k5qnb77.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/01k5qnb77", + "name": "Robert Koch Institute", + "email_address": null, + "ip_addresses": [], + "established": 1891, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.rki.de/" + ], + "aliases": [], + "acronyms": [ + "RKI" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Robert_Koch_Institute", + "labels": [ + { + "label": "Robert Koch-Institut", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.13652.33", + "preferred": "grid.13652.33" + }, + "ISNI": { + "all": [ + "0000 0001 0940 3744" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q679041" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01ktn5v16.json b/v1.51/v1/01ktn5v16.json new file mode 100644 index 000000000..e4c764888 --- /dev/null +++ b/v1.51/v1/01ktn5v16.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/01ktn5v16", + "name": "Al-Rayan University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 14.48736, + "lng": 49.04427, + "state": null, + "state_code": null, + "city": "Fuwwah", + "geonames_city": { + "id": 75753, + "city": "Fuwwah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://alrayan-university.edu.ye" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "لجامعة الريان", + "iso639": "ar" + } + ], + "country": { + "country_name": "Yemen", + "country_code": "YE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q25449885" + ], + "preferred": "Q25449885" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01mwmfm08.json b/v1.51/v1/01mwmfm08.json new file mode 100644 index 000000000..a67680d4b --- /dev/null +++ b/v1.51/v1/01mwmfm08.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01mwmfm08", + "name": "Concord University", + "email_address": null, + "ip_addresses": [], + "established": 1872, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.42234, + "lng": -81.0162, + "state": null, + "state_code": null, + "city": "Athens", + "geonames_city": { + "id": 4797549, + "city": "Athens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.concord.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Concord_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.433200.6", + "preferred": "grid.433200.6" + }, + "ISNI": { + "all": [ + "0000 0004 0585 4582" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5158896" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01n015v70.json b/v1.51/v1/01n015v70.json new file mode 100644 index 000000000..399362c15 --- /dev/null +++ b/v1.51/v1/01n015v70.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/01n015v70", + "name": "Deepblue Technology (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.22222, + "lng": 121.45806, + "state": null, + "state_code": null, + "city": "Shanghai", + "geonames_city": { + "id": 1796236, + "city": "Shanghai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.deepblueai.com" + ], + "aliases": [ + "DeepBlue Technology (Shanghai) Co., Ltd", + "深兰科技" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Deepblue Technology", + "iso639": "en" + }, + { + "label": "深兰科技(上海)有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01n6r0e97.json b/v1.51/v1/01n6r0e97.json new file mode 100644 index 000000000..53a73aacf --- /dev/null +++ b/v1.51/v1/01n6r0e97.json @@ -0,0 +1,592 @@ +{ + "id": "https://ror.org/01n6r0e97", + "name": "Leibniz Association", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "ARL – Academy for Territorial Development in the Leibniz Association", + "type": "Child", + "id": "https://ror.org/010b6ag76" + }, + { + "label": "Bernhard Nocht Institute for Tropical Medicine", + "type": "Child", + "id": "https://ror.org/01evwfd48" + }, + { + "label": "Leibniz-Centre for Contemporary History", + "type": "Child", + "id": "https://ror.org/005xmsp39" + }, + { + "label": "Centre for European Economic Research", + "type": "Child", + "id": "https://ror.org/02qnsw591" + }, + { + "label": "DWI – Leibniz Institute for Interactive Materials", + "type": "Child", + "id": "https://ror.org/0186h8060" + }, + { + "label": "Deutsches Museum", + "type": "Child", + "id": "https://ror.org/00a7n7g54" + }, + { + "label": "Deutsches Schiffahrtsmuseum", + "type": "Child", + "id": "https://ror.org/02hdxnq28" + }, + { + "label": "FIZ Karlsruhe – Leibniz Institute for Information Infrastructure", + "type": "Child", + "id": "https://ror.org/0387prb75" + }, + { + "label": "Ferdinand-Braun-Institut", + "type": "Child", + "id": "https://ror.org/02be22443" + }, + { + "label": "Leibniz Institute for Educational Media | Georg Eckert Institute", + "type": "Child", + "id": "https://ror.org/01hnv8x68" + }, + { + "label": "Deutsches Diabetes-Zentrum e.V.", + "type": "Child", + "id": "https://ror.org/04ews3245" + }, + { + "label": "German Institute for Adult Education", + "type": "Child", + "id": "https://ror.org/04565hy55" + }, + { + "label": "German Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/0050vmv35" + }, + { + "label": "German Institute for Global and Area Studies", + "type": "Child", + "id": "https://ror.org/00681ts17" + }, + { + "label": "DIPF | Leibniz Institute for Research and Information in Education", + "type": "Child", + "id": "https://ror.org/0327sr118" + }, + { + "label": "German Institute of Human Nutrition", + "type": "Child", + "id": "https://ror.org/05xdczy51" + }, + { + "label": "Deutsches Bergbau-Museum Bochum", + "type": "Child", + "id": "https://ror.org/03k7cjr94" + }, + { + "label": "ZBW – Leibniz-Informationszentrum Wirtschaft", + "type": "Child", + "id": "https://ror.org/03a96gc12" + }, + { + "label": "Technische Informationsbibliothek (TIB)", + "type": "Child", + "id": "https://ror.org/04aj4c181" + }, + { + "label": "German Primate Center", + "type": "Child", + "id": "https://ror.org/02f99v835" + }, + { + "label": "German Rheumatism Research Centre", + "type": "Child", + "id": "https://ror.org/00shv0x82" + }, + { + "label": "Germanisches Nationalmuseum", + "type": "Child", + "id": "https://ror.org/02fv99722" + }, + { + "label": "Halle Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/03gjpvv92" + }, + { + "label": "Leibniz-Institut für Naturstoff-Forschung und Infektionsbiologie e. V. - Hans-Knöll-Institut (HKI)", + "type": "Child", + "id": "https://ror.org/055s37c97" + }, + { + "label": "Hans-Bredow-Institute", + "type": "Child", + "id": "https://ror.org/021eps607" + }, + { + "label": "Leibniz Institute of Virology (LIV)", + "type": "Child", + "id": "https://ror.org/02r2q1d96" + }, + { + "label": "Herder Institute", + "type": "Child", + "id": "https://ror.org/00sngv739" + }, + { + "label": "Ifo Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/045495t75" + }, + { + "label": "Innovations for High Performance Microelectronics", + "type": "Child", + "id": "https://ror.org/0489gab80" + }, + { + "label": "Institut für Zeitgeschichte München–Berlin", + "type": "Child", + "id": "https://ror.org/008pp7a77" + }, + { + "label": "Leibniz Institute of Plant Genetics and Crop Plant Research", + "type": "Child", + "id": "https://ror.org/02skbsp27" + }, + { + "label": "Kiel Institute for the World Economy", + "type": "Child", + "id": "https://ror.org/032yym934" + }, + { + "label": "Leibniz Centre for Agricultural Landscape Research", + "type": "Child", + "id": "https://ror.org/01ygyzs83" + }, + { + "label": "Leibniz Centre for Tropical Marine Research", + "type": "Child", + "id": "https://ror.org/019w00969" + }, + { + "label": "Leibniz Institute DSMZ – German Collection of Microorganisms and Cell Cultures", + "type": "Child", + "id": "https://ror.org/02tyer376" + }, + { + "label": "Leibniz Institute for Agricultural Engineering and Bioeconomy", + "type": "Child", + "id": "https://ror.org/04d62a771" + }, + { + "label": "Leibniz Institute for Analytical Sciences - ISAS", + "type": "Child", + "id": "https://ror.org/02jhqqg57" + }, + { + "label": "Leibniz Institute for Applied Geophysics", + "type": "Child", + "id": "https://ror.org/05txczf44" + }, + { + "label": "Leibniz Institute for Astrophysics Potsdam", + "type": "Child", + "id": "https://ror.org/03mrbr458" + }, + { + "label": "Leibniz Institute for Baltic Sea Research", + "type": "Child", + "id": "https://ror.org/03xh9nq73" + }, + { + "label": "Leibniz Institute for Catalysis", + "type": "Child", + "id": "https://ror.org/029hg0311" + }, + { + "label": "Leibniz Institute for Crystal Growth", + "type": "Child", + "id": "https://ror.org/037p86664" + }, + { + "label": "Leibniz Institute for East and Southeast European Studies", + "type": "Child", + "id": "https://ror.org/039s64n79" + }, + { + "label": "Leibniz Institute for Educational Trajectories", + "type": "Child", + "id": "https://ror.org/04c14rw28" + }, + { + "label": "Leibniz Institute for Financial Research SAFE", + "type": "Child", + "id": "https://ror.org/05wxywg93" + }, + { + "label": "Leibniz Institute for Jewish History and Culture – Simon Dubnow", + "type": "Child", + "id": "https://ror.org/03j1wg370" + }, + { + "label": "Leibniz-Institut für Werkstofforientierte Technologien - IWT", + "type": "Child", + "id": "https://ror.org/01xc6bj88" + }, + { + "label": "Leibniz Institute for Neurobiology", + "type": "Child", + "id": "https://ror.org/01zwmgk08" + }, + { + "label": "Leibniz Institute for Plasma Science and Technology", + "type": "Child", + "id": "https://ror.org/004hd5y14" + }, + { + "label": "Leibniz Institute for Prevention Research and Epidemiology - BIPS", + "type": "Child", + "id": "https://ror.org/02c22vc57" + }, + { + "label": "Leibniz Institute for Psychology", + "type": "Child", + "id": "https://ror.org/0165gz615" + }, + { + "label": "Leibniz Institute for Regional Geography", + "type": "Child", + "id": "https://ror.org/02wt6e634" + }, + { + "label": "Leibniz Institute for Research on Society and Space", + "type": "Child", + "id": "https://ror.org/01rkqb281" + }, + { + "label": "Leibniz Institute for Resilience Research", + "type": "Child", + "id": "https://ror.org/00q5t0010" + }, + { + "label": "Leibniz Institute for Science and Mathematics Education", + "type": "Child", + "id": "https://ror.org/008n8dd57" + }, + { + "label": "Leibniz Institute for Solid State and Materials Research", + "type": "Child", + "id": "https://ror.org/04zb59n70" + }, + { + "label": "Leibniz Institute for Tropospheric Research", + "type": "Child", + "id": "https://ror.org/03a5xsc56" + }, + { + "label": "Leibniz Institute for Zoo and Wildlife Research", + "type": "Child", + "id": "https://ror.org/05nywn832" + }, + { + "label": "Leibniz Institute for the German Language", + "type": "Child", + "id": "https://ror.org/00hvwkt50" + }, + { + "label": "Leibniz Institute for the History and Culture of Eastern Europe (GWZO)", + "type": "Child", + "id": "https://ror.org/04tjfqn96" + }, + { + "label": "GESIS - Leibniz-Institute for the Social Sciences", + "type": "Child", + "id": "https://ror.org/018afyw53" + }, + { + "label": "Leibniz Institute of Agricultural Development in Transition Economies", + "type": "Child", + "id": "https://ror.org/03hkr1v69" + }, + { + "label": "Leibniz Institute of Atmospheric Physics at the Rostock University", + "type": "Child", + "id": "https://ror.org/04enhpe73" + }, + { + "label": "Leibniz Institute of Ecological Urban and Regional Development", + "type": "Child", + "id": "https://ror.org/02t26g637" + }, + { + "label": "Leibniz Institute of Environmental Medicine", + "type": "Child", + "id": "https://ror.org/0163xqp73" + }, + { + "label": "Leibniz Institute of European History", + "type": "Child", + "id": "https://ror.org/059dyrr28" + }, + { + "label": "Leibniz Institute of Freshwater Ecology and Inland Fisheries", + "type": "Child", + "id": "https://ror.org/01nftxb06" + }, + { + "label": "Leibniz Institute of Photonic Technology", + "type": "Child", + "id": "https://ror.org/02se0t636" + }, + { + "label": "Leibniz Institute of Plant Biochemistry", + "type": "Child", + "id": "https://ror.org/01mzk5576" + }, + { + "label": "Leibniz Institute of Polymer Research", + "type": "Child", + "id": "https://ror.org/01tspta37" + }, + { + "label": "Leibniz Institute of Surface Engineering", + "type": "Child", + "id": "https://ror.org/04vx4mk32" + }, + { + "label": "Leibniz Institute of Vegetable and Ornamental Crops", + "type": "Child", + "id": "https://ror.org/01a62v145" + }, + { + "label": "Leibniz Institute on Aging - Fritz Lipmann Institute (FLI)", + "type": "Child", + "id": "https://ror.org/039a53269" + }, + { + "label": "Leibniz Research Centre for Working Environment and Human Factors", + "type": "Child", + "id": "https://ror.org/05cj29x94" + }, + { + "label": "Leibniz-Centre General Linguistics", + "type": "Child", + "id": "https://ror.org/03wz9xk91" + }, + { + "label": "Leibniz-Forschungsinstitut für Molekulare Pharmakologie", + "type": "Child", + "id": "https://ror.org/010s54n03" + }, + { + "label": "Institut für Sonnenphysik", + "type": "Child", + "id": "https://ror.org/006g31f33" + }, + { + "label": "Leibniz-Institut für Wissensmedien", + "type": "Child", + "id": "https://ror.org/03hv28176" + }, + { + "label": "Leibniz-Institute for Food Systems Biology at the Technical University of Munich", + "type": "Child", + "id": "https://ror.org/04sy7nb49" + }, + { + "label": "Leibniz-Institute for New Materials", + "type": "Child", + "id": "https://ror.org/00g656d67" + }, + { + "label": "Leibniz-Zentrum Moderner Orient", + "type": "Child", + "id": "https://ror.org/03ty9wj75" + }, + { + "label": "Leibniz-Zentrum für Literatur- und Kulturforschung", + "type": "Child", + "id": "https://ror.org/00bpta863" + }, + { + "label": "Mathematical Research Institute of Oberwolfach", + "type": "Child", + "id": "https://ror.org/001zbj766" + }, + { + "label": "Max-Born-Institute for Nonlinear Optics and Short Pulse Spectroscopy", + "type": "Child", + "id": "https://ror.org/03jbf6q27" + }, + { + "label": "Museum für Naturkunde", + "type": "Child", + "id": "https://ror.org/052d1a351" + }, + { + "label": "Paul Drude Institute for Solid State Electronics", + "type": "Child", + "id": "https://ror.org/01mk1hj86" + }, + { + "label": "Peace Research Institute Frankfurt", + "type": "Child", + "id": "https://ror.org/021k10z87" + }, + { + "label": "Potsdam Institute for Climate Impact Research", + "type": "Child", + "id": "https://ror.org/03e8s1d88" + }, + { + "label": "RWI – Leibniz Institute for Economic Research", + "type": "Child", + "id": "https://ror.org/02pse8162" + }, + { + "label": "Research Center Borstel - Leibniz Lung Center", + "type": "Child", + "id": "https://ror.org/036ragn25" + }, + { + "label": "LEIZA - Leibniz-Zentrum für Archäologie", + "type": "Child", + "id": "https://ror.org/0483qx226" + }, + { + "label": "Schloss Dagstuhl – Leibniz Center for Informatics", + "type": "Child", + "id": "https://ror.org/00k4h2615" + }, + { + "label": "Senckenberg Society for Nature Research", + "type": "Child", + "id": "https://ror.org/00xmqmx64" + }, + { + "label": "WZB Berlin Social Science Center", + "type": "Child", + "id": "https://ror.org/03k0z2z93" + }, + { + "label": "Weierstrass Institute for Applied Analysis and Stochastics", + "type": "Child", + "id": "https://ror.org/00h1x4t21" + }, + { + "label": "Zoological Research Museum Alexander Koenig", + "type": "Child", + "id": "https://ror.org/00wz4b049" + }, + { + "label": "Leibniz Institute for Immunotherapy", + "type": "Child", + "id": "https://ror.org/00xn1pr13" + }, + { + "label": "Leibniz Institute for the Analysis of Biodiversity Change", + "type": "Child", + "id": "https://ror.org/03k5bhd83" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.leibniz-gemeinschaft.de/en/home/" + ], + "aliases": [ + "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz" + ], + "acronyms": [ + "LG" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Leibniz_Association", + "labels": [ + { + "label": "Leibniz-Gemeinschaft", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001664" + ], + "preferred": null + }, + "GRID": { + "all": "grid.413453.4", + "preferred": "grid.413453.4" + }, + "ISNI": { + "all": [ + "0000 0001 2224 3060" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q680090" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01naq7912.json b/v1.51/v1/01naq7912.json new file mode 100644 index 000000000..4828f4b37 --- /dev/null +++ b/v1.51/v1/01naq7912.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/01naq7912", + "name": "Télécom Paris", + "email_address": null, + "ip_addresses": [], + "established": 1878, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Gestion Scientifique", + "type": "Child", + "id": "https://ror.org/003y0kg83" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "ParisTech", + "type": "Parent", + "id": "https://ror.org/05c2qg481" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Laboratoire Traitement et Communication de l’Information", + "type": "Child", + "id": "https://ror.org/057er4c39" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.telecom-paris.fr" + ], + "aliases": [ + "Télécom ParisTech", + "École Nationale Supérieure des Télécommunications" + ], + "acronyms": [ + "ENST" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/T%C3%A9l%C3%A9com_ParisTech", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100020299" + ], + "preferred": "100020299" + }, + "GRID": { + "all": "grid.463717.0", + "preferred": "grid.463717.0" + }, + "ISNI": { + "all": [ + "0000 0001 2108 2779" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2311820" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01nhtcw46.json b/v1.51/v1/01nhtcw46.json new file mode 100644 index 000000000..a11344337 --- /dev/null +++ b/v1.51/v1/01nhtcw46.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01nhtcw46", + "name": "Lyft (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lyft.com" + ], + "aliases": [ + "Lyft Inc", + "Lyft, Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Lyft", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01nq33970.json b/v1.51/v1/01nq33970.json new file mode 100644 index 000000000..c1ae261f7 --- /dev/null +++ b/v1.51/v1/01nq33970.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01nq33970", + "name": "Instituto Tecnológico Superior Zacatecas Norte", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 23.80631, + "lng": -103.06941, + "state": null, + "state_code": null, + "city": "Río Grande", + "geonames_city": { + "id": 8583996, + "city": "Río Grande", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.itszn.edu.mx" + ], + "aliases": [ + "ITS Zacatecas Norte", + "TecNM Campus Zacatecas Norte", + "TecNM Zacatecas Norte", + "Tecnológico Nacional de México Campus Zacatecas Norte", + "Tecnológico Nacional de México de Zacatecas Norte" + ], + "acronyms": [ + "ITSZN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 2738" + ], + "preferred": "0000 0004 1770 2738" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01nvq4081.json b/v1.51/v1/01nvq4081.json new file mode 100644 index 000000000..412803372 --- /dev/null +++ b/v1.51/v1/01nvq4081.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01nvq4081", + "name": "Museum of Glass and Jewellery in Jablonec nad Nisou", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Ministry of Culture", + "type": "Parent", + "id": "https://ror.org/00fxxw604" + } + ], + "addresses": [ + { + "lat": 50.72431, + "lng": 15.17108, + "state": null, + "state_code": null, + "city": "Jablonec nad Nisou", + "geonames_city": { + "id": 3074603, + "city": "Jablonec nad Nisou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.msb-jablonec.cz" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://cs.wikipedia.org/wiki/Muzeum_skla_a_bi%C5%BEuterie_v_Jablonci_nad_Nisou", + "labels": [ + { + "label": "Muzeum skla a bižuterie v Jablonci nad Nisou", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q114618122" + ], + "preferred": "Q114618122" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01pch6n67.json b/v1.51/v1/01pch6n67.json new file mode 100644 index 000000000..3f782dd28 --- /dev/null +++ b/v1.51/v1/01pch6n67.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01pch6n67", + "name": "Broadridge Financial Solutions (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.77066, + "lng": -73.71763, + "state": null, + "state_code": null, + "city": "Lake Success", + "geonames_city": { + "id": 5123853, + "city": "Lake Success", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.broadridge.com" + ], + "aliases": [ + "Broadridge", + "Broadridge Financial Solutions, Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Broadridge Financial Solutions", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01psx1920.json b/v1.51/v1/01psx1920.json new file mode 100644 index 000000000..3850053ce --- /dev/null +++ b/v1.51/v1/01psx1920.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01psx1920", + "name": "National Academy of Arts", + "email_address": null, + "ip_addresses": [], + "established": 1896, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institute for Cultural Research of the National Academy of Arts of Ukraine", + "type": "Child", + "id": "https://ror.org/05d917r56" + } + ], + "addresses": [ + { + "lat": 42.69751, + "lng": 23.32415, + "state": null, + "state_code": null, + "city": "Sofia", + "geonames_city": { + "id": 727011, + "city": "Sofia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nha.bg" + ], + "aliases": [], + "acronyms": [ + "NAA", + "НХА" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Academy_of_Arts", + "labels": [ + { + "label": "Национална художествена академия", + "iso639": "bg" + } + ], + "country": { + "country_name": "Bulgaria", + "country_code": "BG" + }, + "external_ids": { + "GRID": { + "all": "grid.445761.5", + "preferred": "grid.445761.5" + }, + "Wikidata": { + "all": [ + "Q1817742" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01qwmf693.json b/v1.51/v1/01qwmf693.json new file mode 100644 index 000000000..2b2d0e56e --- /dev/null +++ b/v1.51/v1/01qwmf693.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01qwmf693", + "name": "Harris (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "L3Harris (United States)", + "type": "Successor", + "id": "https://ror.org/05fhwtx59" + } + ], + "addresses": [ + { + "lat": 28.08363, + "lng": -80.60811, + "state": null, + "state_code": null, + "city": "Melbourne", + "geonames_city": { + "id": 4163971, + "city": "Melbourne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Harris", + "Harris Corporation" + ], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": "https://en.wikipedia.org/wiki/Harris_Corporation", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016279" + ], + "preferred": "100016279" + }, + "ISNI": { + "all": [ + "0000 0000 9289 1250" + ], + "preferred": "0000 0000 9289 1250" + }, + "Wikidata": { + "all": [ + "Q1433308" + ], + "preferred": "Q1433308" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01qz28660.json b/v1.51/v1/01qz28660.json new file mode 100644 index 000000000..c0087118c --- /dev/null +++ b/v1.51/v1/01qz28660.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/01qz28660", + "name": "Alfa University College", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 3.04384, + "lng": 101.58062, + "state": null, + "state_code": null, + "city": "Subang Jaya", + "geonames_city": { + "id": 8504423, + "city": "Subang Jaya", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://alfa.edu.my" + ], + "aliases": [ + "Alfa International College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ALFA_University_College", + "labels": [], + "country": { + "country_name": "Malaysia", + "country_code": "MY" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q16250609" + ], + "preferred": "Q16250609" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01s0v4q65.json b/v1.51/v1/01s0v4q65.json new file mode 100644 index 000000000..4cd19d494 --- /dev/null +++ b/v1.51/v1/01s0v4q65.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/01s0v4q65", + "name": "Governmental Agency for IT Development", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.49835, + "lng": 19.04045, + "state": null, + "state_code": null, + "city": "Budapest", + "geonames_city": { + "id": 3054643, + "city": "Budapest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kifu.gov.hu/" + ], + "aliases": [ + "Governmental Information Technology Development Agency" + ], + "acronyms": [ + "KIFU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "external_ids": { + "GRID": { + "all": "grid.509581.0", + "preferred": "grid.509581.0" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01s63dd48.json b/v1.51/v1/01s63dd48.json new file mode 100644 index 000000000..e749c196b --- /dev/null +++ b/v1.51/v1/01s63dd48.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01s63dd48", + "name": "A.O. Smith (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.0389, + "lng": -87.90647, + "state": null, + "state_code": null, + "city": "Milwaukee", + "geonames_city": { + "id": 5263045, + "city": "Milwaukee", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aosmith.com" + ], + "aliases": [ + "A. O. Smith", + "A. O. Smith Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "A.O. Smith", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2180 7071" + ], + "preferred": "0000 0001 2180 7071" + }, + "Wikidata": { + "all": [ + "Q4648219" + ], + "preferred": "Q4648219" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01t4ttr56.json b/v1.51/v1/01t4ttr56.json new file mode 100644 index 000000000..58df41909 --- /dev/null +++ b/v1.51/v1/01t4ttr56.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/01t4ttr56", + "name": "Center for Scalable Data Analytics and Artificial Intelligence", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.05089, + "lng": 13.73832, + "state": null, + "state_code": null, + "city": "Dresden", + "geonames_city": { + "id": 2935022, + "city": "Dresden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://scads.ai" + ], + "aliases": [ + "ScaDS.AI" + ], + "acronyms": [], + "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.51/v1/01v1jam04.json b/v1.51/v1/01v1jam04.json new file mode 100644 index 000000000..77495a885 --- /dev/null +++ b/v1.51/v1/01v1jam04.json @@ -0,0 +1,179 @@ +{ + "id": "https://ror.org/01v1jam04", + "name": "Ludwig Boltzmann Gesellschaft", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ludwig Boltzmann Cluster Arthritis and Rehabilitation", + "type": "Child", + "id": "https://ror.org/04pkg4a74" + }, + { + "label": "Ludwig Boltzmann Cluster for Cardiovascular Research", + "type": "Child", + "id": "https://ror.org/0053xaw54" + }, + { + "label": "Ludwig Boltzmann Institut Health Promotion Research", + "type": "Child", + "id": "https://ror.org/03f6d5009" + }, + { + "label": "Ludwig Boltzmann Institut für Epilepsie und Neuromuskuläre Erkrankungen", + "type": "Child", + "id": "https://ror.org/00zmn9v56" + }, + { + "label": "Ludwig Boltzmann Institute Applied Diagnostics", + "type": "Child", + "id": "https://ror.org/03gjxds17" + }, + { + "label": "Ludwig Boltzmann Institute for Age Research", + "type": "Child", + "id": "https://ror.org/017faj253" + }, + { + "label": "Ludwig Boltzmann Institute for COPD And Respiratory Epidemiology", + "type": "Child", + "id": "https://ror.org/01tf5aq62" + }, + { + "label": "Ludwig Boltzmann Institute for Cancer Research", + "type": "Child", + "id": "https://ror.org/04abv6630" + }, + { + "label": "Ludwig Boltzmann Institute for Experimental and Clinical Traumatology", + "type": "Child", + "id": "https://ror.org/00a8zdv13" + }, + { + "label": "Austrian Institute for Health Technology Assessment GmbH", + "type": "Child", + "id": "https://ror.org/00v16df20" + }, + { + "label": "Ludwig Boltzmann Institute for Lung Vascular Research", + "type": "Child", + "id": "https://ror.org/009r5p347" + }, + { + "label": "Ludwig Boltzmann Institute for Rare and Undiagnosed Diseases", + "type": "Child", + "id": "https://ror.org/03hgkg910" + }, + { + "label": "Ludwig Boltzmann Institute for Retinology and Biomicroscopic Laser Surgery", + "type": "Child", + "id": "https://ror.org/007b74r43" + }, + { + "label": "Ludwig Boltzmann Institute for Translational Heart Failure Research", + "type": "Child", + "id": "https://ror.org/043256924" + }, + { + "label": "Ludwig Boltzmann Institute of Electrical Stimulation and Physical Rehabilitation", + "type": "Child", + "id": "https://ror.org/020sst346" + }, + { + "label": "Ludwig Boltzmann Institute of Human Rights", + "type": "Child", + "id": "https://ror.org/00gsyt497" + }, + { + "label": "Ludwig Boltzmann Institute of Osteology", + "type": "Child", + "id": "https://ror.org/051kb4j80" + }, + { + "label": "Ludwig Boltzmann für Klinische Neurobiologie", + "type": "Child", + "id": "https://ror.org/02ekkcr74" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lbg.ac.at/en" + ], + "aliases": [], + "acronyms": [ + "LBG" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ludwig_Boltzmann_Gesellschaft", + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "GRID": { + "all": "grid.419350.a", + "preferred": "grid.419350.a" + }, + "ISNI": { + "all": [ + "0000 0001 0860 6806" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1874246" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01vbv2a78.json b/v1.51/v1/01vbv2a78.json new file mode 100644 index 000000000..3b5a338ec --- /dev/null +++ b/v1.51/v1/01vbv2a78.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/01vbv2a78", + "name": "Emedic Salud", + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://emedicsalud.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01wfdn362.json b/v1.51/v1/01wfdn362.json new file mode 100644 index 000000000..c29023a94 --- /dev/null +++ b/v1.51/v1/01wfdn362.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/01wfdn362", + "name": "Ministerio de Educación del Ecuador", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -0.22985, + "lng": -78.52495, + "state": null, + "state_code": null, + "city": "Quito", + "geonames_city": { + "id": 3652462, + "city": "Quito", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://educacion.gob.ec" + ], + "aliases": [ + "MINEDUC - Ministerio de Educación del Ecuador", + "Ministry of Education of Ecuador" + ], + "acronyms": [ + "MINEDUC" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Ministerio_de_Educaci%C3%B3n_de_Ecuador", + "labels": [], + "country": { + "country_name": "Ecuador", + "country_code": "EC" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q25209621" + ], + "preferred": "Q25209621" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01xc2fv34.json b/v1.51/v1/01xc2fv34.json new file mode 100644 index 000000000..b61d518f4 --- /dev/null +++ b/v1.51/v1/01xc2fv34.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01xc2fv34", + "name": "Mosaic Company (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.94752, + "lng": -82.45843, + "state": null, + "state_code": null, + "city": "Tampa", + "geonames_city": { + "id": 4174757, + "city": "Tampa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mosaicco.com" + ], + "aliases": [ + "Mosaic Co", + "The Mosaic Co" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Mosaic_Company", + "labels": [ + { + "label": "Mosaic Company", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100011350" + ], + "preferred": "100011350" + }, + "Wikidata": { + "all": [ + "Q7752327" + ], + "preferred": "Q7752327" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01xkakk17.json b/v1.51/v1/01xkakk17.json new file mode 100644 index 000000000..734c33fba --- /dev/null +++ b/v1.51/v1/01xkakk17.json @@ -0,0 +1,163 @@ +{ + "id": "https://ror.org/01xkakk17", + "name": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO Arc", + "type": "Child", + "id": "https://ror.org/02zzkv309" + }, + { + "label": "HES-SO Fribourg", + "type": "Child", + "id": "https://ror.org/02kkwkt79" + }, + { + "label": "HES-SO Genève", + "type": "Child", + "id": "https://ror.org/007gfwn20" + }, + { + "label": "HES-SO Valais-Wallis", + "type": "Child", + "id": "https://ror.org/03r5zec51" + }, + { + "label": "HETSL - Haute école de travail social et de la santé Lausanne", + "type": "Child", + "id": "https://ror.org/0278ff426" + }, + { + "label": "HEMU - Haute École de Musique", + "type": "Child", + "id": "https://ror.org/028xjkf45" + }, + { + "label": "EHL Hospitality Business School", + "type": "Child", + "id": "https://ror.org/02kqs4h17" + }, + { + "label": "La Manufacture - Haute école des arts de la scène", + "type": "Child", + "id": "https://ror.org/0067qp350" + }, + { + "label": "HEIG-VD", + "type": "Child", + "id": "https://ror.org/02rzr3z90" + }, + { + "label": "CHANGINS - Haute école de viticulture et œnologie", + "type": "Child", + "id": "https://ror.org/03nf8d138" + }, + { + "label": "Haute École de Santé Vaud", + "type": "Child", + "id": "https://ror.org/04j47fz63" + }, + { + "label": "ECAL/Ecole cantonale d'art de Lausanned’art de Lausanne", + "type": "Child", + "id": "https://ror.org/03jwjxy73" + }, + { + "label": "Institut et Haute Ecole de la Santé La Source", + "type": "Child", + "id": "https://ror.org/02yr4wk92" + } + ], + "addresses": [ + { + "lat": 47.36493, + "lng": 7.34453, + "state": null, + "state_code": null, + "city": "Delémont", + "geonames_city": { + "id": 2661035, + "city": "Delémont", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hes-so.ch" + ], + "aliases": [ + "Fachhochschule Westschweiz", + "Haute École Spécialisée de Suisse Occidentale", + "University of Applied Sciences and Arts Western Switzerland" + ], + "acronyms": [ + "HES-SO" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Applied_Sciences_Western_Switzerland", + "labels": [ + { + "label": "HES-SO Haute école spécialisée de Suisse occidentale", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.5681.a", + "preferred": "grid.5681.a" + }, + "ISNI": { + "all": [ + "0000 0001 0943 1999" + ], + "preferred": "0000 0001 0943 1999" + }, + "Wikidata": { + "all": [ + "Q168003" + ], + "preferred": "Q168003" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01y2jtd41.json b/v1.51/v1/01y2jtd41.json new file mode 100644 index 000000000..2108c0646 --- /dev/null +++ b/v1.51/v1/01y2jtd41.json @@ -0,0 +1,147 @@ +{ + "id": "https://ror.org/01y2jtd41", + "name": "University of Wisconsin–Madison", + "email_address": null, + "ip_addresses": [], + "established": 1848, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Morgridge Institute for Research", + "type": "Child", + "id": "https://ror.org/05cb4rb43" + }, + { + "label": "North Temperate Lakes Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/04gq8q482" + }, + { + "label": "University of Wisconsin System", + "type": "Parent", + "id": "https://ror.org/03ydkyb10" + }, + { + "label": "National Atmospheric Deposition Program", + "type": "Related", + "id": "https://ror.org/03b8vas82" + }, + { + "label": "McMurdo Dry Valleys Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/04r3s7465" + } + ], + "addresses": [ + { + "lat": 43.07305, + "lng": -89.40123, + "state": null, + "state_code": null, + "city": "Madison", + "geonames_city": { + "id": 5261457, + "city": "Madison", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.wisc.edu/" + ], + "aliases": [ + "UW–Madison" + ], + "acronyms": [ + "UW" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Wisconsin%E2%80%93Madison", + "labels": [ + { + "label": "Universidad de Wisconsin-Madison", + "iso639": "es" + }, + { + "label": "Université du Wisconsin à Madison", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007015", + "100008959", + "100005996", + "100007870", + "100008301", + "100008028", + "100008237", + "100008161", + "100010495", + "100009627", + "100010284", + "100005911", + "100007925", + "100005902", + "100012787" + ], + "preferred": "100007015" + }, + "GRID": { + "all": "grid.14003.36", + "preferred": "grid.14003.36" + }, + "ISNI": { + "all": [ + "0000 0001 2167 3675" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q838330", + "Q33122195", + "Q7662222" + ], + "preferred": "Q838330" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01y60h972.json b/v1.51/v1/01y60h972.json new file mode 100644 index 000000000..fe0846b19 --- /dev/null +++ b/v1.51/v1/01y60h972.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01y60h972", + "name": "Ramon Magsaysay Memorial Colleges", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.11278, + "lng": 125.17167, + "state": null, + "state_code": null, + "city": "General Santos", + "geonames_city": { + "id": 1713022, + "city": "General Santos", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rmmc.edu.ph" + ], + "aliases": [], + "acronyms": [ + "RMMC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ramon_Magsaysay_Memorial_Colleges", + "labels": [], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0474 5472" + ], + "preferred": "0000 0004 0474 5472" + }, + "Wikidata": { + "all": [ + "Q7289847" + ], + "preferred": "Q7289847" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01y92wg94.json b/v1.51/v1/01y92wg94.json new file mode 100644 index 000000000..ab9d6470b --- /dev/null +++ b/v1.51/v1/01y92wg94.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01y92wg94", + "name": "Universidad Tecnológica de Querétaro", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.58806, + "lng": -100.38806, + "state": null, + "state_code": null, + "city": "Querétaro City", + "geonames_city": { + "id": 3991164, + "city": "Querétaro City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uteq.edu.mx" + ], + "aliases": [ + "Technological University of Querétaro" + ], + "acronyms": [ + "UTEQ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q97176180" + ], + "preferred": "Q97176180" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01y9bpm73.json b/v1.51/v1/01y9bpm73.json new file mode 100644 index 000000000..2a5cfd035 --- /dev/null +++ b/v1.51/v1/01y9bpm73.json @@ -0,0 +1,152 @@ +{ + "id": "https://ror.org/01y9bpm73", + "name": "University of Göttingen", + "email_address": null, + "ip_addresses": [], + "established": 1734, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen", + "type": "Child", + "id": "https://ror.org/00cd95c65" + }, + { + "label": "Institute for Small Business Economics", + "type": "Child", + "id": "https://ror.org/031q2en94" + }, + { + "label": "Leibniz ScienceCampus Primate Cognition", + "type": "Child", + "id": "https://ror.org/05ehdmg18" + }, + { + "label": "Multiscale Bioimaging", + "type": "Child", + "id": "https://ror.org/05xy1nn52" + }, + { + "label": "Niedersächsische Staats-und Universitätsbibliothek Göttingen", + "type": "Child", + "id": "https://ror.org/05745n787" + }, + { + "label": "Institut für Zuckerrübenforschung", + "type": "Related", + "id": "https://ror.org/05831r008" + }, + { + "label": "Marienkrankenhaus Kassel", + "type": "Related", + "id": "https://ror.org/01ddazc14" + }, + { + "label": "Universitätsmedizin Göttingen", + "type": "Related", + "id": "https://ror.org/021ft0n22" + }, + { + "label": "Soziologisches Forschungsinstitut Göttingen", + "type": "Related", + "id": "https://ror.org/040pxfk62" + }, + { + "label": "CAIMed - Niedersächsisches Zentrum für KI und Kausale Methoden in der Medizin", + "type": "Related", + "id": "https://ror.org/04n901n71" + } + ], + "addresses": [ + { + "lat": 51.53443, + "lng": 9.93228, + "state": null, + "state_code": null, + "city": "Göttingen", + "geonames_city": { + "id": 2918632, + "city": "Göttingen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uni-goettingen.de/en/1.html" + ], + "aliases": [], + "acronyms": [ + "GAU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_G%C3%B6ttingen", + "labels": [ + { + "label": "Georg-August-Universität Göttingen", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003385", + "501100003383", + "501100004939" + ], + "preferred": "501100003385" + }, + "GRID": { + "all": "grid.7450.6", + "preferred": "grid.7450.6" + }, + "ISNI": { + "all": [ + "0000 0001 2364 4210" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q152838" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01ykjav28.json b/v1.51/v1/01ykjav28.json new file mode 100644 index 000000000..7db0200cc --- /dev/null +++ b/v1.51/v1/01ykjav28.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01ykjav28", + "name": "Raymond James Financial (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.12342, + "lng": -82.52853, + "state": null, + "state_code": null, + "city": "Tampa-St. Petersburg-Clearwater, FL", + "geonames_city": { + "id": 12213342, + "city": "Tampa-St. Petersburg-Clearwater, FL", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.raymondjames.com" + ], + "aliases": [ + "Raymond James", + "Raymond James Financial Services Inc.", + "Raymond James Technology and Communications Investment Banking Group" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Raymond James Financial", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0625 2428" + ], + "preferred": "0000 0004 0625 2428" + }, + "Wikidata": { + "all": [ + "Q99614260" + ], + "preferred": "Q99614260" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01ynzx943.json b/v1.51/v1/01ynzx943.json new file mode 100644 index 000000000..75b599167 --- /dev/null +++ b/v1.51/v1/01ynzx943.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01ynzx943", + "name": "Databricks (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://databricks.com" + ], + "aliases": [ + "Databricks Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Databricks", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01ypbmk97.json b/v1.51/v1/01ypbmk97.json new file mode 100644 index 000000000..ae695d54d --- /dev/null +++ b/v1.51/v1/01ypbmk97.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/01ypbmk97", + "name": "Verisign (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.96872, + "lng": -77.3411, + "state": null, + "state_code": null, + "city": "Reston", + "geonames_city": { + "id": 4781530, + "city": "Reston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.verisigninc.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Verisign", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/01z05qp51.json b/v1.51/v1/01z05qp51.json new file mode 100644 index 000000000..3a538cc9e --- /dev/null +++ b/v1.51/v1/01z05qp51.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/01z05qp51", + "name": "NamesforLife (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.73698, + "lng": -84.48387, + "state": null, + "state_code": null, + "city": "East Lansing", + "geonames_city": { + "id": 4991640, + "city": "East Lansing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.namesforlife.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.474679.f", + "preferred": "grid.474679.f" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/01z3j1770.json b/v1.51/v1/01z3j1770.json new file mode 100644 index 000000000..aeb1b39f8 --- /dev/null +++ b/v1.51/v1/01z3j1770.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01z3j1770", + "name": "Crewkerne Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.88298, + "lng": -2.79588, + "state": null, + "state_code": null, + "city": "Crewkerne", + "geonames_city": { + "id": 2652000, + "city": "Crewkerne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/crewkerne-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.439537.f", + "preferred": "grid.439537.f" + }, + "Wikidata": { + "all": [ + "Q30292942" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/021a2zz52.json b/v1.51/v1/021a2zz52.json new file mode 100644 index 000000000..5c2a808ac --- /dev/null +++ b/v1.51/v1/021a2zz52.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/021a2zz52", + "name": "Hong Kong Chu Hai College", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.39175, + "lng": 113.97157, + "state": null, + "state_code": null, + "city": "Tuen Mun", + "geonames_city": { + "id": 1818446, + "city": "Tuen Mun", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chuhai.edu.hk" + ], + "aliases": [ + "Chu Hai College", + "Chu Hai College of Higher Education", + "Chu Hai University in Guangzhou", + "珠海學院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Chu_Hai_College_of_Higher_Education", + "labels": [ + { + "label": "香港珠海學院", + "iso639": "zh" + } + ], + "country": { + "country_name": "Hong Kong", + "country_code": "HK" + }, + "external_ids": { + "GRID": { + "all": "grid.461950.f", + "preferred": "grid.461950.f" + }, + "ISNI": { + "all": [ + "0000 0004 1761 5167" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5115137" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/021ft0n22.json b/v1.51/v1/021ft0n22.json new file mode 100644 index 000000000..b2dbeb6e9 --- /dev/null +++ b/v1.51/v1/021ft0n22.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/021ft0n22", + "name": "Universitätsmedizin Göttingen", + "email_address": null, + "ip_addresses": [], + "established": 1732, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Klinikum Bremen-Mitte", + "type": "Related", + "id": "https://ror.org/05j1w2b44" + }, + { + "label": "University of Göttingen", + "type": "Related", + "id": "https://ror.org/01y9bpm73" + }, + { + "label": "CAIMed - Niedersächsisches Zentrum für KI und Kausale Methoden in der Medizin", + "type": "Related", + "id": "https://ror.org/04n901n71" + } + ], + "addresses": [ + { + "lat": 51.53443, + "lng": 9.93228, + "state": null, + "state_code": null, + "city": "Göttingen", + "geonames_city": { + "id": 2918632, + "city": "Göttingen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umg.eu/" + ], + "aliases": [], + "acronyms": [ + "UMG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "University Medical Center Göttingen", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "100019147" + ], + "preferred": "100019147" + }, + "GRID": { + "all": "grid.411984.1", + "preferred": "grid.411984.1" + }, + "ISNI": { + "all": [ + "0000 0001 0482 5331" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2496408" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/022d68h52.json b/v1.51/v1/022d68h52.json new file mode 100644 index 000000000..cd1bb138d --- /dev/null +++ b/v1.51/v1/022d68h52.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/022d68h52", + "name": "Institut für Tourismus- und Bäderforschung in Nordeuropa (NIT) GmbH (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 54.32133, + "lng": 10.13489, + "state": null, + "state_code": null, + "city": "Kiel", + "geonames_city": { + "id": 2891122, + "city": "Kiel", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nit-kiel.de" + ], + "aliases": [ + "Institut für Tourismus- und Bäderforschung in Nordeuropa", + "Institut für Tourismus- und Bäderforschung in Nordeuropa (NIT)", + "Institute for Tourism Research in Northern Europe" + ], + "acronyms": [ + "NIT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut für Tourismus- und Bäderforschung in Nordeuropa (NIT) GmbH", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/022nvg924.json b/v1.51/v1/022nvg924.json new file mode 100644 index 000000000..3c3e31cf7 --- /dev/null +++ b/v1.51/v1/022nvg924.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/022nvg924", + "name": "Agari Data (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.55855, + "lng": -122.27108, + "state": null, + "state_code": null, + "city": "Foster City", + "geonames_city": { + "id": 5350159, + "city": "Foster City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.agari.com" + ], + "aliases": [ + "Agari", + "Agari Data Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Agari Data", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/022t7x179.json b/v1.51/v1/022t7x179.json new file mode 100644 index 000000000..40a028290 --- /dev/null +++ b/v1.51/v1/022t7x179.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/022t7x179", + "name": "ECS (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.84622, + "lng": -77.30637, + "state": null, + "state_code": null, + "city": "Fairfax", + "geonames_city": { + "id": 4758023, + "city": "Fairfax", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ecstech.com" + ], + "aliases": [ + "ECS Federal", + "ECS Federal LLC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "ECS", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0231an742.json b/v1.51/v1/0231an742.json new file mode 100644 index 000000000..57976f633 --- /dev/null +++ b/v1.51/v1/0231an742.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0231an742", + "name": "Jiangmen Underground Neutrino Observatory", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institute of High Energy Physics", + "type": "Parent", + "id": "https://ror.org/03v8tnc06" + } + ], + "addresses": [ + { + "lat": 22.40801, + "lng": 112.61749, + "state": null, + "state_code": null, + "city": "Kaiping Shi", + "geonames_city": { + "id": 1804862, + "city": "Kaiping Shi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://juno.ihep.cas.cn" + ], + "aliases": [ + "Kaiping Neutrino Research Center" + ], + "acronyms": [ + "JUNO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Jiangmen_Underground_Neutrino_Observatory", + "labels": [ + { + "label": "江门地下中微子实验观测站", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q19840266" + ], + "preferred": "Q19840266" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/023cz3h96.json b/v1.51/v1/023cz3h96.json new file mode 100644 index 000000000..95ac3b22c --- /dev/null +++ b/v1.51/v1/023cz3h96.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/023cz3h96", + "name": "Exergetic Systems (Canada)", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.81161, + "lng": -123.49731, + "state": null, + "state_code": null, + "city": "Saltspring Island", + "geonames_city": { + "id": 6139826, + "city": "Saltspring Island", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.exergeticsystems.com" + ], + "aliases": [ + "Exergetic Systems Limited" + ], + "acronyms": [ + "ESI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Exergetic Systems", + "iso639": "en" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/023pm6532.json b/v1.51/v1/023pm6532.json new file mode 100644 index 000000000..e7d83d267 --- /dev/null +++ b/v1.51/v1/023pm6532.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/023pm6532", + "name": "An Giang University", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Vietnam National University Ho Chi Minh City", + "type": "Parent", + "id": "https://ror.org/00waaqh38" + } + ], + "addresses": [ + { + "lat": 10.38639, + "lng": 105.43518, + "state": null, + "state_code": null, + "city": "Long Xuyen", + "geonames_city": { + "id": 1575627, + "city": "Long Xuyen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.agu.edu.vn" + ], + "aliases": [], + "acronyms": [ + "AGU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/An_Giang_University", + "labels": [ + { + "label": "Trường Đại học An Giang", + "iso639": "vi" + } + ], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": { + "GRID": { + "all": "grid.448947.2", + "preferred": "grid.448947.2" + }, + "ISNI": { + "all": [ + "0000 0000 9828 7134" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4750013" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/024ncvw44.json b/v1.51/v1/024ncvw44.json new file mode 100644 index 000000000..c681d5299 --- /dev/null +++ b/v1.51/v1/024ncvw44.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/024ncvw44", + "name": "Dataminr (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dataminr.com" + ], + "aliases": [ + "Dataminr Inc", + "EBH Enterprises Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Dataminr", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0258as409.json b/v1.51/v1/0258as409.json new file mode 100644 index 000000000..4dcb37ad2 --- /dev/null +++ b/v1.51/v1/0258as409.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/0258as409", + "name": "Kuaishou (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Beijing Kuaishou Technology Ltd", + "Kuaishou Technology", + "Kwai Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Kuaishou", + "iso639": null + }, + { + "label": "北京快手科技有限公司", + "iso639": "zh" + }, + { + "label": "快手", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/025fw7a54.json b/v1.51/v1/025fw7a54.json new file mode 100644 index 000000000..f29254feb --- /dev/null +++ b/v1.51/v1/025fw7a54.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/025fw7a54", + "name": "Friedrich-Loeffler-Institut", + "email_address": null, + "ip_addresses": [], + "established": 1910, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Federal Ministry of Food and Agriculture", + "type": "Parent", + "id": "https://ror.org/04jw21793" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.fli.de/en/home/" + ], + "aliases": [ + "Friedrich-Loeffler-Institut Bundesforschungsinstitut für Tiergesundheit", + "Friedrich-Loeffler-Institut Federal Research Institute for Animal Health" + ], + "acronyms": [ + "FLI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Friedrich_Loeffler_Institute", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.417834.d", + "preferred": "grid.417834.d" + }, + "ISNI": { + "all": [ + "0000 0001 0710 6404" + ], + "preferred": "0000 0001 0710 6404" + }, + "Wikidata": { + "all": [ + "Q1457808" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/025vngs54.json b/v1.51/v1/025vngs54.json new file mode 100644 index 000000000..abfe9f9aa --- /dev/null +++ b/v1.51/v1/025vngs54.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/025vngs54", + "name": "Universitätsmedizin Greifswald", + "email_address": null, + "ip_addresses": [], + "established": 1456, + "types": [ + "Education", + "Healthcare" + ], + "relationships": [ + { + "label": "Universität Greifswald", + "type": "Related", + "id": "https://ror.org/00r1edq15" + }, + { + "label": "Dietrich Bonhoeffer Klinikum", + "type": "Related", + "id": "https://ror.org/04qa46285" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.medizin.uni-greifswald.de" + ], + "aliases": [ + "University Medicine Greifswald" + ], + "acronyms": [ + "UMG" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Greifswald_University_Hospital", + "labels": [ + { + "label": "Greifswald University Hospital", + "iso639": "en" + }, + { + "label": "Greifswald University Medicine", + "iso639": "en" + }, + { + "label": "University Medicine of Greifswald", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.412469.c", + "preferred": "grid.412469.c" + }, + "ISNI": { + "all": [ + "0000 0000 9116 8976" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2496421" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/025vp2923.json b/v1.51/v1/025vp2923.json new file mode 100644 index 000000000..1498a5d81 --- /dev/null +++ b/v1.51/v1/025vp2923.json @@ -0,0 +1,142 @@ +{ + "id": "https://ror.org/025vp2923", + "name": "Institut Mines-Télécom", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "IMT Mines Albi", + "type": "Child", + "id": "https://ror.org/00bq8vv83" + }, + { + "label": "Institut Mines-Télécom Business School", + "type": "Child", + "id": "https://ror.org/00nsf1h45" + }, + { + "label": "Telecom SudParis", + "type": "Child", + "id": "https://ror.org/05xvk4r52" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Parent", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "EURECOM", + "type": "Related", + "id": "https://ror.org/00sse7z02" + }, + { + "label": "IMT Atlantique", + "type": "Related", + "id": "https://ror.org/030hj3061" + }, + { + "label": "IMT Nord Europe", + "type": "Related", + "id": "https://ror.org/042rh9p26" + }, + { + "label": "École Nationale Supérieure d'Électrotechnique, d'Électronique, d'Informatique, d'Hydraulique et des Télécommunications", + "type": "Related", + "id": "https://ror.org/05wfw4946" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.mines-telecom.fr/en/" + ], + "aliases": [ + "Groupe des Ecoles des Télécommunications" + ], + "acronyms": [ + "IMT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_Mines-T%C3%A9l%C3%A9com", + "labels": [ + { + "label": "Institut Télécom", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018539" + ], + "preferred": "100018539" + }, + "GRID": { + "all": "grid.29773.38", + "preferred": "grid.29773.38" + }, + "ISNI": { + "all": [ + "0000 0001 2202 567X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7885718" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/025wndx93.json b/v1.51/v1/025wndx93.json new file mode 100644 index 000000000..258a39eeb --- /dev/null +++ b/v1.51/v1/025wndx93.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/025wndx93", + "name": "Université de Parakou", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 9.33716, + "lng": 2.63031, + "state": null, + "state_code": null, + "city": "Parakou", + "geonames_city": { + "id": 2392204, + "city": "Parakou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-parakou.bj" + ], + "aliases": [], + "acronyms": [ + "UP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "University of Parakou", + "iso639": "en" + } + ], + "country": { + "country_name": "Benin", + "country_code": "BJ" + }, + "external_ids": { + "GRID": { + "all": "grid.440525.2", + "preferred": "grid.440525.2" + }, + "ISNI": { + "all": [ + "0000 0004 0457 5047" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3551659" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0272j5188.json b/v1.51/v1/0272j5188.json new file mode 100644 index 000000000..a97c3de29 --- /dev/null +++ b/v1.51/v1/0272j5188.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/0272j5188", + "name": "Northern Arizona University", + "email_address": null, + "ip_addresses": [], + "established": 1899, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Bonanza Creek Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/01nysf027" + }, + { + "label": "Arizona's Public Universities", + "type": "Parent", + "id": "https://ror.org/0054f1w39" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + }, + { + "label": "McMurdo Dry Valleys Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/04r3s7465" + } + ], + "addresses": [ + { + "lat": 35.19807, + "lng": -111.65127, + "state": null, + "state_code": null, + "city": "Flagstaff", + "geonames_city": { + "id": 5294810, + "city": "Flagstaff", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nau.edu/" + ], + "aliases": [ + "Arizona State College of Flagstaff" + ], + "acronyms": [ + "NAU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Northern_Arizona_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008883" + ], + "preferred": null + }, + "GRID": { + "all": "grid.261120.6", + "preferred": "grid.261120.6" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8040" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q139901" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0279hze33.json b/v1.51/v1/0279hze33.json new file mode 100644 index 000000000..8436eb143 --- /dev/null +++ b/v1.51/v1/0279hze33.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/0279hze33", + "name": "Citizens Financial Group (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.82399, + "lng": -71.41283, + "state": null, + "state_code": null, + "city": "Providence", + "geonames_city": { + "id": 5224151, + "city": "Providence", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.citizensbank.com" + ], + "aliases": [ + "Citizens Bank", + "Citizens Bank N.A.", + "Citizens Financial", + "Citizens Financial Group Inc" + ], + "acronyms": [ + "CFG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Citizens Financial Group", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/027cbpk76.json b/v1.51/v1/027cbpk76.json new file mode 100644 index 000000000..c51043933 --- /dev/null +++ b/v1.51/v1/027cbpk76.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/027cbpk76", + "name": "CBRE Group (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.78306, + "lng": -96.80667, + "state": null, + "state_code": null, + "city": "Dallas", + "geonames_city": { + "id": 4684888, + "city": "Dallas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cbre.us" + ], + "aliases": [ + "CBRE Group Inc" + ], + "acronyms": [ + "CBRE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CBRE_Group", + "labels": [ + { + "label": "CBRE Group", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q1023013" + ], + "preferred": "Q1023013" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/027cyf249.json b/v1.51/v1/027cyf249.json new file mode 100644 index 000000000..5bc35966d --- /dev/null +++ b/v1.51/v1/027cyf249.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/027cyf249", + "name": "Društvo ekonomista „Ekonomika“, Niš", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.32472, + "lng": 21.90333, + "state": null, + "state_code": null, + "city": "Niš", + "geonames_city": { + "id": 787657, + "city": "Niš", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ekonomika.org.rs/en/publisher.html" + ], + "aliases": [ + "Društvo ekonomista „Ekonomika“ Niš" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Society of Economists \"Ekonomika\" Niš", + "iso639": "en" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52663843" + ], + "preferred": "Q52663843" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/027d3b308.json b/v1.51/v1/027d3b308.json new file mode 100644 index 000000000..f9cba1814 --- /dev/null +++ b/v1.51/v1/027d3b308.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/027d3b308", + "name": "American Tower (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.35843, + "lng": -71.05977, + "state": null, + "state_code": null, + "city": "Boston", + "geonames_city": { + "id": 4930956, + "city": "Boston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.americantower.com" + ], + "aliases": [ + "ATC LP LLC", + "American Tower Corp", + "American Tower Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/American_Tower", + "labels": [ + { + "label": "American Tower", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q4745263" + ], + "preferred": "Q4745263" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0286hg268.json b/v1.51/v1/0286hg268.json new file mode 100644 index 000000000..28c58e4e3 --- /dev/null +++ b/v1.51/v1/0286hg268.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/0286hg268", + "name": "The Fafo Institute for Labour and Social Research", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Fafo Foundation", + "type": "Parent", + "id": "https://ror.org/00ee9xb13" + } + ], + "addresses": [ + { + "lat": 59.91273, + "lng": 10.74609, + "state": null, + "state_code": null, + "city": "Oslo", + "geonames_city": { + "id": 3143244, + "city": "Oslo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fafo.no" + ], + "aliases": [ + "Fafo Institute for Labour and Social Research", + "Fafo Institutt for arbeidslivs- og velferdsforskning" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/029vc8149.json b/v1.51/v1/029vc8149.json new file mode 100644 index 000000000..12bf3cc9f --- /dev/null +++ b/v1.51/v1/029vc8149.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/029vc8149", + "name": "Chongqing Airport", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.56026, + "lng": 106.55771, + "state": null, + "state_code": null, + "city": "Chongqing", + "geonames_city": { + "id": 1814906, + "city": "Chongqing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cqa.cn" + ], + "aliases": [ + "Chongqing International Airport" + ], + "acronyms": [ + "CQA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02ajrys73.json b/v1.51/v1/02ajrys73.json new file mode 100644 index 000000000..eea2be3ba --- /dev/null +++ b/v1.51/v1/02ajrys73.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/02ajrys73", + "name": "Empower AI (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.96872, + "lng": -77.3411, + "state": null, + "state_code": null, + "city": "Reston", + "geonames_city": { + "id": 4781530, + "city": "Reston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.empower.ai" + ], + "aliases": [ + "NCI Information Systems" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Empower AI", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02apw2076.json b/v1.51/v1/02apw2076.json new file mode 100644 index 000000000..023b36f61 --- /dev/null +++ b/v1.51/v1/02apw2076.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02apw2076", + "name": "Xiaohongshu (Little Red Book) (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.22222, + "lng": 121.45806, + "state": null, + "state_code": null, + "city": "Shanghai", + "geonames_city": { + "id": 1796236, + "city": "Shanghai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.xiaohongshu.com" + ], + "aliases": [ + "Information Technology (Shanghai) Co Ltd", + "Little Red Book", + "Xiaohongshu", + "Xingyin Information Technology (Shanghai) Co Ltd.", + "Xingyin Information Technology Shanghai Co Ltd", + "Xingyin Xinxi Keji (Shanghai) Youxian Gongsi", + "小红书" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Xiaohongshu (Little Red Book)", + "iso639": "en" + }, + { + "label": "行吟信息科技(上海)有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q105095422" + ], + "preferred": "Q105095422" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02b92xv22.json b/v1.51/v1/02b92xv22.json new file mode 100644 index 000000000..de5df6fad --- /dev/null +++ b/v1.51/v1/02b92xv22.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02b92xv22", + "name": "Duolingo (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.44062, + "lng": -79.99589, + "state": null, + "state_code": null, + "city": "Pittsburgh", + "geonames_city": { + "id": 5206379, + "city": "Pittsburgh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.duolingo.com" + ], + "aliases": [ + "Duolingo Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Duolingo", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9332 0969" + ], + "preferred": "0000 0004 9332 0969" + }, + "Wikidata": { + "all": [ + "Q124637557" + ], + "preferred": "Q124637557" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02banhz78.json b/v1.51/v1/02banhz78.json new file mode 100644 index 000000000..6d3c851c2 --- /dev/null +++ b/v1.51/v1/02banhz78.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02banhz78", + "name": "Diversité, adaptation et développement des plantes", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cirad.fr/nous-connaitre/unites-de-recherche/diade" + ], + "aliases": [], + "acronyms": [ + "DIADE", + "UMR DIADE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Diversity-Adaptation-Development of Plants", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503155.7", + "preferred": "grid.503155.7" + }, + "Wikidata": { + "all": [ + "Q51780672" + ], + "preferred": "Q51780672" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02bw9cj21.json b/v1.51/v1/02bw9cj21.json new file mode 100644 index 000000000..3d65d96bf --- /dev/null +++ b/v1.51/v1/02bw9cj21.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/02bw9cj21", + "name": "Evropski univerzitet Brčko distrikt", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.86995, + "lng": 18.81012, + "state": null, + "state_code": null, + "city": "Brčko", + "geonames_city": { + "id": 3203521, + "city": "Brčko", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://eubd.edu.ba" + ], + "aliases": [ + "European University Brcko District" + ], + "acronyms": [ + "EUBD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Bosnia and Herzegovina", + "country_code": "BA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02ctt0481.json b/v1.51/v1/02ctt0481.json new file mode 100644 index 000000000..061c3ccd0 --- /dev/null +++ b/v1.51/v1/02ctt0481.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02ctt0481", + "name": "Daimler Truck (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Daimler Truck (Germany)", + "type": "Parent", + "id": "https://ror.org/049ahjd53" + }, + { + "label": "Daimler (United States)", + "type": "Predecessor", + "id": "https://ror.org/05angxc35" + } + ], + "addresses": [ + { + "lat": 45.52345, + "lng": -122.67621, + "state": null, + "state_code": null, + "city": "Portland", + "geonames_city": { + "id": 5746545, + "city": "Portland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://northamerica.daimlertruck.com" + ], + "aliases": [ + "Daimler Truck North America", + "Daimler Truck USA", + "Detroit Diesel", + "Thomas Built Buses", + "Western Star Trucks" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Daimler_Truck_North_America", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02dr9m704.json b/v1.51/v1/02dr9m704.json new file mode 100644 index 000000000..3737235a3 --- /dev/null +++ b/v1.51/v1/02dr9m704.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02dr9m704", + "name": "Wincanton Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.05676, + "lng": -2.40574, + "state": null, + "state_code": null, + "city": "Wincanton", + "geonames_city": { + "id": 2633861, + "city": "Wincanton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/wincanton-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.439742.f", + "preferred": "grid.439742.f" + }, + "Wikidata": { + "all": [ + "Q30293092" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02e15es11.json b/v1.51/v1/02e15es11.json new file mode 100644 index 000000000..c217e6a22 --- /dev/null +++ b/v1.51/v1/02e15es11.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/02e15es11", + "name": "Marathon Petroleum (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.04422, + "lng": -83.64993, + "state": null, + "state_code": null, + "city": "Findlay", + "geonames_city": { + "id": 5153924, + "city": "Findlay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.marathonpetroleum.com" + ], + "aliases": [ + "Marathon Petroleum Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Marathon_Petroleum", + "labels": [ + { + "label": "Marathon Petroleum", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02e1c4h55.json b/v1.51/v1/02e1c4h55.json new file mode 100644 index 000000000..382bea4c6 --- /dev/null +++ b/v1.51/v1/02e1c4h55.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02e1c4h55", + "name": "Secretariat of Public Education", + "email_address": null, + "ip_addresses": [], + "established": 1921, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Child", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 19.42847, + "lng": -99.12766, + "state": null, + "state_code": null, + "city": "Mexico City", + "geonames_city": { + "id": 3530597, + "city": "Mexico City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sep.gob.mx/" + ], + "aliases": [], + "acronyms": [ + "SEP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Secretariat_of_Public_Education_(Mexico)", + "labels": [ + { + "label": "Secretaría de Educación Pública", + "iso639": "es" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010096", + "501100007163" + ], + "preferred": "100010096" + }, + "GRID": { + "all": "grid.462843.f", + "preferred": "grid.462843.f" + }, + "ISNI": { + "all": [ + "0000 0001 2308 9077" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q750196", + "Q38914329" + ], + "preferred": "Q750196" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02e3zdp86.json b/v1.51/v1/02e3zdp86.json new file mode 100644 index 000000000..79f4945e8 --- /dev/null +++ b/v1.51/v1/02e3zdp86.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/02e3zdp86", + "name": "Boise State University", + "email_address": null, + "ip_addresses": [], + "established": 1932, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "St. Luke's Children's Hospital", + "type": "Related", + "id": "https://ror.org/02m0cd826" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 43.6135, + "lng": -116.20345, + "state": null, + "state_code": null, + "city": "Boise", + "geonames_city": { + "id": 5586437, + "city": "Boise", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.boisestate.edu/" + ], + "aliases": [], + "acronyms": [ + "BSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Boise_State_University", + "labels": [ + { + "label": "Universidad Estatal de Boise", + "iso639": "es" + }, + { + "label": "Université d'État de boise", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007233", + "100007750", + "100006921" + ], + "preferred": "100007233" + }, + "GRID": { + "all": "grid.184764.8", + "preferred": "grid.184764.8" + }, + "ISNI": { + "all": [ + "0000 0001 0670 228X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q891082" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02ebcws13.json b/v1.51/v1/02ebcws13.json new file mode 100644 index 000000000..7ad6fe6ce --- /dev/null +++ b/v1.51/v1/02ebcws13.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02ebcws13", + "name": "DAF Trucks (Netherlands)", + "email_address": null, + "ip_addresses": [], + "established": 1928, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Paccar (United States)", + "type": "Parent", + "id": "https://ror.org/02hdxw977" + } + ], + "addresses": [ + { + "lat": 51.44083, + "lng": 5.47778, + "state": null, + "state_code": null, + "city": "Eindhoven", + "geonames_city": { + "id": 2756253, + "city": "Eindhoven", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.daf.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/DAF_Trucks", + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "GRID": { + "all": "grid.423895.1", + "preferred": "grid.423895.1" + }, + "Wikidata": { + "all": [ + "Q30284588" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02eh44r60.json b/v1.51/v1/02eh44r60.json new file mode 100644 index 000000000..4b6907a3b --- /dev/null +++ b/v1.51/v1/02eh44r60.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02eh44r60", + "name": "Regions Financial (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.52066, + "lng": -86.80249, + "state": null, + "state_code": null, + "city": "Birmingham", + "geonames_city": { + "id": 4049979, + "city": "Birmingham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.regions.com" + ], + "aliases": [ + "Regions Bank", + "Regions Financial Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Regions Financial", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q917131" + ], + "preferred": "Q917131" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02ewr8206.json b/v1.51/v1/02ewr8206.json new file mode 100644 index 000000000..0897d11e2 --- /dev/null +++ b/v1.51/v1/02ewr8206.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/02ewr8206", + "name": "Patel Institute of Science and Management", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.97194, + "lng": 77.59369, + "state": null, + "state_code": null, + "city": "Bengaluru", + "geonames_city": { + "id": 1277333, + "city": "Bengaluru", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pismpg.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q83513163" + ], + "preferred": "Q83513163" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02ezdv132.json b/v1.51/v1/02ezdv132.json new file mode 100644 index 000000000..296ad1e91 --- /dev/null +++ b/v1.51/v1/02ezdv132.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/02ezdv132", + "name": "Kinder Morgan (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.76328, + "lng": -95.36327, + "state": null, + "state_code": null, + "city": "Houston", + "geonames_city": { + "id": 4699066, + "city": "Houston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kindermorgan.com" + ], + "aliases": [ + "Kinder Morgan Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Kinder Morgan", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02frhb430.json b/v1.51/v1/02frhb430.json new file mode 100644 index 000000000..a3b842c7b --- /dev/null +++ b/v1.51/v1/02frhb430.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/02frhb430", + "name": "Pony.AI (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pony.ai" + ], + "aliases": [ + "Pony.AI Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Pony.AI", + "iso639": "en" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02ftyb663.json b/v1.51/v1/02ftyb663.json new file mode 100644 index 000000000..ce05abea6 --- /dev/null +++ b/v1.51/v1/02ftyb663.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/02ftyb663", + "name": "Disability Community Resource Center", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.05223, + "lng": -118.24368, + "state": null, + "state_code": null, + "city": "Los Angeles", + "geonames_city": { + "id": 5368361, + "city": "Los Angeles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dcrc.co" + ], + "aliases": [ + "Westside Center for Independent Living" + ], + "acronyms": [ + "DCRC" + ], + "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.51/v1/02ggwpx62.json b/v1.51/v1/02ggwpx62.json new file mode 100644 index 000000000..19b623966 --- /dev/null +++ b/v1.51/v1/02ggwpx62.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02ggwpx62", + "name": "National Center for Emerging and Zoonotic Infectious Diseases", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Office of Infectious Diseases", + "type": "Parent", + "id": "https://ror.org/01z6p8p31" + }, + { + "label": "National Center for Infectious Diseases", + "type": "Predecessor", + "id": "https://ror.org/04vmke174" + } + ], + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cdc.gov/ncezid/" + ], + "aliases": [], + "acronyms": [ + "NCEZID" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006526" + ], + "preferred": null + }, + "GRID": { + "all": "grid.467923.d", + "preferred": "grid.467923.d" + }, + "ISNI": { + "all": [ + "0000 0000 9567 0277" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02gn3zg65.json b/v1.51/v1/02gn3zg65.json new file mode 100644 index 000000000..b497272bb --- /dev/null +++ b/v1.51/v1/02gn3zg65.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02gn3zg65", + "name": "Colorado State University Pueblo", + "email_address": null, + "ip_addresses": [], + "established": 1933, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Colorado State University System", + "type": "Parent", + "id": "https://ror.org/03xj0x983" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 38.25445, + "lng": -104.60914, + "state": null, + "state_code": null, + "city": "Pueblo", + "geonames_city": { + "id": 5435464, + "city": "Pueblo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.csupueblo.edu/Pages/default.aspx" + ], + "aliases": [ + "CSU–Pueblo" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Colorado_State_University%E2%80%93Pueblo", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.254551.2", + "preferred": "grid.254551.2" + }, + "ISNI": { + "all": [ + "0000 0001 2286 2232" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1111515" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02gqdm821.json b/v1.51/v1/02gqdm821.json new file mode 100644 index 000000000..daf782442 --- /dev/null +++ b/v1.51/v1/02gqdm821.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02gqdm821", + "name": "Epi Biotech Co., Ltd. (South Korea)", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.45646, + "lng": 126.70515, + "state": null, + "state_code": null, + "city": "Incheon", + "geonames_city": { + "id": 1843564, + "city": "Incheon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://epibiotech.com" + ], + "aliases": [ + "Epi Biotech", + "Epi Biotech Co.", + "Epibiotech", + "Stemore" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Epi Biotech Co., Ltd.", + "iso639": null + }, + { + "label": "에피바이오텍", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02hdxw977.json b/v1.51/v1/02hdxw977.json new file mode 100644 index 000000000..f62c6647a --- /dev/null +++ b/v1.51/v1/02hdxw977.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02hdxw977", + "name": "Paccar (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1905, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Paccar (United Kingdom)", + "type": "Child", + "id": "https://ror.org/03hx2yz19" + }, + { + "label": "DAF Trucks (Netherlands)", + "type": "Child", + "id": "https://ror.org/02ebcws13" + } + ], + "addresses": [ + { + "lat": 47.61038, + "lng": -122.20068, + "state": null, + "state_code": null, + "city": "Bellevue", + "geonames_city": { + "id": 5786882, + "city": "Bellevue", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.paccar.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Paccar", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.480310.e", + "preferred": "grid.480310.e" + }, + "ISNI": { + "all": [ + "0000 0004 0422 7245" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02hh7en24.json b/v1.51/v1/02hh7en24.json new file mode 100644 index 000000000..92457f971 --- /dev/null +++ b/v1.51/v1/02hh7en24.json @@ -0,0 +1,149 @@ +{ + "id": "https://ror.org/02hh7en24", + "name": "University of Colorado Denver", + "email_address": null, + "ip_addresses": [], + "established": 1876, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Colorado Clinical and Translational Sciences Institute", + "type": "Child", + "id": "https://ror.org/03xsh7c04" + }, + { + "label": "University of Colorado System", + "type": "Parent", + "id": "https://ror.org/00jc20583" + }, + { + "label": "Children's Hospital Colorado", + "type": "Related", + "id": "https://ror.org/00mj9k629" + }, + { + "label": "Denver Health Medical Center", + "type": "Related", + "id": "https://ror.org/01fbz6h17" + }, + { + "label": "National Jewish Health", + "type": "Related", + "id": "https://ror.org/016z2bp30" + }, + { + "label": "Rose Medical Center", + "type": "Related", + "id": "https://ror.org/055y34y19" + }, + { + "label": "University of Colorado Cancer Center", + "type": "Related", + "id": "https://ror.org/04cqn7d42" + }, + { + "label": "University of Colorado Hospital", + "type": "Related", + "id": "https://ror.org/006jjmw19" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 39.73915, + "lng": -104.9847, + "state": null, + "state_code": null, + "city": "Denver", + "geonames_city": { + "id": 5419384, + "city": "Denver", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ucdenver.edu/pages/ucdwelcomepage.aspx" + ], + "aliases": [], + "acronyms": [ + "UCD" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Colorado_Denver", + "labels": [ + { + "label": "Universidad de Colorado en Denver", + "iso639": "es" + }, + { + "label": "Université du Colorado à Denver", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010346" + ], + "preferred": null + }, + "GRID": { + "all": "grid.241116.1", + "preferred": "grid.241116.1" + }, + "ISNI": { + "all": [ + "0000 0001 0790 3411" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1468161" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02hha8x90.json b/v1.51/v1/02hha8x90.json new file mode 100644 index 000000000..b8a72b485 --- /dev/null +++ b/v1.51/v1/02hha8x90.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02hha8x90", + "name": "Liaocheng Center for Disease Control and Prevention", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.45064, + "lng": 116.00247, + "state": null, + "state_code": null, + "city": "Liaocheng", + "geonames_city": { + "id": 1803834, + "city": "Liaocheng", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lccdc.cn" + ], + "aliases": [ + "Center for Disease Control and Prevention of Liaocheng" + ], + "acronyms": [ + "LCCDC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "聊城市疾病预防控制中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02hn16782.json b/v1.51/v1/02hn16782.json new file mode 100644 index 000000000..71d395868 --- /dev/null +++ b/v1.51/v1/02hn16782.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02hn16782", + "name": "Climate Equity Reference Project", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://climateequityreference.org" + ], + "aliases": [], + "acronyms": [ + "CERP" + ], + "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.51/v1/02hv38g57.json b/v1.51/v1/02hv38g57.json new file mode 100644 index 000000000..20fa88cbb --- /dev/null +++ b/v1.51/v1/02hv38g57.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02hv38g57", + "name": "Lululemon Athletica (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.63873, + "lng": -122.66149, + "state": null, + "state_code": null, + "city": "Vancouver", + "geonames_city": { + "id": 5814616, + "city": "Vancouver", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lululemon.com" + ], + "aliases": [ + "Lululemon", + "Lululemon Athletica Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lululemon_Athletica", + "labels": [ + { + "label": "Lululemon Athletica", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100023460" + ], + "preferred": "100023460" + }, + "Wikidata": { + "all": [ + "Q124965942" + ], + "preferred": "Q124965942" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02j0qs062.json b/v1.51/v1/02j0qs062.json new file mode 100644 index 000000000..8a768cf2a --- /dev/null +++ b/v1.51/v1/02j0qs062.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02j0qs062", + "name": "MGM Resorts International (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.17497, + "lng": -115.13722, + "state": null, + "state_code": null, + "city": "Las Vegas", + "geonames_city": { + "id": 5506956, + "city": "Las Vegas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mgmresorts.com" + ], + "aliases": [ + "MGM Mirage", + "MGM Resorts" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "MGM Resorts International", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0446 8073" + ], + "preferred": "0000 0004 0446 8073" + }, + "Wikidata": { + "all": [ + "Q568532" + ], + "preferred": "Q568532" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02ja00s57.json b/v1.51/v1/02ja00s57.json new file mode 100644 index 000000000..dc92f2cd2 --- /dev/null +++ b/v1.51/v1/02ja00s57.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02ja00s57", + "name": "Cobham (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1934, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Cobham (United Kingdom)", + "type": "Parent", + "id": "https://ror.org/054ys4h04" + } + ], + "addresses": [ + { + "lat": 38.88101, + "lng": -77.10428, + "state": null, + "state_code": null, + "city": "Arlington", + "geonames_city": { + "id": 4744709, + "city": "Arlington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://caes.com/" + ], + "aliases": [ + "Cobham Advanced Electronic Solutions", + "Flight Refuelling Limited" + ], + "acronyms": [ + "CAES", + "FRL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cobham_(company)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.456069.8", + "preferred": "grid.456069.8" + }, + "Wikidata": { + "all": [ + "Q30298476" + ], + "preferred": "Q30298476" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02jb98t16.json b/v1.51/v1/02jb98t16.json new file mode 100644 index 000000000..c8cbe7b4b --- /dev/null +++ b/v1.51/v1/02jb98t16.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02jb98t16", + "name": "NOAA Center for Earth System Sciences and Remote Sensing Technologies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Office of Education", + "type": "Parent", + "id": "https://ror.org/032h87485" + }, + { + "label": "City College of New York", + "type": "Related", + "id": "https://ror.org/00wmhkr98" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cessrst.org" + ], + "aliases": [ + "National Oceanic and Atmospheric Administration Center for Earth System Sciences and Remote Sensing Technologies" + ], + "acronyms": [ + "CESSRST-II", + "NOAA-CESSRST-II" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100017299" + ], + "preferred": "100017299" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02jet3w32.json b/v1.51/v1/02jet3w32.json new file mode 100644 index 000000000..e13ec3771 --- /dev/null +++ b/v1.51/v1/02jet3w32.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02jet3w32", + "name": "LMU Klinikum", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Klinik und Poliklinik für Orthopädie, Physikalische Medizin und Rehabilitation", + "type": "Child", + "id": "https://ror.org/05fw3y429" + }, + { + "label": "Klinik und Poliklinik für Psychiatrie und Psychotherapie", + "type": "Child", + "id": "https://ror.org/03j546b66" + }, + { + "label": "Klinik und Poliklinik für Strahlentherapie und Radioonkologie", + "type": "Child", + "id": "https://ror.org/01trny179" + }, + { + "label": "Klinik und Poliklinik für Frauenheilkunde und Geburtshilfe", + "type": "Child", + "id": "https://ror.org/02794jc95" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lmu-klinikum.de/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Klinikum_der_Universit%C3%A4t_M%C3%BCnchen", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.411095.8", + "preferred": "grid.411095.8" + }, + "ISNI": { + "all": [ + "0000 0004 0477 2585" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q598814" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02jh2mm49.json b/v1.51/v1/02jh2mm49.json new file mode 100644 index 000000000..66eaf96ca --- /dev/null +++ b/v1.51/v1/02jh2mm49.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02jh2mm49", + "name": "Olomouc Research Library", + "email_address": null, + "ip_addresses": [], + "established": 1566, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.59552, + "lng": 17.25175, + "state": null, + "state_code": null, + "city": "Olomouc", + "geonames_city": { + "id": 3069011, + "city": "Olomouc", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vkol.cz" + ], + "aliases": [ + "Research Library in Olomouc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Research_Library_in_Olomouc", + "labels": [ + { + "label": "Vědecká knihovna v Olomouci", + "iso639": "cs" + }, + { + "label": "Wissenschaftliche Bibliothek Olomouc", + "iso639": "de" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.486434.9", + "preferred": "grid.486434.9" + }, + "ISNI": { + "all": [ + "0000 0001 2359 4831" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02jzypx27.json b/v1.51/v1/02jzypx27.json new file mode 100644 index 000000000..f71ff166d --- /dev/null +++ b/v1.51/v1/02jzypx27.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02jzypx27", + "name": "Hikvision (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.29365, + "lng": 120.16142, + "state": null, + "state_code": null, + "city": "Hangzhou", + "geonames_city": { + "id": 1808926, + "city": "Hangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hikvision.com" + ], + "aliases": [ + "Hangzhou Hikvision Digital Technology Co., Ltd.", + "Hikvision Digital Technology", + "海康威视" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Hikvision", + "iso639": null + }, + { + "label": "杭州海康威视数字技术股份有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5760704" + ], + "preferred": "Q5760704" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02kb89c09.json b/v1.51/v1/02kb89c09.json new file mode 100644 index 000000000..375598b72 --- /dev/null +++ b/v1.51/v1/02kb89c09.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02kb89c09", + "name": "University of Sciences and Technology Houari Boumediene", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.73225, + "lng": 3.08746, + "state": null, + "state_code": null, + "city": "Algiers", + "geonames_city": { + "id": 2507480, + "city": "Algiers", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usthb.dz" + ], + "aliases": [], + "acronyms": [ + "USTHB" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Sciences_and_Technology_Houari_Boumediene", + "labels": [ + { + "label": "Université des Sciences et de la Technologie Houari-Boumediene", + "iso639": "fr" + }, + { + "label": "جامعة العلوم والتكنولوجيا هواري بومدين", + "iso639": "ar" + } + ], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": { + "GRID": { + "all": "grid.420190.e", + "preferred": "grid.420190.e" + }, + "ISNI": { + "all": [ + "0000 0001 2293 1293" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3181219" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02ksqcf75.json b/v1.51/v1/02ksqcf75.json new file mode 100644 index 000000000..7006a52bc --- /dev/null +++ b/v1.51/v1/02ksqcf75.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/02ksqcf75", + "name": "Didi Chuxing (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.didiglobal.com" + ], + "aliases": [ + "Beijing DiDi Infinity Technology and Development Co Ltd", + "Beijing Xiaoju Technology Co.", + "Didi Chuxing Technology Co Ltd", + "Didi Chuxing Technology Co.", + "滴滴", + "滴滴出行" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Didi Chuxing", + "iso639": null + }, + { + "label": "北京小桔科技有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02nayd663.json b/v1.51/v1/02nayd663.json new file mode 100644 index 000000000..8af632bf6 --- /dev/null +++ b/v1.51/v1/02nayd663.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02nayd663", + "name": "Mitsubishi Fuso Truck and Bus (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Daimler Truck (Germany)", + "type": "Parent", + "id": "https://ror.org/049ahjd53" + } + ], + "addresses": [ + { + "lat": 35.52056, + "lng": 139.71722, + "state": null, + "state_code": null, + "city": "Kawasaki", + "geonames_city": { + "id": 1859642, + "city": "Kawasaki", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mitsubishi-fuso.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Mitsubishi Fuso Truck and Bus", + "iso639": "en" + }, + { + "label": "三菱ふそうトラックバス株式会社", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02nbck826.json b/v1.51/v1/02nbck826.json new file mode 100644 index 000000000..af8c2665a --- /dev/null +++ b/v1.51/v1/02nbck826.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02nbck826", + "name": "Universidad Politécnica de Tecámac", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.71288, + "lng": -98.96895, + "state": null, + "state_code": null, + "city": "Tecámac", + "geonames_city": { + "id": 3517524, + "city": "Tecámac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uptecamac.edomex.gob.mx" + ], + "aliases": [ + "UP Tecámac" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02pz5q213.json b/v1.51/v1/02pz5q213.json new file mode 100644 index 000000000..f3fd9616b --- /dev/null +++ b/v1.51/v1/02pz5q213.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02pz5q213", + "name": "J. B. Hunt Transport Services (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.63342, + "lng": -71.31617, + "state": null, + "state_code": null, + "city": "Lowell", + "geonames_city": { + "id": 4942618, + "city": "Lowell", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.jbhunt.com" + ], + "aliases": [ + "J. B. Hunt", + "J. B. Hunt Transport Inc", + "J. B. Hunt Transport Services Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "J. B. Hunt Transport Services", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02q7mkh03.json b/v1.51/v1/02q7mkh03.json new file mode 100644 index 000000000..3e3ad971c --- /dev/null +++ b/v1.51/v1/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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "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": { + "all": [ + "0000 0001 0943 5850" + ], + "preferred": "0000 0001 0943 5850" + }, + "Wikidata": { + "all": [ + "Q6044782" + ], + "preferred": "Q6044782" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02r609884.json b/v1.51/v1/02r609884.json new file mode 100644 index 000000000..e94a7353d --- /dev/null +++ b/v1.51/v1/02r609884.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02r609884", + "name": "Bridgwater Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.12837, + "lng": -3.00356, + "state": null, + "state_code": null, + "city": "Bridgwater", + "geonames_city": { + "id": 2654730, + "city": "Bridgwater", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/bridgwater-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.439613.a", + "preferred": "grid.439613.a" + }, + "Wikidata": { + "all": [ + "Q30293002" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02vpw2d22.json b/v1.51/v1/02vpw2d22.json new file mode 100644 index 000000000..5994ca755 --- /dev/null +++ b/v1.51/v1/02vpw2d22.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02vpw2d22", + "name": "Rai University", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.02579, + "lng": 72.58727, + "state": null, + "state_code": null, + "city": "Ahmedabad", + "geonames_city": { + "id": 1279233, + "city": "Ahmedabad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.raiuniversity.edu" + ], + "aliases": [], + "acronyms": [ + "RU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rai_University", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0499 5674" + ], + "preferred": "0000 0004 0499 5674" + }, + "Wikidata": { + "all": [ + "Q7283682" + ], + "preferred": "Q7283682" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02w0trx84.json b/v1.51/v1/02w0trx84.json new file mode 100644 index 000000000..00dd5ff25 --- /dev/null +++ b/v1.51/v1/02w0trx84.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/02w0trx84", + "name": "Montana State University", + "email_address": null, + "ip_addresses": [], + "established": 1893, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Museum of the Rockies", + "type": "Child", + "id": "https://ror.org/01ve2ed25" + }, + { + "label": "Montana State University System", + "type": "Parent", + "id": "https://ror.org/0343myz07" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 45.67965, + "lng": -111.03856, + "state": null, + "state_code": null, + "city": "Bozeman", + "geonames_city": { + "id": 5641727, + "city": "Bozeman", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.montana.edu/" + ], + "aliases": [ + "Agricultural College of the State of Montana" + ], + "acronyms": [ + "MSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Montana_State_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100009501", + "100009502" + ], + "preferred": "100009501" + }, + "GRID": { + "all": "grid.41891.35", + "preferred": "grid.41891.35" + }, + "ISNI": { + "all": [ + "0000 0001 2156 6108" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1861687" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02w12zj89.json b/v1.51/v1/02w12zj89.json new file mode 100644 index 000000000..620b0bdfc --- /dev/null +++ b/v1.51/v1/02w12zj89.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02w12zj89", + "name": "Nio (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.23833, + "lng": 110.95556, + "state": null, + "state_code": null, + "city": "Shangguo", + "geonames_city": { + "id": 1796238, + "city": "Shangguo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nio.io" + ], + "aliases": [ + "Blue Sky Coming", + "NextEV", + "Nextcar", + "Nio Inc", + "Nio Limited", + "Shanghai Weilai Automobile Co Ltd", + "Weilai", + "蔚来" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Nio", + "iso639": null + }, + { + "label": "上海蔚来汽车有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02wxx3e24.json b/v1.51/v1/02wxx3e24.json new file mode 100644 index 000000000..6073f3b10 --- /dev/null +++ b/v1.51/v1/02wxx3e24.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/02wxx3e24", + "name": "Brandenburg University of Technology Cottbus-Senftenberg", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.52517, + "lng": 14.00164, + "state": null, + "state_code": null, + "city": "Senftenberg", + "geonames_city": { + "id": 2833073, + "city": "Senftenberg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.b-tu.de" + ], + "aliases": [ + "Brandenburg University of Technology", + "TU Cottbus" + ], + "acronyms": [ + "BTU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Brandenburg_University_of_Technology", + "labels": [ + { + "label": "Brandenburgische Technische Universität Cottbus-Senftenberg", + "iso639": "de" + }, + { + "label": "Technical University of Cottbus", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022023" + ], + "preferred": "501100022023" + }, + "GRID": { + "all": "grid.8842.6", + "preferred": "grid.8842.6" + }, + "ISNI": { + "all": [ + "0000 0001 2188 0404" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q149433" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02x2vzy16.json b/v1.51/v1/02x2vzy16.json new file mode 100644 index 000000000..45a5308a0 --- /dev/null +++ b/v1.51/v1/02x2vzy16.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02x2vzy16", + "name": "Dene Barton Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.01494, + "lng": -3.10293, + "state": null, + "state_code": null, + "city": "Taunton", + "geonames_city": { + "id": 2636177, + "city": "Taunton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/dene-barton-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Dene_Barton_Community_Hospital", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.461374.3", + "preferred": "grid.461374.3" + }, + "Wikidata": { + "all": [ + "Q5256862" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02x696c73.json b/v1.51/v1/02x696c73.json new file mode 100644 index 000000000..b78338aa5 --- /dev/null +++ b/v1.51/v1/02x696c73.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02x696c73", + "name": "EQT (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.44062, + "lng": -79.99589, + "state": null, + "state_code": null, + "city": "Pittsburgh", + "geonames_city": { + "id": 5206379, + "city": "Pittsburgh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.eqt.com" + ], + "aliases": [ + "EQT Corporation", + "Equitable Resources" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/EQT_Corporation", + "labels": [ + { + "label": "EQT", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5323987" + ], + "preferred": "Q5323987" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02x6ahj98.json b/v1.51/v1/02x6ahj98.json new file mode 100644 index 000000000..e3bd95801 --- /dev/null +++ b/v1.51/v1/02x6ahj98.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/02x6ahj98", + "name": "University of Vavuniya", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 8.7514, + "lng": 80.4971, + "state": null, + "state_code": null, + "city": "Vavuniya", + "geonames_city": { + "id": 1225018, + "city": "Vavuniya", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://vau.ac.lk" + ], + "aliases": [ + "University of Vavuniya, Sri Lanka" + ], + "acronyms": [ + "UOV" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Vavuniya", + "labels": [ + { + "label": "வவுனியாப் பல்கலைக்கழகம்", + "iso639": "ta" + } + ], + "country": { + "country_name": "Sri Lanka", + "country_code": "LK" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q107334343" + ], + "preferred": "Q107334343" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02xs3dj23.json b/v1.51/v1/02xs3dj23.json new file mode 100644 index 000000000..e1e50b357 --- /dev/null +++ b/v1.51/v1/02xs3dj23.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02xs3dj23", + "name": "Western Colorado University", + "email_address": null, + "ip_addresses": [], + "established": 1901, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 38.54582, + "lng": -106.92532, + "state": null, + "state_code": null, + "city": "Gunnison", + "geonames_city": { + "id": 5424099, + "city": "Gunnison", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://western.edu" + ], + "aliases": [ + "Western State Colorado University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Western_State_Colorado_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.422637.6", + "preferred": "grid.422637.6" + }, + "ISNI": { + "all": [ + "0000 0000 8729 3635" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2564975" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02xyv8p74.json b/v1.51/v1/02xyv8p74.json new file mode 100644 index 000000000..106831264 --- /dev/null +++ b/v1.51/v1/02xyv8p74.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02xyv8p74", + "name": "Shepton Mallet Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.18972, + "lng": -2.54722, + "state": null, + "state_code": null, + "city": "Shepton Mallet", + "geonames_city": { + "id": 2638035, + "city": "Shepton Mallet", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/shepton-mallet-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.439409.3", + "preferred": "grid.439409.3" + }, + "Wikidata": { + "all": [ + "Q30292847" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02xz6bf62.json b/v1.51/v1/02xz6bf62.json new file mode 100644 index 000000000..3a78ae82d --- /dev/null +++ b/v1.51/v1/02xz6bf62.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02xz6bf62", + "name": "Czech Geological Survey", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cgs.gov.cz" + ], + "aliases": [], + "acronyms": [ + "CGS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Česká geologická služba", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010792" + ], + "preferred": "501100010792" + }, + "GRID": { + "all": "grid.423881.4", + "preferred": "grid.423881.4" + }, + "ISNI": { + "all": [ + "0000 0001 2187 6376" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02y5f7327.json b/v1.51/v1/02y5f7327.json new file mode 100644 index 000000000..403b21bf4 --- /dev/null +++ b/v1.51/v1/02y5f7327.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02y5f7327", + "name": "Taunton & Somerset NHS Foundation Trust", + "email_address": null, + "ip_addresses": [], + "established": 1941, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Somerset NHS Foundation Trust", + "type": "Successor", + "id": "https://ror.org/00abj3t43" + } + ], + "addresses": [ + { + "lat": 51.01494, + "lng": -3.10293, + "state": null, + "state_code": null, + "city": "Taunton", + "geonames_city": { + "id": 2636177, + "city": "Taunton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.tsft.nhs.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.487454.e", + "preferred": "grid.487454.e" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02ygzhr13.json b/v1.51/v1/02ygzhr13.json new file mode 100644 index 000000000..b6a901225 --- /dev/null +++ b/v1.51/v1/02ygzhr13.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/02ygzhr13", + "name": "University of Washington Bothell", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Washington", + "type": "Parent", + "id": "https://ror.org/00cvxb145" + } + ], + "addresses": [ + { + "lat": 47.76232, + "lng": -122.2054, + "state": null, + "state_code": null, + "city": "Bothell", + "geonames_city": { + "id": 5787829, + "city": "Bothell", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uwb.edu/" + ], + "aliases": [ + "UW Bothell" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Washington_Bothell", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100019963" + ], + "preferred": "100019963" + }, + "GRID": { + "all": "grid.462982.3", + "preferred": "grid.462982.3" + }, + "ISNI": { + "all": [ + "0000 0000 8883 2602" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7896565" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02ypdzw54.json b/v1.51/v1/02ypdzw54.json new file mode 100644 index 000000000..99673a8ee --- /dev/null +++ b/v1.51/v1/02ypdzw54.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02ypdzw54", + "name": "Tecnológico de Estudios Superiores de Chalco", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.26174, + "lng": -98.89775, + "state": null, + "state_code": null, + "city": "Chalco", + "geonames_city": { + "id": 3531200, + "city": "Chalco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tescha.edomex.gob.mx" + ], + "aliases": [ + "Instituto Tecnologico de Chalco" + ], + "acronyms": [ + "TESCHA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 5277" + ], + "preferred": "0000 0004 1770 5277" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02yr4wk92.json b/v1.51/v1/02yr4wk92.json new file mode 100644 index 000000000..fa3337b28 --- /dev/null +++ b/v1.51/v1/02yr4wk92.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/02yr4wk92", + "name": "Institut et Haute Ecole de la Santé La Source", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ecolelasource.ch" + ], + "aliases": [ + "HES-SO Institut et Haute Ecole de la Santé La Source", + "HES-SO La Source, School of nursing", + "Haute Ecole de la Santé - La Source" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/02yyskm09.json b/v1.51/v1/02yyskm09.json new file mode 100644 index 000000000..d7d7c231a --- /dev/null +++ b/v1.51/v1/02yyskm09.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02yyskm09", + "name": "Abbès Laghrour University of Khenchela", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.43583, + "lng": 7.14333, + "state": null, + "state_code": null, + "city": "Khenchela", + "geonames_city": { + "id": 2491889, + "city": "Khenchela", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-khenchela.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "جامعة عباس لغرور خنشلة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": { + "GRID": { + "all": "grid.442463.3", + "preferred": "grid.442463.3" + }, + "ISNI": { + "all": [ + "0000 0004 0515 2652" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30294238" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02z2yec16.json b/v1.51/v1/02z2yec16.json new file mode 100644 index 000000000..6b1f85943 --- /dev/null +++ b/v1.51/v1/02z2yec16.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02z2yec16", + "name": "Zhongshan Ophthalmic Center, Sun Yat-sen University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Sun Yat-sen University", + "type": "Parent", + "id": "https://ror.org/0064kty71" + } + ], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gzzoc.com" + ], + "aliases": [ + "Zhongshan Ophthalmic Center" + ], + "acronyms": [ + "ZOC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "中山大学眼科中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q67251723" + ], + "preferred": "Q67251723" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02z5nhe81.json b/v1.51/v1/02z5nhe81.json new file mode 100644 index 000000000..5654b9906 --- /dev/null +++ b/v1.51/v1/02z5nhe81.json @@ -0,0 +1,395 @@ +{ + "id": "https://ror.org/02z5nhe81", + "name": "National Oceanic and Atmospheric Administration", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Alaska Sea Grant", + "type": "Child", + "id": "https://ror.org/04j23ff69" + }, + { + "label": "California Sea Grant", + "type": "Child", + "id": "https://ror.org/02yn1nr06" + }, + { + "label": "Connecticut Sea Grant", + "type": "Child", + "id": "https://ror.org/01ksx6c70" + }, + { + "label": "Delaware Sea Grant", + "type": "Child", + "id": "https://ror.org/038rzmb16" + }, + { + "label": "Florida Sea Grant", + "type": "Child", + "id": "https://ror.org/01j5kpq29" + }, + { + "label": "Georgia Sea Grant", + "type": "Child", + "id": "https://ror.org/0014w1417" + }, + { + "label": "Guam Sea Grant", + "type": "Child", + "id": "https://ror.org/01rrxb840" + }, + { + "label": "Illinois Indiana Sea Grant", + "type": "Child", + "id": "https://ror.org/00vg14f79" + }, + { + "label": "Lake Champlain Sea Grant", + "type": "Child", + "id": "https://ror.org/05k70qf45" + }, + { + "label": "Louisiana Sea Grant", + "type": "Child", + "id": "https://ror.org/045by4v54" + }, + { + "label": "MIT Sea Grant", + "type": "Child", + "id": "https://ror.org/03fg5ns40" + }, + { + "label": "Maine Sea Grant", + "type": "Child", + "id": "https://ror.org/04g3ykc66" + }, + { + "label": "Maryland Sea Grant", + "type": "Child", + "id": "https://ror.org/03db51w68" + }, + { + "label": "Michigan Sea Grant", + "type": "Child", + "id": "https://ror.org/015tnsz82" + }, + { + "label": "Minnesota Sea Grant", + "type": "Child", + "id": "https://ror.org/01n6agm35" + }, + { + "label": "Mississippi Alabama Sea Grant Consortium", + "type": "Child", + "id": "https://ror.org/04vzsq290" + }, + { + "label": "NOAA National Centers for Environmental Information", + "type": "Child", + "id": "https://ror.org/04r0wrp59" + }, + { + "label": "NOAA National Environmental Satellite Data and Information Service", + "type": "Child", + "id": "https://ror.org/007qwym43" + }, + { + "label": "NOAA National Ocean Service", + "type": "Child", + "id": "https://ror.org/02k4h0334" + }, + { + "label": "NOAA National Marine Fisheries Service", + "type": "Child", + "id": "https://ror.org/033mqx355" + }, + { + "label": "National Tsunami Warning Center", + "type": "Child", + "id": "https://ror.org/00h8b7583" + }, + { + "label": "NOAA National Weather Service", + "type": "Child", + "id": "https://ror.org/00tgqzw13" + }, + { + "label": "New Hampshire Sea Grant", + "type": "Child", + "id": "https://ror.org/037f7zx95" + }, + { + "label": "New Jersey Sea Grant Consortium", + "type": "Child", + "id": "https://ror.org/04haaft31" + }, + { + "label": "New York Sea Grant", + "type": "Child", + "id": "https://ror.org/031m8s392" + }, + { + "label": "North Carolina Sea Grant", + "type": "Child", + "id": "https://ror.org/01kgxxx41" + }, + { + "label": "Northern Gulf Institute", + "type": "Child", + "id": "https://ror.org/018qsef31" + }, + { + "label": "Office of Education", + "type": "Child", + "id": "https://ror.org/032h87485" + }, + { + "label": "Office of Marine and Aviation Operations", + "type": "Child", + "id": "https://ror.org/04ggd2r74" + }, + { + "label": "Office of Ocean Exploration and Research", + "type": "Child", + "id": "https://ror.org/05xqpda80" + }, + { + "label": "NOAA Oceanic and Atmospheric Research", + "type": "Child", + "id": "https://ror.org/02kgve346" + }, + { + "label": "Ohio Sea Grant College Program", + "type": "Child", + "id": "https://ror.org/00xfvky15" + }, + { + "label": "Oregon Sea Grant", + "type": "Child", + "id": "https://ror.org/046107075" + }, + { + "label": "Pennsylvania Sea Grant", + "type": "Child", + "id": "https://ror.org/033r52n02" + }, + { + "label": "Puerto Rico Sea Grant", + "type": "Child", + "id": "https://ror.org/05t7fg049" + }, + { + "label": "Rhode Island Sea Grant", + "type": "Child", + "id": "https://ror.org/018nbcn37" + }, + { + "label": "South Carolina Sea Grant Consortium", + "type": "Child", + "id": "https://ror.org/03zzjgp12" + }, + { + "label": "Texas Sea Grant College Program", + "type": "Child", + "id": "https://ror.org/01ds51411" + }, + { + "label": "University of Hawaiʻi Sea Grant", + "type": "Child", + "id": "https://ror.org/053598c22" + }, + { + "label": "University of Southern California Sea Grant", + "type": "Child", + "id": "https://ror.org/0444fnd49" + }, + { + "label": "Virginia Sea Grant", + "type": "Child", + "id": "https://ror.org/05c6y9623" + }, + { + "label": "Washington Sea Grant", + "type": "Child", + "id": "https://ror.org/047fr0y29" + }, + { + "label": "Wisconsin Sea Grant", + "type": "Child", + "id": "https://ror.org/035hx7715" + }, + { + "label": "Woods Hole Sea Grant", + "type": "Child", + "id": "https://ror.org/05370mv03" + }, + { + "label": "NOAA Center for Satellite Applications and Research", + "type": "Child", + "id": "https://ror.org/03yn06t56" + }, + { + "label": "NOAA Office of Science Support", + "type": "Child", + "id": "https://ror.org/052pywd95" + }, + { + "label": "United States Department of Commerce", + "type": "Parent", + "id": "https://ror.org/04chq2495" + }, + { + "label": "Environmental Science Services Administration", + "type": "Predecessor", + "id": "https://ror.org/01h6c8126" + }, + { + "label": "United States Coast and Geodetic Survey", + "type": "Predecessor", + "id": "https://ror.org/01x9q3k71" + }, + { + "label": "Community Coordinated Modeling Center", + "type": "Related", + "id": "https://ror.org/01dy3j343" + }, + { + "label": "National Integrated Drought Information System", + "type": "Related", + "id": "https://ror.org/01fpdvr35" + }, + { + "label": "NCCOS Hollings Marine Laboratory", + "type": "Related", + "id": "https://ror.org/01hp6xm80" + }, + { + "label": "Massachusetts Office of Coastal Zone Management", + "type": "Related", + "id": "https://ror.org/05ych8012" + }, + { + "label": "Olympic Coast Discovery Center", + "type": "Related", + "id": "https://ror.org/01srarb97" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.noaa.gov/" + ], + "aliases": [ + "National Oceanic & Atmospheric Administration", + "National Oceanographic and Atmospheric Administration", + "U.S. DOC National Oceanic and Atmospheric Administration", + "U.S. Department of Commerce Oceanic and Atmospheric Administration", + "U.S. Department of Commerce. National Oceanic and Atmospheric Administration", + "U.S. Dept. of Commerce National Oceanic and Atmospheric Administration", + "U.S. National Oceanic & Atmospheric Administration", + "U.S. National Oceanic and Atmospheric Administration", + "U.S. National Oceanographic Atmospheric Administration", + "U.S. National Oceanographic and Atmospheric Administration", + "U.S. Oceanic and Atmospheric Administration", + "United States Department of Commerce National Oceanic and Atmospheric Administration", + "United States Department of Commerce Oceanic and Atmospheric Administration", + "United States Dept. of Commerce National Oceanic and Atmospheric Administration", + "United States National Oceanic & Atmospheric Administration", + "United States National Oceanic and Atmospheric Administration", + "United States National Oceanographic Atmospheric Administration", + "United States National Oceanographic and Atmospheric Administration", + "United States Oceanic and Atmospheric Administration" + ], + "acronyms": [ + "NOAA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Oceanic_and_Atmospheric_Administration", + "labels": [ + { + "label": "Administración Nacional Oceánica y Atmosférica", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100000192" + ], + "preferred": null + }, + "GRID": { + "all": "grid.3532.7", + "preferred": "grid.3532.7" + }, + "ISNI": { + "all": [ + "0000 0001 1266 2261" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q214700" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02zj7b759.json b/v1.51/v1/02zj7b759.json new file mode 100644 index 000000000..3b9e0b258 --- /dev/null +++ b/v1.51/v1/02zj7b759.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02zj7b759", + "name": "Australian Plant Phenomics Network", + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.plantphenomics.org.au" + ], + "aliases": [ + "Australian Plant Phenomics Facility" + ], + "acronyms": [ + "APPF", + "APPN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022853" + ], + "preferred": "501100022853" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/02zvqmp51.json b/v1.51/v1/02zvqmp51.json new file mode 100644 index 000000000..200fb63c5 --- /dev/null +++ b/v1.51/v1/02zvqmp51.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02zvqmp51", + "name": "V.F. Corporation (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.73915, + "lng": -104.9847, + "state": null, + "state_code": null, + "city": "Denver", + "geonames_city": { + "id": 5419384, + "city": "Denver", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vfc.com" + ], + "aliases": [ + "VF Corp.", + "VF Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "V.F. Corporation", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q457960" + ], + "preferred": "Q457960" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0302jbz39.json b/v1.51/v1/0302jbz39.json new file mode 100644 index 000000000..14b964bbf --- /dev/null +++ b/v1.51/v1/0302jbz39.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/0302jbz39", + "name": "Instituto Tecnológico de Boca del Río", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 19.10464, + "lng": -96.10405, + "state": null, + "state_code": null, + "city": "Boca del Rio", + "geonames_city": { + "id": 3532193, + "city": "Boca del Rio", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bdelrio.tecnm.mx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0369 6787" + ], + "preferred": "0000 0004 0369 6787" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/030ev1m28.json b/v1.51/v1/030ev1m28.json new file mode 100644 index 000000000..0df08569f --- /dev/null +++ b/v1.51/v1/030ev1m28.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/030ev1m28", + "name": "General Hospital of Central Theater Command", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Wuhan General Hospital of Guangzhou", + "type": "Predecessor", + "id": "https://ror.org/03xbe6k03" + } + ], + "addresses": [ + { + "lat": 30.58333, + "lng": 114.26667, + "state": null, + "state_code": null, + "city": "Wuhan", + "geonames_city": { + "id": 1791247, + "city": "Wuhan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "General Hospital of Central Theater Command of People's Liberation Army", + "PLA General Hospital of Central Theater Command", + "People's Liberation Army General Hospital of Central Theater Command" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/zh-hans/%E4%B8%AD%E5%9B%BD%E4%BA%BA%E6%B0%91%E8%A7%A3%E6%94%BE%E5%86%9B%E4%B8%AD%E9%83%A8%E6%88%98%E5%8C%BA%E6%80%BB%E5%8C%BB%E9%99%A2", + "labels": [ + { + "label": "中国人民解放军中部战区总医院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03158q453.json b/v1.51/v1/03158q453.json new file mode 100644 index 000000000..77434fcec --- /dev/null +++ b/v1.51/v1/03158q453.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03158q453", + "name": "Animal and Plant Inspection and Quarantine Technology Center of Shenzhen Customs District", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.54554, + "lng": 114.0683, + "state": null, + "state_code": null, + "city": "Shenzhen", + "geonames_city": { + "id": 1795565, + "city": "Shenzhen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://shenzhen.customs.gov.cn/shenzhen_customs/zfxxgk15/4956195/sydwzwgk/5510484/5510485/5510546/index.html" + ], + "aliases": [], + "acronyms": [ + "APIQ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "深圳海关动植物检验检疫技术中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0316y5a96.json b/v1.51/v1/0316y5a96.json new file mode 100644 index 000000000..acd68d547 --- /dev/null +++ b/v1.51/v1/0316y5a96.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/0316y5a96", + "name": "St. Xavier's College (Autonomous)", + "email_address": null, + "ip_addresses": [], + "established": 1923, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 8.71605, + "lng": 77.76043, + "state": null, + "state_code": null, + "city": "Palayamkottai", + "geonames_city": { + "id": 12681769, + "city": "Palayamkottai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://stxavierstn.edu.in" + ], + "aliases": [ + "St. Xavier's College", + "St. Xavier's College Palayamkottai" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Xavier%27s_College,_Palayamkottai", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q7592176" + ], + "preferred": "Q7592176" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/031qgeg72.json b/v1.51/v1/031qgeg72.json new file mode 100644 index 000000000..c3e7e5047 --- /dev/null +++ b/v1.51/v1/031qgeg72.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/031qgeg72", + "name": "Asociación Colombiana de Medicina Física y Rehabilitación", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.acmfr.org" + ], + "aliases": [], + "acronyms": [ + "ACMFR" + ], + "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.51/v1/032ctpc91.json b/v1.51/v1/032ctpc91.json new file mode 100644 index 000000000..0f69a9837 --- /dev/null +++ b/v1.51/v1/032ctpc91.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/032ctpc91", + "name": "CF Industries Holdings (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.12753, + "lng": -87.82895, + "state": null, + "state_code": null, + "city": "Northbrook", + "geonames_city": { + "id": 4904056, + "city": "Northbrook", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cfindustries.com" + ], + "aliases": [ + "CF Industries" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "CF Industries Holdings", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q905806" + ], + "preferred": "Q905806" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/032h87485.json b/v1.51/v1/032h87485.json new file mode 100644 index 000000000..6255c80be --- /dev/null +++ b/v1.51/v1/032h87485.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/032h87485", + "name": "Office of Education", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "National Oceanic and Atmospheric Administration", + "type": "Parent", + "id": "https://ror.org/02z5nhe81" + }, + { + "label": "NOAA Center for Earth System Sciences and Remote Sensing Technologies", + "type": "Child", + "id": "https://ror.org/02jb98t16" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.oesd.noaa.gov/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007257" + ], + "preferred": null + }, + "GRID": { + "all": "grid.453930.8", + "preferred": "grid.453930.8" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/032kzxf45.json b/v1.51/v1/032kzxf45.json new file mode 100644 index 000000000..71b0bd076 --- /dev/null +++ b/v1.51/v1/032kzxf45.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/032kzxf45", + "name": "Vanguard (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.09705, + "lng": -75.46964, + "state": null, + "state_code": null, + "city": "Valley Forge", + "geonames_city": { + "id": 5216986, + "city": "Valley Forge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vanguard.com" + ], + "aliases": [ + "The Vanguard Group", + "The Vanguard Group, Inc", + "Vanguard Group Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Vanguard", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q849363" + ], + "preferred": "Q849363" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/032mytt31.json b/v1.51/v1/032mytt31.json new file mode 100644 index 000000000..578d175d5 --- /dev/null +++ b/v1.51/v1/032mytt31.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/032mytt31", + "name": "Firstenergy (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.08144, + "lng": -81.51901, + "state": null, + "state_code": null, + "city": "Akron", + "geonames_city": { + "id": 5145476, + "city": "Akron", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.firstenergycorp.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Firstenergy", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0333vk137.json b/v1.51/v1/0333vk137.json new file mode 100644 index 000000000..4a0d7fe8d --- /dev/null +++ b/v1.51/v1/0333vk137.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/0333vk137", + "name": "Minehead Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.20452, + "lng": -3.48284, + "state": null, + "state_code": null, + "city": "Minehead", + "geonames_city": { + "id": 2642450, + "city": "Minehead", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/minehead-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.439236.9", + "preferred": "grid.439236.9" + }, + "Wikidata": { + "all": [ + "Q30292717" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03403zv90.json b/v1.51/v1/03403zv90.json new file mode 100644 index 000000000..c116aaa42 --- /dev/null +++ b/v1.51/v1/03403zv90.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03403zv90", + "name": "Molson Coors Brewing Company (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.85003, + "lng": -87.65005, + "state": null, + "state_code": null, + "city": "Chicago", + "geonames_city": { + "id": 4887398, + "city": "Chicago", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.molsoncoors.com" + ], + "aliases": [ + "Molson Coors", + "Molson Coors Beverage Co" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Molson Coors Brewing Company", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0348v8v06.json b/v1.51/v1/0348v8v06.json new file mode 100644 index 000000000..77bef85ce --- /dev/null +++ b/v1.51/v1/0348v8v06.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/0348v8v06", + "name": "Deepglint (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.deepglint.com" + ], + "aliases": [ + "Beijing Deepglint Technology Co Ltd", + "Beijing Deepglint Technology Limited", + "Deep Glint", + "Geling Shentong", + "格灵深瞳" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Deepglint", + "iso639": "en" + }, + { + "label": "北京格灵深瞳信息技术有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/034fj3b42.json b/v1.51/v1/034fj3b42.json new file mode 100644 index 000000000..f22ee2794 --- /dev/null +++ b/v1.51/v1/034fj3b42.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/034fj3b42", + "name": "Los Altos History Museum", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.38522, + "lng": -122.11413, + "state": null, + "state_code": null, + "city": "Los Altos", + "geonames_city": { + "id": 5368335, + "city": "Los Altos", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.losaltoshistory.org" + ], + "aliases": [], + "acronyms": [ + "LAHM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Los_Altos_History_Museum", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q6681898" + ], + "preferred": "Q6681898" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/034wrbs29.json b/v1.51/v1/034wrbs29.json new file mode 100644 index 000000000..229643a2d --- /dev/null +++ b/v1.51/v1/034wrbs29.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/034wrbs29", + "name": "Shanghai Ecological Forecasting and Remote Sensing Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.22222, + "lng": 121.45806, + "state": null, + "state_code": null, + "city": "Shanghai", + "geonames_city": { + "id": 1796236, + "city": "Shanghai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "上海市生态气象和卫星遥感中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/035a68863.json b/v1.51/v1/035a68863.json new file mode 100644 index 000000000..82a9163fe --- /dev/null +++ b/v1.51/v1/035a68863.json @@ -0,0 +1,483 @@ +{ + "id": "https://ror.org/035a68863", + "name": "United States Geological Survey", + "email_address": null, + "ip_addresses": [], + "established": 1879, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Astrogeology Science Center", + "type": "Child", + "id": "https://ror.org/02623eb90" + }, + { + "label": "Hawaiian Volcano Observatory", + "type": "Child", + "id": "https://ror.org/04qcn4c26" + }, + { + "label": "National Wildlife Health Center", + "type": "Child", + "id": "https://ror.org/038d10y34" + }, + { + "label": "National Science Foundation Ice Core Facility", + "type": "Child", + "id": "https://ror.org/05sk14837" + }, + { + "label": "Woods Hole Coastal and Marine Science Center", + "type": "Child", + "id": "https://ror.org/02pv64t29" + }, + { + "label": "California Water Science Center", + "type": "Child", + "id": "https://ror.org/01qrbys32" + }, + { + "label": "U.S. Geological Survey, Wetland and Aquatic Research Center", + "type": "Child", + "id": "https://ror.org/05qtybq80" + }, + { + "label": "Western Ecological Research Center", + "type": "Child", + "id": "https://ror.org/051g31x14" + }, + { + "label": "Alaska Climate Adaptation Science Center", + "type": "Child", + "id": "https://ror.org/00y4zmh56" + }, + { + "label": "U.S. Geological Survey, Alaska Science Center", + "type": "Child", + "id": "https://ror.org/05ehhzx21" + }, + { + "label": "Pacific Island Ecosystems Research Center", + "type": "Child", + "id": "https://ror.org/03eg83y24" + }, + { + "label": "Earth Resources Observation and Science Center", + "type": "Child", + "id": "https://ror.org/00ffy1726" + }, + { + "label": "Dakota Water Science Center", + "type": "Child", + "id": "https://ror.org/039gq4j49" + }, + { + "label": "Core Research Center", + "type": "Child", + "id": "https://ror.org/03wmjs517" + }, + { + "label": "Cooperative Research Units", + "type": "Child", + "id": "https://ror.org/00nqpc320" + }, + { + "label": "Columbia Environmental Research Center", + "type": "Child", + "id": "https://ror.org/04yv9ex91" + }, + { + "label": "Colorado Water Science Center", + "type": "Child", + "id": "https://ror.org/01cfnbk63" + }, + { + "label": "Climate Adaptation Science Centers", + "type": "Child", + "id": "https://ror.org/023czga33" + }, + { + "label": "Central Midwest Water Science Center", + "type": "Child", + "id": "https://ror.org/02tdxcj66" + }, + { + "label": "Central Energy Resources Science Center", + "type": "Child", + "id": "https://ror.org/05xt1d182" + }, + { + "label": "Arizona Water Science Center", + "type": "Child", + "id": "https://ror.org/051n8xp08" + }, + { + "label": "Earthquake Science Center", + "type": "Child", + "id": "https://ror.org/00dcq6866" + }, + { + "label": "Florence Bascom Geoscience Center", + "type": "Child", + "id": "https://ror.org/04s1zep84" + }, + { + "label": "Forest and Rangeland Ecosystem Science Center", + "type": "Child", + "id": "https://ror.org/058afx839" + }, + { + "label": "Fort Collins Science Center", + "type": "Child", + "id": "https://ror.org/00zf0nh29" + }, + { + "label": "Geology, Energy and Minerals Science Center", + "type": "Child", + "id": "https://ror.org/01x8cht46" + }, + { + "label": "Geology, Minerals, Energy, and Geophysics Science Center", + "type": "Child", + "id": "https://ror.org/00brpm077" + }, + { + "label": "Geosciences and Environmental Change Science Center", + "type": "Child", + "id": "https://ror.org/041hkjs21" + }, + { + "label": "Great Lakes Science Center", + "type": "Child", + "id": "https://ror.org/019yx3c32" + }, + { + "label": "Idaho Water Science Center", + "type": "Child", + "id": "https://ror.org/02w3nfa37" + }, + { + "label": "John Wesley Powell Center for Analysis and Synthesis", + "type": "Child", + "id": "https://ror.org/033d34573" + }, + { + "label": "Kansas Water Science Center", + "type": "Child", + "id": "https://ror.org/04wp8v119" + }, + { + "label": "Maryland-Delaware-D.C. Water Science Center", + "type": "Child", + "id": "https://ror.org/02tbkgn21" + }, + { + "label": "National Cooperative Geologic Mapping Program", + "type": "Child", + "id": "https://ror.org/021jr9c59" + }, + { + "label": "New Jersey Water Science Center", + "type": "Child", + "id": "https://ror.org/00heqy247" + }, + { + "label": "Wyoming-Montana Water Science Center", + "type": "Child", + "id": "https://ror.org/02s2kph56" + }, + { + "label": "Western Geographic Science Center", + "type": "Child", + "id": "https://ror.org/00r1f3009" + }, + { + "label": "Western Fisheries Research Center", + "type": "Child", + "id": "https://ror.org/019s68r62" + }, + { + "label": "Washington Water Science Center", + "type": "Child", + "id": "https://ror.org/026f1w290" + }, + { + "label": "Volcano Science Center", + "type": "Child", + "id": "https://ror.org/029grsj96" + }, + { + "label": "Virginia and West Virginia Water Science Center", + "type": "Child", + "id": "https://ror.org/01rg4e096" + }, + { + "label": "Utah Water Science Center", + "type": "Child", + "id": "https://ror.org/03a9ssm23" + }, + { + "label": "Upper Midwest Water Science Center", + "type": "Child", + "id": "https://ror.org/02feagj05" + }, + { + "label": "Upper Midwest Environmental Sciences Center", + "type": "Child", + "id": "https://ror.org/038t8ze69" + }, + { + "label": "St. Petersburg Coastal and Marine Science Center", + "type": "Child", + "id": "https://ror.org/03d3nry68" + }, + { + "label": "Southwest Biological Science Center", + "type": "Child", + "id": "https://ror.org/00zrq4606" + }, + { + "label": "Science and Decisions Center", + "type": "Child", + "id": "https://ror.org/0307c8498" + }, + { + "label": "Science Analytics and Synthesis", + "type": "Child", + "id": "https://ror.org/04eqg3754" + }, + { + "label": "Pennsylvania Water Science Center", + "type": "Child", + "id": "https://ror.org/04jya6a65" + }, + { + "label": "Pacific Coastal and Marine Science Center", + "type": "Child", + "id": "https://ror.org/02j0x4n73" + }, + { + "label": "Oregon Water Science Center", + "type": "Child", + "id": "https://ror.org/04v8m4033" + }, + { + "label": "Oklahoma-Texas Water Science Center", + "type": "Child", + "id": "https://ror.org/019q26a60" + }, + { + "label": "Ohio-Kentucky-Indiana Water Science Center", + "type": "Child", + "id": "https://ror.org/05qms6x58" + }, + { + "label": "Northern Prairie Wildlife Research Center", + "type": "Child", + "id": "https://ror.org/0135q5q22" + }, + { + "label": "New York Water Science Center", + "type": "Child", + "id": "https://ror.org/04zytdm29" + }, + { + "label": "New Mexico Water Science Center", + "type": "Child", + "id": "https://ror.org/00ep91e20" + }, + { + "label": "New England Water Science Center", + "type": "Child", + "id": "https://ror.org/03sjf7w71" + }, + { + "label": "Nevada Water Science Center", + "type": "Child", + "id": "https://ror.org/05hh31546" + }, + { + "label": "Nebraska Water Science Center", + "type": "Child", + "id": "https://ror.org/03a470182" + }, + { + "label": "National Minerals Information Center", + "type": "Child", + "id": "https://ror.org/05ey8y521" + }, + { + "label": "National Geospatial Technical Operations Center", + "type": "Child", + "id": "https://ror.org/04ec7mt05" + }, + { + "label": "National Geospatial Program", + "type": "Child", + "id": "https://ror.org/035jpr562" + }, + { + "label": "National Geological and Geophysical Data Preservation Program", + "type": "Child", + "id": "https://ror.org/03x5agy13" + }, + { + "label": "South Atlantic Water Science Center", + "type": "Child", + "id": "https://ror.org/047cwsy20" + }, + { + "label": "Pacific Islands Water Science Center", + "type": "Child", + "id": "https://ror.org/02skqwf47" + }, + { + "label": "Northern Rocky Mountain Science Center", + "type": "Child", + "id": "https://ror.org/04e41m429" + }, + { + "label": "Lower Mississippi-Gulf Water Science Center", + "type": "Child", + "id": "https://ror.org/05qx1va48" + }, + { + "label": "Geology, Geophysics, and Geochemistry Science Center", + "type": "Child", + "id": "https://ror.org/006xfsx34" + }, + { + "label": "Geologic Hazards Science Center", + "type": "Child", + "id": "https://ror.org/038x5dh11" + }, + { + "label": "Eastern Ecological Science Center", + "type": "Child", + "id": "https://ror.org/03e1t2x83" + }, + { + "label": "Caribbean-Florida Water Science Center", + "type": "Child", + "id": "https://ror.org/02pjsf822" + }, + { + "label": "United States Department of the Interior", + "type": "Parent", + "id": "https://ror.org/03v0pmy70" + }, + { + "label": "Beaufort Lagoon Ecosystems Long Term Ecological Research Network", + "type": "Related", + "id": "https://ror.org/055a54548" + }, + { + "label": "Bonanza Creek Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/01nysf027" + }, + { + "label": "North Temperate Lakes Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/04gq8q482" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 38.96872, + "lng": -77.3411, + "state": null, + "state_code": null, + "city": "Reston", + "geonames_city": { + "id": 4781530, + "city": "Reston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.usgs.gov/" + ], + "aliases": [ + "Geological Survey" + ], + "acronyms": [ + "USGS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_States_Geological_Survey", + "labels": [ + { + "label": "Servicio Geológico de los Estados Unidos", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100000203", + "100013627" + ], + "preferred": null + }, + "GRID": { + "all": "grid.2865.9", + "preferred": "grid.2865.9" + }, + "ISNI": { + "all": [ + "0000 0001 2154 6924" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q193755" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/035k4m812.json b/v1.51/v1/035k4m812.json new file mode 100644 index 000000000..ea15ff718 --- /dev/null +++ b/v1.51/v1/035k4m812.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/035k4m812", + "name": "S. M. Kirov Military Medical Academy", + "email_address": null, + "ip_addresses": [], + "established": 1798, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ministry of Defence of the Russian Federation", + "type": "Parent", + "id": "https://ror.org/03ngg2631" + } + ], + "addresses": [ + { + "lat": 59.93863, + "lng": 30.31413, + "state": null, + "state_code": null, + "city": "St Petersburg", + "geonames_city": { + "id": 498817, + "city": "St Petersburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vmeda.org" + ], + "aliases": [ + "Kirov Military Medical Academy", + "Kirov Military Medical Academy of the Russian Defense Ministry", + "Military-Medical Academy. CM. Kirov", + "S. M. Kirov Military Medical Academy of the Russian Defense Ministry" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/S.M._Kirov_Military_Medical_Academy", + "labels": [], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.415628.c", + "preferred": "grid.415628.c" + }, + "ISNI": { + "all": [ + "0000 0004 0562 6029" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1459393" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/035ky6r06.json b/v1.51/v1/035ky6r06.json new file mode 100644 index 000000000..14a528a66 --- /dev/null +++ b/v1.51/v1/035ky6r06.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/035ky6r06", + "name": "Civilization University", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 15.35472, + "lng": 44.20667, + "state": null, + "state_code": null, + "city": "Sanaa", + "geonames_city": { + "id": 71137, + "city": "Sanaa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://civilizationuniv.edu.ye" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://ar.wikipedia.org/wiki/%D8%AC%D8%A7%D9%85%D8%B9%D8%A9_%D8%A7%D9%84%D8%AD%D8%B6%D8%A7%D8%B1%D8%A9", + "labels": [ + { + "label": "جامعة الحضارة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Yemen", + "country_code": "YE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q128955268" + ], + "preferred": "Q128955268" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/035r10384.json b/v1.51/v1/035r10384.json new file mode 100644 index 000000000..b84879f85 --- /dev/null +++ b/v1.51/v1/035r10384.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/035r10384", + "name": "MORSE (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.3751, + "lng": -71.10561, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 4931972, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.morsecorp.com" + ], + "aliases": [ + "MORSECORP", + "MORSECORP Inc", + "Mission Oriented Rapid Solution Engineering" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "MORSE", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/036266993.json b/v1.51/v1/036266993.json new file mode 100644 index 000000000..45118026a --- /dev/null +++ b/v1.51/v1/036266993.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/036266993", + "name": "National Renewable Energy Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Office of Energy Efficiency and Renewable Energy", + "type": "Parent", + "id": "https://ror.org/02xznz413" + }, + { + "label": "Atmospheric Radiation Measurement User Facility", + "type": "Related", + "id": "https://ror.org/01dvj3d25" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 39.75554, + "lng": -105.2211, + "state": null, + "state_code": null, + "city": "Golden", + "geonames_city": { + "id": 5423294, + "city": "Golden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nrel.gov/" + ], + "aliases": [ + "Office of Energy Efficiency and Renewable Energy National Renewable Energy Laboratory", + "United States Department of Energy Office of Energy Efficiency and Renewable Energy National Renewable Energy Laboratory" + ], + "acronyms": [ + "NREL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Renewable_Energy_Laboratory", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006233" + ], + "preferred": null + }, + "GRID": { + "all": "grid.419357.d", + "preferred": "grid.419357.d" + }, + "ISNI": { + "all": [ + "0000 0001 2199 3636" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1856153" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/036ak4h42.json b/v1.51/v1/036ak4h42.json new file mode 100644 index 000000000..0afc83e1d --- /dev/null +++ b/v1.51/v1/036ak4h42.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/036ak4h42", + "name": "Nature Conservation Agency of the Czech Republic", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of the Environment of the Czech Republic", + "type": "Parent", + "id": "https://ror.org/04e74dh47" + } + ], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ochranaprirody.cz/en/" + ], + "aliases": [ + "Agentura ochrany přírody a krajiny ČR" + ], + "acronyms": [ + "AOPK ČR", + "NCA CR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Agentur für Natur- und Landschaftsschutz der Tschechischen Republik", + "iso639": "de" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.447783.b", + "preferred": "grid.447783.b" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0379dv337.json b/v1.51/v1/0379dv337.json new file mode 100644 index 000000000..2452275c0 --- /dev/null +++ b/v1.51/v1/0379dv337.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/0379dv337", + "name": "Datarobot (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.85, + "lng": 48.96667, + "state": null, + "state_code": null, + "city": "Gasht-e Bāgh", + "geonames_city": { + "id": 2012, + "city": "Gasht-e Bāgh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://datarobot.com" + ], + "aliases": [ + "Datarobot Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Datarobot", + "iso639": "en" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/038483r84.json b/v1.51/v1/038483r84.json new file mode 100644 index 000000000..b26b9ba97 --- /dev/null +++ b/v1.51/v1/038483r84.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/038483r84", + "name": "Eni (Italy)", + "email_address": null, + "ip_addresses": [], + "established": 1953, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Eni (Belgium)", + "type": "Child", + "id": "https://ror.org/0138rdd60" + }, + { + "label": "Eni (France)", + "type": "Child", + "id": "https://ror.org/05frh7832" + }, + { + "label": "Eni (Kazakhstan)", + "type": "Child", + "id": "https://ror.org/05xp7y466" + }, + { + "label": "Eni (United Kingdom)", + "type": "Child", + "id": "https://ror.org/02jqsa674" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.eni.com/" + ], + "aliases": [ + "Ente Nazionale Idrocarburi" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Eni", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003054" + ], + "preferred": null + }, + "GRID": { + "all": "grid.423791.a", + "preferred": "grid.423791.a" + }, + "ISNI": { + "all": [ + "0000 0004 1761 7437" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q565594" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/038dc7m35.json b/v1.51/v1/038dc7m35.json new file mode 100644 index 000000000..8ca939054 --- /dev/null +++ b/v1.51/v1/038dc7m35.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/038dc7m35", + "name": "CSX (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.33218, + "lng": -81.65565, + "state": null, + "state_code": null, + "city": "Jacksonville", + "geonames_city": { + "id": 4160021, + "city": "Jacksonville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.csx.com" + ], + "aliases": [ + "CSX Corp", + "CSX Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "CSX", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100024686" + ], + "preferred": "100024686" + }, + "Wikidata": { + "all": [ + "Q1024454" + ], + "preferred": "Q1024454" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/038x25e13.json b/v1.51/v1/038x25e13.json new file mode 100644 index 000000000..b7e2ece9c --- /dev/null +++ b/v1.51/v1/038x25e13.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/038x25e13", + "name": "Florida Global University", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 25.81954, + "lng": -80.35533, + "state": null, + "state_code": null, + "city": "Doral", + "geonames_city": { + "id": 4153471, + "city": "Doral", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://floridaglobal.university" + ], + "aliases": [], + "acronyms": [ + "FGU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Universidad Global de Florida", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q128123383" + ], + "preferred": "Q128123383" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/039t4wk02.json b/v1.51/v1/039t4wk02.json new file mode 100644 index 000000000..4c9555655 --- /dev/null +++ b/v1.51/v1/039t4wk02.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/039t4wk02", + "name": "L3S Research Center", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Leibniz University Hannover", + "type": "Parent", + "id": "https://ror.org/0304hq317" + }, + { + "label": "Technische Universität Braunschweig", + "type": "Parent", + "id": "https://ror.org/010nsgg66" + }, + { + "label": "CAIMed - Niedersächsisches Zentrum für KI und Kausale Methoden in der Medizin", + "type": "Child", + "id": "https://ror.org/04n901n71" + } + ], + "addresses": [ + { + "lat": 52.37052, + "lng": 9.73322, + "state": null, + "state_code": null, + "city": "Hanover", + "geonames_city": { + "id": 2910831, + "city": "Hanover", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.l3s.de/de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Forschungszentrum L3S", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.507815.e", + "preferred": "grid.507815.e" + }, + "Wikidata": { + "all": [ + "Q1797810" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03a1kwz48.json b/v1.51/v1/03a1kwz48.json new file mode 100644 index 000000000..2c42be0e1 --- /dev/null +++ b/v1.51/v1/03a1kwz48.json @@ -0,0 +1,137 @@ +{ + "id": "https://ror.org/03a1kwz48", + "name": "University of Tübingen", + "email_address": null, + "ip_addresses": [], + "established": 1477, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Hertie Institute for Clinical Brain Research", + "type": "Child", + "id": "https://ror.org/04zzwzx41" + }, + { + "label": "Senckenberg Centre for Human Evolution and Palaeoenvironment", + "type": "Child", + "id": "https://ror.org/005pfhc08" + }, + { + "label": "Quantitative Biology Center", + "type": "Child", + "id": "https://ror.org/00v34f693" + }, + { + "label": "Zentrum für Datenverarbeitung", + "type": "Child", + "id": "https://ror.org/01kkkw551" + }, + { + "label": "Klinikum Esslingen", + "type": "Related", + "id": "https://ror.org/02a2sfd38" + }, + { + "label": "Universitätsklinikum Tübingen", + "type": "Related", + "id": "https://ror.org/00pjgxh97" + }, + { + "label": "Tübingen AI Center", + "type": "Child", + "id": "https://ror.org/0107nyd78" + } + ], + "addresses": [ + { + "lat": 48.52266, + "lng": 9.05222, + "state": null, + "state_code": null, + "city": "Tübingen", + "geonames_city": { + "id": 2820860, + "city": "Tübingen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni-tuebingen.de/en/university.html" + ], + "aliases": [ + "Eberhard Karls University, Tübingen" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_T%C3%BCbingen", + "labels": [ + { + "label": "Eberhard Karls Universität Tübingen", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002345", + "501100002346", + "501100009397" + ], + "preferred": "501100002345" + }, + "GRID": { + "all": "grid.10392.39", + "preferred": "grid.10392.39" + }, + "ISNI": { + "all": [ + "0000 0001 2190 1447" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q153978" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03b8cwr11.json b/v1.51/v1/03b8cwr11.json new file mode 100644 index 000000000..4e87ed138 --- /dev/null +++ b/v1.51/v1/03b8cwr11.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03b8cwr11", + "name": "Hilton Worldwide Holdings (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.91872, + "lng": -77.23109, + "state": null, + "state_code": null, + "city": "Tysons Corner", + "geonames_city": { + "id": 4790534, + "city": "Tysons Corner", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hilton.com" + ], + "aliases": [ + "Hilton", + "Hilton Hotels Corporation", + "Hilton Worldwide" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Hilton Worldwide Holdings", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100005132" + ], + "preferred": "100005132" + }, + "Wikidata": { + "all": [ + "Q1057464" + ], + "preferred": "Q1057464" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03bp0k446.json b/v1.51/v1/03bp0k446.json new file mode 100644 index 000000000..be02eb623 --- /dev/null +++ b/v1.51/v1/03bp0k446.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/03bp0k446", + "name": "Prague College of Psychosocial Studies", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pvsps.cz" + ], + "aliases": [ + "Pražská vysoká škola psychosociálních studií" + ], + "acronyms": [ + "PVSPS", + "PVŠPS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Pražská vysoká škola psychosociálních studií, s.r.o.", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.445531.2", + "preferred": "grid.445531.2" + }, + "ISNI": { + "all": [ + "0000 0004 0485 9760" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30257441" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03c1m7989.json b/v1.51/v1/03c1m7989.json new file mode 100644 index 000000000..0ec1d0325 --- /dev/null +++ b/v1.51/v1/03c1m7989.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/03c1m7989", + "name": "Coupang (South Korea)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.566, + "lng": 126.9784, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835848, + "city": "Seoul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.coupang.com" + ], + "aliases": [ + "Coupang Co Ltd", + "Coupang Corp", + "Forward Ventures", + "Kupang Co Ltd" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Coupang", + "iso639": null + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03d0p2685.json b/v1.51/v1/03d0p2685.json new file mode 100644 index 000000000..51031668e --- /dev/null +++ b/v1.51/v1/03d0p2685.json @@ -0,0 +1,133 @@ +{ + "id": "https://ror.org/03d0p2685", + "name": "Helmholtz Centre for Infection Research", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre for Individualised Infection Medicine", + "type": "Child", + "id": "https://ror.org/04s99xz91" + }, + { + "label": "Helmholtz Institute for Pharmaceutical Research Saarland", + "type": "Child", + "id": "https://ror.org/042dsac10" + }, + { + "label": "Helmholtz Institute for RNA-based Infection Research", + "type": "Child", + "id": "https://ror.org/02a98s891" + }, + { + "label": "Centre for Structural Systems Biology", + "type": "Child", + "id": "https://ror.org/04fhwda97" + }, + { + "label": "Helmholtz Association of German Research Centres", + "type": "Parent", + "id": "https://ror.org/0281dp749" + }, + { + "label": "CAIMed - Niedersächsisches Zentrum für KI und Kausale Methoden in der Medizin", + "type": "Related", + "id": "https://ror.org/04n901n71" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 52.26594, + "lng": 10.52673, + "state": null, + "state_code": null, + "city": "Braunschweig", + "geonames_city": { + "id": 2945024, + "city": "Braunschweig", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.helmholtz-hzi.de/en/" + ], + "aliases": [ + "German Research Centre for Biotechnology", + "Gesellschaft für Biotechnologische Forschung" + ], + "acronyms": [ + "GBF", + "HZI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Helmholtz-Zentrum für Infektionsforschung", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.7490.a", + "preferred": "grid.7490.a" + }, + "ISNI": { + "all": [ + "0000 0001 2238 295X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1603242" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03d9rgw98.json b/v1.51/v1/03d9rgw98.json new file mode 100644 index 000000000..d45078bb0 --- /dev/null +++ b/v1.51/v1/03d9rgw98.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/03d9rgw98", + "name": "Molina Healthcare (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.76696, + "lng": -118.18923, + "state": null, + "state_code": null, + "city": "Long Beach", + "geonames_city": { + "id": 5367929, + "city": "Long Beach", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.molinahealthcare.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Molina_Healthcare", + "labels": [ + { + "label": "Molina Healthcare", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03dcxwy38.json b/v1.51/v1/03dcxwy38.json new file mode 100644 index 000000000..dcb644975 --- /dev/null +++ b/v1.51/v1/03dcxwy38.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/03dcxwy38", + "name": "Taiwan Space Agency", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Applied Research Laboratories", + "type": "Parent", + "id": "https://ror.org/05wcstg80" + } + ], + "addresses": [ + { + "lat": 24.80361, + "lng": 120.96861, + "state": null, + "state_code": null, + "city": "Hsinchu", + "geonames_city": { + "id": 1675151, + "city": "Hsinchu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tasa.org.tw" + ], + "aliases": [ + "National Space Organization", + "National Space Program Office" + ], + "acronyms": [ + "NSPO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Space_Organization", + "labels": [ + { + "label": "國家太空中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "Taiwan", + "country_code": "TW" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007532" + ], + "preferred": null + }, + "GRID": { + "all": "grid.481015.9", + "preferred": "grid.481015.9" + }, + "ISNI": { + "all": [ + "0000 0004 0405 7450" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q716634" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03dgrff29.json b/v1.51/v1/03dgrff29.json new file mode 100644 index 000000000..be3cf4616 --- /dev/null +++ b/v1.51/v1/03dgrff29.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03dgrff29", + "name": "Instituto Tecnológico Superior de Loreto", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 22.27248, + "lng": -101.98898, + "state": null, + "state_code": null, + "city": "Loreto", + "geonames_city": { + "id": 3998291, + "city": "Loreto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itsloreto.edu.mx" + ], + "aliases": [ + "ITS Loreto", + "TecNM Campus Loreto", + "Tecnológico Nacional de México Campus Loreto" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 1161" + ], + "preferred": "0000 0004 1770 1161" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03dgybn05.json b/v1.51/v1/03dgybn05.json new file mode 100644 index 000000000..0688b2568 --- /dev/null +++ b/v1.51/v1/03dgybn05.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/03dgybn05", + "name": "Izip (Czechia)", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.izip.cz/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [ + { + "label": "Elektronická Zdravotní Knížka", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.436011.1", + "preferred": "grid.436011.1" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03dtap658.json b/v1.51/v1/03dtap658.json new file mode 100644 index 000000000..e33d9a671 --- /dev/null +++ b/v1.51/v1/03dtap658.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03dtap658", + "name": "Sociedad Colombiana de Cirugía Ortopédica y Traumatología", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sccot.org" + ], + "aliases": [], + "acronyms": [ + "SCCOT" + ], + "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.51/v1/03ecnj426.json b/v1.51/v1/03ecnj426.json new file mode 100644 index 000000000..b87b88d9c --- /dev/null +++ b/v1.51/v1/03ecnj426.json @@ -0,0 +1,135 @@ +{ + "id": "https://ror.org/03ecnj426", + "name": "InfectControl", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Leibniz-Institut für Naturstoff-Forschung und Infektionsbiologie e. V. - Hans-Knöll-Institut (HKI)", + "type": "Parent", + "id": "https://ror.org/055s37c97" + }, + { + "label": "Technische Universität Braunschweig", + "type": "Related", + "id": "https://ror.org/010nsgg66" + }, + { + "label": "Helmholtz Centre for Infection Research", + "type": "Related", + "id": "https://ror.org/03d0p2685" + }, + { + "label": "Charité - Universitätsmedizin Berlin", + "type": "Related", + "id": "https://ror.org/001w7jn25" + }, + { + "label": "Max Planck Institute for Infection Biology", + "type": "Related", + "id": "https://ror.org/0046gcs23" + }, + { + "label": "Freie Universität Berlin", + "type": "Related", + "id": "https://ror.org/046ak2485" + }, + { + "label": "Robert Koch Institute", + "type": "Related", + "id": "https://ror.org/01k5qnb77" + }, + { + "label": "Universität Greifswald", + "type": "Related", + "id": "https://ror.org/00r1edq15" + }, + { + "label": "Universitätsmedizin Greifswald", + "type": "Related", + "id": "https://ror.org/025vngs54" + }, + { + "label": "Institute of Marine Biotechnology", + "type": "Related", + "id": "https://ror.org/014zc6253" + }, + { + "label": "Friedrich-Loeffler-Institut", + "type": "Related", + "id": "https://ror.org/025fw7a54" + }, + { + "label": "University of Würzburg", + "type": "Related", + "id": "https://ror.org/00fbnyb24" + }, + { + "label": "Universitätsklinikum Würzburg", + "type": "Related", + "id": "https://ror.org/03pvr2g57" + } + ], + "addresses": [ + { + "lat": 50.92878, + "lng": 11.5899, + "state": null, + "state_code": null, + "city": "Jena", + "geonames_city": { + "id": 2895044, + "city": "Jena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.infectcontrol.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Leibniz-Institut_f%C3%BCr_Naturstoff-Forschung_und_Infektionsbiologie", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03efmqc40.json b/v1.51/v1/03efmqc40.json new file mode 100644 index 000000000..c51648688 --- /dev/null +++ b/v1.51/v1/03efmqc40.json @@ -0,0 +1,132 @@ +{ + "id": "https://ror.org/03efmqc40", + "name": "Arizona State University", + "email_address": null, + "ip_addresses": [], + "established": 1885, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Central Arizona–Phoenix Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/020zjmd13" + }, + { + "label": "Arizona's Public Universities", + "type": "Parent", + "id": "https://ror.org/0054f1w39" + }, + { + "label": "Jornada Basin Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/05976ta47" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 33.41477, + "lng": -111.90931, + "state": null, + "state_code": null, + "city": "Tempe", + "geonames_city": { + "id": 5317058, + "city": "Tempe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.asu.edu/" + ], + "aliases": [], + "acronyms": [ + "ASU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Arizona_State_University", + "labels": [ + { + "label": "Universidad Estatal de Arizona", + "iso639": "es" + }, + { + "label": "Université d'État de l'Arizona", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007482", + "100010407", + "100006755", + "100007727", + "100005908" + ], + "preferred": "100007482" + }, + "GRID": { + "all": "grid.215654.1", + "preferred": "grid.215654.1" + }, + "ISNI": { + "all": [ + "0000 0001 2151 2636", + "0000 0004 0626 8593" + ], + "preferred": "0000 0001 2151 2636" + }, + "Wikidata": { + "all": [ + "Q670897", + "Q4791440", + "Q4791437", + "Q4791438" + ], + "preferred": "Q670897" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03efxn362.json b/v1.51/v1/03efxn362.json new file mode 100644 index 000000000..5597e74da --- /dev/null +++ b/v1.51/v1/03efxn362.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03efxn362", + "name": "Universidad Veracruzana", + "email_address": null, + "ip_addresses": [], + "established": 1944, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.53124, + "lng": -96.91589, + "state": null, + "state_code": null, + "city": "Xalapa", + "geonames_city": { + "id": 3526617, + "city": "Xalapa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uv.mx" + ], + "aliases": [ + "Veracruzana University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Universidad_Veracruzana", + "labels": [ + { + "label": "University of Veracruz", + "iso639": "en" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004848" + ], + "preferred": null + }, + "GRID": { + "all": "grid.42707.36", + "preferred": "grid.42707.36" + }, + "ISNI": { + "all": [ + "0000 0004 1766 9560" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1808814" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03f658435.json b/v1.51/v1/03f658435.json new file mode 100644 index 000000000..50cbcff45 --- /dev/null +++ b/v1.51/v1/03f658435.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/03f658435", + "name": "Union Pacific (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.25626, + "lng": -95.94043, + "state": null, + "state_code": null, + "city": "Omaha", + "geonames_city": { + "id": 5074472, + "city": "Omaha", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.up.com" + ], + "aliases": [ + "Union Pacific Corporation", + "Union Pacific Railroad", + "Union Pacific Railroad Company" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Union Pacific", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q20183163" + ], + "preferred": "Q20183163" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03ggvqk67.json b/v1.51/v1/03ggvqk67.json new file mode 100644 index 000000000..e593303f5 --- /dev/null +++ b/v1.51/v1/03ggvqk67.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/03ggvqk67", + "name": "Al-Amal College for Specialized Medical Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.61603, + "lng": 44.02488, + "state": null, + "state_code": null, + "city": "Karbala", + "geonames_city": { + "id": 94824, + "city": "Karbala", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.alamal.edu.iq" + ], + "aliases": [], + "acronyms": [ + "ACFSMS" + ], + "status": "active", + "wikipedia_url": "https://ar.wikipedia.org/wiki/%D9%83%D9%84%D9%8A%D8%A9_%D8%A7%D9%84%D8%A3%D9%85%D9%84_%D9%84%D9%84%D8%B9%D9%84%D9%88%D9%85_%D8%A7%D9%84%D8%B7%D8%A8%D9%8A%D8%A9_%D8%A7%D9%84%D8%AA%D8%AE%D8%B5%D8%B5%D9%8A%D8%A9", + "labels": [ + { + "label": "كلية الأمل للعلوم الطبية التخصصية", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q125497435" + ], + "preferred": "Q125497435" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03gnr7b55.json b/v1.51/v1/03gnr7b55.json new file mode 100644 index 000000000..6e890fbd2 --- /dev/null +++ b/v1.51/v1/03gnr7b55.json @@ -0,0 +1,386 @@ +{ + "id": "https://ror.org/03gnr7b55", + "name": "Nantes Université", + "email_address": null, + "ip_addresses": [], + "established": 1460, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Nantais de Sociologie", + "type": "Child", + "id": "https://ror.org/04v837171" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "Child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Chimie et Interdisciplinarité, Synthèse, Analyse, Modélisation", + "type": "Child", + "id": "https://ror.org/04ysg2a58" + }, + { + "label": "Droit et changement social", + "type": "Child", + "id": "https://ror.org/014nzh720" + }, + { + "label": "Federative Institute of Behavioral Addictions", + "type": "Child", + "id": "https://ror.org/05qq96959" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Gene Therapy Laboratory", + "type": "Child", + "id": "https://ror.org/008rwh029" + }, + { + "label": "Institut de Recherche en Génie Civil et Mécanique", + "type": "Child", + "id": "https://ror.org/03x30hb31" + }, + { + "label": "Institut des Matériaux Jean Rouxel", + "type": "Child", + "id": "https://ror.org/00cqpd580" + }, + { + "label": "Institut du Thorax", + "type": "Child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "Child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire de Mathématiques Jean Leray", + "type": "Child", + "id": "https://ror.org/04g1hjn96" + }, + { + "label": "Laboratoire de Physique Subatomique et des Technologies Associées", + "type": "Child", + "id": "https://ror.org/01kxesq83" + }, + { + "label": "Laboratoire de Psychologie des Pays de la Loire", + "type": "Child", + "id": "https://ror.org/007hrfm61" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "Child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Laboratoire de Thermique et Energie de Nantes", + "type": "Child", + "id": "https://ror.org/021fdyt09" + }, + { + "label": "PhysioPathologie des Adaptations Nutritionnelles", + "type": "Child", + "id": "https://ror.org/05vb5nm66" + }, + { + "label": "Laboratoire de Génie des Procédés – Environnement – Agro-alimentaire", + "type": "Child", + "id": "https://ror.org/05ngxmx20" + }, + { + "label": "IRT Jules Verne", + "type": "Child", + "id": "https://ror.org/00qxv3c44" + }, + { + "label": "École Centrale de Nantes", + "type": "Child", + "id": "https://ror.org/03nh7d505" + }, + { + "label": "École Nationale Supérieure d'Architecture de Nantes", + "type": "Child", + "id": "https://ror.org/01jq57122" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "Child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "Littoral, Environnement, Télédétection, Géomatique", + "type": "Child", + "id": "https://ror.org/05sat2s07" + }, + { + "label": "Centre Atlantique de Philosophie", + "type": "Child", + "id": "https://ror.org/059ynac98" + }, + { + "label": "Centre François Viète", + "type": "Child", + "id": "https://ror.org/03mcrfa90" + }, + { + "label": "Centre de Recherche en Éducation de Nantes", + "type": "Child", + "id": "https://ror.org/00b1crx81" + }, + { + "label": "Unité en Sciences Biologiques et Biotechnologies de Nantes", + "type": "Child", + "id": "https://ror.org/05ef4v550" + }, + { + "label": "AlgoSolis", + "type": "Child", + "id": "https://ror.org/05481me13" + }, + { + "label": "Laboratoire de Linguistique de Nantes", + "type": "Child", + "id": "https://ror.org/0009eec40" + }, + { + "label": "Centre de Recherche sur les Identités, les Nations et l'Interculturalité", + "type": "Child", + "id": "https://ror.org/0290yjn87" + }, + { + "label": "LAMO - Littératures Antiques et Modernes", + "type": "Child", + "id": "https://ror.org/05w4vzs78" + }, + { + "label": "Cibles et Médicaments des Infections et de l'Immunité", + "type": "Child", + "id": "https://ror.org/01cqd9q31" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Laboratoire d'Economie et de Management de Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/04k51bq24" + }, + { + "label": "Institut de Recherche en Energie Electrique de Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/00z2bca79" + }, + { + "label": "Center for Research in Transplantation and Translational Immunology", + "type": "Child", + "id": "https://ror.org/01165k395" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "Laboratoire Motricité, Interactions, Performance", + "type": "Child", + "id": "https://ror.org/04q2ax456" + }, + { + "label": "Institut Des Substances et Organismes de la Mer", + "type": "Child", + "id": "https://ror.org/05601z471" + }, + { + "label": "methodS in Patient-centered outcomes and HEalth ResEarch", + "type": "Child", + "id": "https://ror.org/013m8h627" + }, + { + "label": "Translational Research in Gene Therapy", + "type": "Child", + "id": "https://ror.org/02tg88m31" + }, + { + "label": "Centre de Droit Maritime et Océanique", + "type": "Child", + "id": "https://ror.org/008qsjm14" + }, + { + "label": "Institut de recherche en droit privé", + "type": "Child", + "id": "https://ror.org/0269yh980" + }, + { + "label": "Groupement Ligérien pour le Calcul Intensif Distribué", + "type": "Child", + "id": "https://ror.org/02mhxg157" + }, + { + "label": "Centre de recherches en histoire internationale et atlantique", + "type": "Child", + "id": "https://ror.org/058qdtv35" + }, + { + "label": "The Enteric Nervous System in Gut and Brain Disorders", + "type": "Child", + "id": "https://ror.org/01kbkse74" + }, + { + "label": "Laboratoire de Planétologie et Géosciences", + "type": "Child", + "id": "https://ror.org/04fm0sh33" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "Child", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "Structure Fédérative de Recherche Bonamy", + "type": "Child", + "id": "https://ror.org/03p6ach34" + }, + { + "label": "UMS BioCore", + "type": "Child", + "id": "https://ror.org/04r5nwv94" + }, + { + "label": "Centre Hospitalier Universitaire de Nantes", + "type": "Related", + "id": "https://ror.org/05c1qsg97" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Related", + "id": "https://ror.org/05hz99a17" + } + ], + "addresses": [ + { + "lat": 47.21725, + "lng": -1.55336, + "state": null, + "state_code": null, + "city": "Nantes", + "geonames_city": { + "id": 2990969, + "city": "Nantes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-nantes.fr" + ], + "aliases": [ + "University of Nantes", + "Université de Nantes" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Nantes", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009371" + ], + "preferred": "501100009371" + }, + "GRID": { + "all": "grid.4817.a", + "preferred": "grid.4817.a" + }, + "ISNI": { + "all": [ + "0000 0001 2189 0784" + ], + "preferred": "0000 0001 2189 0784" + }, + "Wikidata": { + "all": [ + "Q259388" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03hbp5t65.json b/v1.51/v1/03hbp5t65.json new file mode 100644 index 000000000..42919fdeb --- /dev/null +++ b/v1.51/v1/03hbp5t65.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/03hbp5t65", + "name": "University of Idaho", + "email_address": null, + "ip_addresses": [], + "established": 1889, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Idaho Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/05b1jpg49" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 46.73239, + "lng": -117.00017, + "state": null, + "state_code": null, + "city": "Moscow", + "geonames_city": { + "id": 5601538, + "city": "Moscow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uidaho.edu/" + ], + "aliases": [], + "acronyms": [ + "UI" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Idaho", + "labels": [ + { + "label": "Universidad de Idaho", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012326" + ], + "preferred": "100012326" + }, + "GRID": { + "all": "grid.266456.5", + "preferred": "grid.266456.5" + }, + "ISNI": { + "all": [ + "0000 0001 2284 9900" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1854488" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03hk8yf10.json b/v1.51/v1/03hk8yf10.json new file mode 100644 index 000000000..f17fba555 --- /dev/null +++ b/v1.51/v1/03hk8yf10.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03hk8yf10", + "name": "Entergy (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.95465, + "lng": -90.07507, + "state": null, + "state_code": null, + "city": "New Orleans", + "geonames_city": { + "id": 4335045, + "city": "New Orleans", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.entergy.com" + ], + "aliases": [ + "Entergy Co", + "Entergy Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Entergy", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03jg63j21.json b/v1.51/v1/03jg63j21.json new file mode 100644 index 000000000..32fdc06e9 --- /dev/null +++ b/v1.51/v1/03jg63j21.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/03jg63j21", + "name": "Instituto Tecnológico Superior de Tantoyuca", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.39307, + "lng": -98.18453, + "state": null, + "state_code": null, + "city": "Tantoyuca", + "geonames_city": { + "id": 8583801, + "city": "Tantoyuca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itsta.edu.mx" + ], + "aliases": [ + "ITS de Tantoyuca" + ], + "acronyms": [ + "ITSTa" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03jnx8g68.json b/v1.51/v1/03jnx8g68.json new file mode 100644 index 000000000..48414a531 --- /dev/null +++ b/v1.51/v1/03jnx8g68.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03jnx8g68", + "name": "Universidad Tecnológica de Coahuila", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 25.53928, + "lng": -100.94742, + "state": null, + "state_code": null, + "city": "Ramos Arizpe", + "geonames_city": { + "id": 3991043, + "city": "Ramos Arizpe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://utc.edu.mx" + ], + "aliases": [], + "acronyms": [ + "UTC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03jt9em80.json b/v1.51/v1/03jt9em80.json new file mode 100644 index 000000000..ae4bceb87 --- /dev/null +++ b/v1.51/v1/03jt9em80.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03jt9em80", + "name": "Centre de recherches en arts et esthétique", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-picardie.fr/crae/" + ], + "aliases": [], + "acronyms": [ + "CRAE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785614" + ], + "preferred": "Q51785614" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03jwjxy73.json b/v1.51/v1/03jwjxy73.json new file mode 100644 index 000000000..40a7f1d52 --- /dev/null +++ b/v1.51/v1/03jwjxy73.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03jwjxy73", + "name": "ECAL/Ecole cantonale d'art de Lausanned’art de Lausanne", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ecal.ch" + ], + "aliases": [ + "HES-SO ECAL/Ecole cantonale d’art de Lausanne", + "HES-SO School of Art & Design - ECAL/Ecole cantonale" + ], + "acronyms": [ + "ECAL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03k1gpj17.json b/v1.51/v1/03k1gpj17.json new file mode 100644 index 000000000..72e6cc99f --- /dev/null +++ b/v1.51/v1/03k1gpj17.json @@ -0,0 +1,153 @@ +{ + "id": "https://ror.org/03k1gpj17", + "name": "Colorado State University", + "email_address": null, + "ip_addresses": [], + "established": 1870, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "CSU Ventures", + "type": "Child", + "id": "https://ror.org/03q8c8138" + }, + { + "label": "Colorado Water Center", + "type": "Child", + "id": "https://ror.org/021h2hc85" + }, + { + "label": "Colorado Agricultural Experiment Station", + "type": "Child", + "id": "https://ror.org/01cc25b87" + }, + { + "label": "Colorado Clinical and Translational Sciences Institute", + "type": "Child", + "id": "https://ror.org/03xsh7c04" + }, + { + "label": "Center for Risk-Based Community Resilience Planning", + "type": "Child", + "id": "https://ror.org/01me7wg25" + }, + { + "label": "Colorado State University System", + "type": "Parent", + "id": "https://ror.org/03xj0x983" + }, + { + "label": "University of Colorado Cancer Center", + "type": "Related", + "id": "https://ror.org/04cqn7d42" + }, + { + "label": "Konza Prairie Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/02wavzm11" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 40.58526, + "lng": -105.08442, + "state": null, + "state_code": null, + "city": "Fort Collins", + "geonames_city": { + "id": 5577147, + "city": "Fort Collins", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.colostate.edu/" + ], + "aliases": [ + "Colorado Agricultural College", + "Colorado State College of Agriculture and Mechanic Arts" + ], + "acronyms": [ + "CSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Colorado_State_University", + "labels": [ + { + "label": "Universidad Estatal de Colorado", + "iso639": "es" + }, + { + "label": "Université d'État du colorado", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007235", + "100011340" + ], + "preferred": "100007235" + }, + "GRID": { + "all": "grid.47894.36", + "preferred": "grid.47894.36" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8083" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1111640" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03m2x1q45.json b/v1.51/v1/03m2x1q45.json new file mode 100644 index 000000000..993b9fb3d --- /dev/null +++ b/v1.51/v1/03m2x1q45.json @@ -0,0 +1,161 @@ +{ + "id": "https://ror.org/03m2x1q45", + "name": "University of Arizona", + "email_address": null, + "ip_addresses": [], + "established": 1885, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Arizona Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/054zw2979" + }, + { + "label": "Arizona Experiment Station", + "type": "Child", + "id": "https://ror.org/053sq3902" + }, + { + "label": "BIO5 Institute", + "type": "Child", + "id": "https://ror.org/023drta67" + }, + { + "label": "Arizona's Public Universities", + "type": "Parent", + "id": "https://ror.org/0054f1w39" + }, + { + "label": "Valleywise Health", + "type": "Related", + "id": "https://ror.org/05tbp9v13" + }, + { + "label": "Phoenix Children's Hospital", + "type": "Related", + "id": "https://ror.org/03ae6qy41" + }, + { + "label": "Banner - University Medical Center Tucson", + "type": "Related", + "id": "https://ror.org/02xbk5j62" + }, + { + "label": "Jornada Basin Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/05976ta47" + }, + { + "label": "Materials Science in Extreme Environments University Research Alliance", + "type": "Related", + "id": "https://ror.org/04n07f274" + }, + { + "label": "University of Arizona Cancer Center", + "type": "Related", + "id": "https://ror.org/04tvx8690" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 32.22174, + "lng": -110.92648, + "state": null, + "state_code": null, + "city": "Tucson", + "geonames_city": { + "id": 5318313, + "city": "Tucson", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.arizona.edu/" + ], + "aliases": [], + "acronyms": [ + "UA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Arizona", + "labels": [ + { + "label": "Universidad de Arizona", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007899", + "100005421", + "100007758", + "100007757", + "100008336", + "100005550", + "100019981" + ], + "preferred": "100019981" + }, + "GRID": { + "all": "grid.134563.6", + "preferred": "grid.134563.6" + }, + "ISNI": { + "all": [ + "0000 0001 2168 186X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q503419" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03mj14b52.json b/v1.51/v1/03mj14b52.json new file mode 100644 index 000000000..075c55570 --- /dev/null +++ b/v1.51/v1/03mj14b52.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/03mj14b52", + "name": "Peuplements végétaux et bioagresseurs en milieu tropical", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "University of Reunion Island", + "type": "Parent", + "id": "https://ror.org/005ypkf75" + } + ], + "addresses": [ + { + "lat": -21.3393, + "lng": 55.47811, + "state": null, + "state_code": null, + "city": "Saint-Pierre", + "geonames_city": { + "id": 935214, + "city": "Saint-Pierre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://umr-pvbmt.cirad.fr" + ], + "aliases": [ + "UMR Peuplements végétaux et bioagresseurs en milieu tropical" + ], + "acronyms": [ + "PVBMT", + "UMR PVBMT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Plant Communities and Biological Invaders in Tropical Environments", + "iso639": "en" + } + ], + "country": { + "country_name": "Réunion", + "country_code": "RE" + }, + "external_ids": { + "GRID": { + "all": "grid.464055.6", + "preferred": "grid.464055.6" + }, + "ISNI": { + "all": [ + "0000 0004 0388 7604" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03mjtaj61.json b/v1.51/v1/03mjtaj61.json new file mode 100644 index 000000000..0115010f2 --- /dev/null +++ b/v1.51/v1/03mjtaj61.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03mjtaj61", + "name": "Council of Graduate Departments of Psychology", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.43826, + "lng": -84.28073, + "state": null, + "state_code": null, + "city": "Tallahassee", + "geonames_city": { + "id": 4174715, + "city": "Tallahassee", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cogdop.org" + ], + "aliases": [], + "acronyms": [ + "COGDOP" + ], + "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.51/v1/03mnkh157.json b/v1.51/v1/03mnkh157.json new file mode 100644 index 000000000..7f070bdd4 --- /dev/null +++ b/v1.51/v1/03mnkh157.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03mnkh157", + "name": "Enphase Energy (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.54827, + "lng": -121.98857, + "state": null, + "state_code": null, + "city": "Fremont", + "geonames_city": { + "id": 5350734, + "city": "Fremont", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://enphase.com" + ], + "aliases": [ + "Enphase", + "Enphase Energy Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Enphase_Energy", + "labels": [ + { + "label": "Enphase Energy", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03n450987.json b/v1.51/v1/03n450987.json new file mode 100644 index 000000000..3c06520c9 --- /dev/null +++ b/v1.51/v1/03n450987.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03n450987", + "name": "Global Citizenship Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.43696, + "lng": 24.75353, + "state": null, + "state_code": null, + "city": "Tallinn", + "geonames_city": { + "id": 588409, + "city": "Tallinn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://globalcitizenshipfoundation.org" + ], + "aliases": [], + "acronyms": [ + "GCF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Estonia", + "country_code": "EE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03ngg2631.json b/v1.51/v1/03ngg2631.json new file mode 100644 index 000000000..90cc18132 --- /dev/null +++ b/v1.51/v1/03ngg2631.json @@ -0,0 +1,161 @@ +{ + "id": "https://ror.org/03ngg2631", + "name": "Ministry of Defence of the Russian Federation", + "email_address": null, + "ip_addresses": [], + "established": 1717, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "24th Central Research Institute of the Russian Defence Ministry", + "type": "Child", + "id": "https://ror.org/00wm96095" + }, + { + "label": "25th State Research Institute of Chemmotology of the Ministry of Defence of the Russian Federation", + "type": "Child", + "id": "https://ror.org/03sc9rz48" + }, + { + "label": "27th Central Research Institute of the Ministry of Defence of the Russian Federation", + "type": "Child", + "id": "https://ror.org/053fj3b72" + }, + { + "label": "3rd Central Research Institute of the Russian Defence Ministry", + "type": "Child", + "id": "https://ror.org/03e92b619" + }, + { + "label": "40th State Research Institute of the Ministry of Defence of the Russian Federation", + "type": "Child", + "id": "https://ror.org/00yjcvf23" + }, + { + "label": "4th Central Research Institute of the Russian Defence Ministry", + "type": "Child", + "id": "https://ror.org/013dvfk22" + }, + { + "label": "Central Research Institute of Engineering Troops of the Ministry of Defense of the Russian Federation", + "type": "Child", + "id": "https://ror.org/05jsss136" + }, + { + "label": "Krasnodar Higher Military School named after General of the Army S. Shtemenko", + "type": "Child", + "id": "https://ror.org/05dhs6t85" + }, + { + "label": "Military Academy of Air-Space Defense named after Marshal of the Soviet Union GK Zhukov", + "type": "Child", + "id": "https://ror.org/03zj4hg45" + }, + { + "label": "Military Academy of Communications named after Marshal of the Soviet Union SM Budennogo", + "type": "Child", + "id": "https://ror.org/04crchr76" + }, + { + "label": "Military Academy of Material and Technical Support them General of the Army A.V. Khruleva", + "type": "Child", + "id": "https://ror.org/040xkwz97" + }, + { + "label": "Military Academy of Strategic Missile Forces named after Peter the Great", + "type": "Child", + "id": "https://ror.org/038m16120" + }, + { + "label": "Military University", + "type": "Child", + "id": "https://ror.org/029jy4332" + }, + { + "label": "Naval Academy named after Admiral of the Fleet of the Soviet Union NG Kuznetsov", + "type": "Child", + "id": "https://ror.org/05damwn69" + }, + { + "label": "S. M. Kirov Military Medical Academy", + "type": "Child", + "id": "https://ror.org/035k4m812" + } + ], + "addresses": [ + { + "lat": 55.75222, + "lng": 37.61556, + "state": null, + "state_code": null, + "city": "Moscow", + "geonames_city": { + "id": 524901, + "city": "Moscow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://eng.mil.ru/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Defence_(Russia)", + "labels": [ + { + "label": "Министерство обороны Российской Федерации", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.494808.9", + "preferred": "grid.494808.9" + }, + "Wikidata": { + "all": [ + "Q1146492" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03nj9d526.json b/v1.51/v1/03nj9d526.json new file mode 100644 index 000000000..5a226245d --- /dev/null +++ b/v1.51/v1/03nj9d526.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03nj9d526", + "name": "Al-Hadi University College", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.34058, + "lng": 44.40088, + "state": null, + "state_code": null, + "city": "Baghdad", + "geonames_city": { + "id": 98182, + "city": "Baghdad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://huc.edu.iq" + ], + "aliases": [], + "acronyms": [ + "HUC" + ], + "status": "active", + "wikipedia_url": "https://ar.wikipedia.org/wiki/%D9%83%D9%84%D9%8A%D8%A9_%D8%A7%D9%84%D9%87%D8%A7%D8%AF%D9%8A_%D8%A7%D9%84%D8%AC%D8%A7%D9%85%D8%B9%D8%A9", + "labels": [ + { + "label": "كلية الهادي الجامعة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0819 9621" + ], + "preferred": "0000 0005 0819 9621" + }, + "Wikidata": { + "all": [ + "Q25450690" + ], + "preferred": "Q25450690" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03p8zav06.json b/v1.51/v1/03p8zav06.json new file mode 100644 index 000000000..dfc53ef5b --- /dev/null +++ b/v1.51/v1/03p8zav06.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03p8zav06", + "name": "Wellington Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.7, + "lng": -2.51667, + "state": null, + "state_code": null, + "city": "Wellington", + "geonames_city": { + "id": 2634573, + "city": "Wellington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/wellington-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.439814.3", + "preferred": "grid.439814.3" + }, + "Wikidata": { + "all": [ + "Q30293144" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03pvr2g57.json b/v1.51/v1/03pvr2g57.json new file mode 100644 index 000000000..c8f2df50a --- /dev/null +++ b/v1.51/v1/03pvr2g57.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/03pvr2g57", + "name": "Universitätsklinikum Würzburg", + "email_address": null, + "ip_addresses": [], + "established": 1402, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Augenklinik Universitätsklinikum Würzburg", + "type": "Child", + "id": "https://ror.org/00rwpbm87" + }, + { + "label": "Comprehensive Cancer Center Mainfranken", + "type": "Child", + "id": "https://ror.org/013tmk464" + }, + { + "label": "Universitäts-Kinderklinik Würzburg", + "type": "Child", + "id": "https://ror.org/000ph9k36" + }, + { + "label": "University of Würzburg", + "type": "Related", + "id": "https://ror.org/00fbnyb24" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 49.79391, + "lng": 9.95121, + "state": null, + "state_code": null, + "city": "Würzburg", + "geonames_city": { + "id": 2805615, + "city": "Würzburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ukw.de" + ], + "aliases": [ + "Universitaetsklinikum Wuerzburg - Klinikum Der Bayerischen Julius-Maximilians-Universitat", + "University Hospital Würzburg", + "University Hospital of Wuerzburg" + ], + "acronyms": [ + "UKW" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.411760.5", + "preferred": "grid.411760.5" + }, + "ISNI": { + "all": [ + "0000 0001 1378 7891" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1784848" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03q03zn57.json b/v1.51/v1/03q03zn57.json new file mode 100644 index 000000000..866eb516d --- /dev/null +++ b/v1.51/v1/03q03zn57.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/03q03zn57", + "name": "Gap (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gapinc.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.51/v1/03qj7sq78.json b/v1.51/v1/03qj7sq78.json new file mode 100644 index 000000000..eba9e155c --- /dev/null +++ b/v1.51/v1/03qj7sq78.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03qj7sq78", + "name": "CareQuest Institute for Oral Health", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.35843, + "lng": -71.05977, + "state": null, + "state_code": null, + "city": "Boston", + "geonames_city": { + "id": 4930956, + "city": "Boston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.carequest.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100027678" + ], + "preferred": "100027678" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03qn3zw06.json b/v1.51/v1/03qn3zw06.json new file mode 100644 index 000000000..d36c116a2 --- /dev/null +++ b/v1.51/v1/03qn3zw06.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03qn3zw06", + "name": "Lakeside University College Ghana", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Kwame Nkrumah University of Science and Technology", + "type": "Related", + "id": "https://ror.org/00cb23x68" + }, + { + "label": "University for Development Studies", + "type": "Related", + "id": "https://ror.org/052nhnq73" + } + ], + "addresses": [ + { + "lat": 5.55602, + "lng": -0.1969, + "state": null, + "state_code": null, + "city": "Accra", + "geonames_city": { + "id": 2306104, + "city": "Accra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lucg.edu.gh" + ], + "aliases": [ + "LUC Ghana", + "Lakeside University College", + "Madina Institute of Science and Technology" + ], + "acronyms": [ + "LUCG", + "MIST" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lakeside_University_College", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7417 3879" + ], + "preferred": "0000 0004 7417 3879" + }, + "Wikidata": { + "all": [ + "Q55648280" + ], + "preferred": "Q55648280" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03qq6zv19.json b/v1.51/v1/03qq6zv19.json new file mode 100644 index 000000000..053ba9789 --- /dev/null +++ b/v1.51/v1/03qq6zv19.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/03qq6zv19", + "name": "Dropbox (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dropbox.com" + ], + "aliases": [ + "Dropbox Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Dropbox", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q15589464" + ], + "preferred": "Q15589464" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03qz2be51.json b/v1.51/v1/03qz2be51.json new file mode 100644 index 000000000..313b7f09b --- /dev/null +++ b/v1.51/v1/03qz2be51.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03qz2be51", + "name": "CMS Energy (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.24587, + "lng": -84.40135, + "state": null, + "state_code": null, + "city": "Jackson", + "geonames_city": { + "id": 4997384, + "city": "Jackson", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cmsenergy.com" + ], + "aliases": [ + "CMS Energy Corp", + "CMS Energy Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "CMS Energy", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03r0ha626.json b/v1.51/v1/03r0ha626.json new file mode 100644 index 000000000..a4f0d28ce --- /dev/null +++ b/v1.51/v1/03r0ha626.json @@ -0,0 +1,149 @@ +{ + "id": "https://ror.org/03r0ha626", + "name": "University of Utah", + "email_address": null, + "ip_addresses": [], + "established": 1850, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Utah Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/0028hgc48" + }, + { + "label": "CI Compass", + "type": "Child", + "id": "https://ror.org/001zwgm84" + }, + { + "label": "Utah System of Higher Education", + "type": "Parent", + "id": "https://ror.org/02mv6r745" + }, + { + "label": "Huntsman Cancer Institute", + "type": "Related", + "id": "https://ror.org/03v7tx966" + }, + { + "label": "Primary Children's Hospital", + "type": "Related", + "id": "https://ror.org/053hkmn05" + }, + { + "label": "University of Utah Health Care", + "type": "Related", + "id": "https://ror.org/047s7ex42" + }, + { + "label": "University of Utah Hospital", + "type": "Related", + "id": "https://ror.org/03b436430" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 40.76078, + "lng": -111.89105, + "state": null, + "state_code": null, + "city": "Salt Lake City", + "geonames_city": { + "id": 5780993, + "city": "Salt Lake City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.utah.edu/" + ], + "aliases": [ + "University of Deseret" + ], + "acronyms": [ + "UU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Utah", + "labels": [ + { + "label": "Universidad de Utah", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007747", + "100009963", + "100010573", + "100006415", + "100008236", + "100008235", + "100009263", + "100006042" + ], + "preferred": "100007747" + }, + "GRID": { + "all": "grid.223827.e", + "preferred": "grid.223827.e" + }, + "ISNI": { + "all": [ + "0000 0001 2193 0096" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q168515" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03r6wtf12.json b/v1.51/v1/03r6wtf12.json new file mode 100644 index 000000000..b580f0b26 --- /dev/null +++ b/v1.51/v1/03r6wtf12.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03r6wtf12", + "name": "Aibee (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://aibee.com" + ], + "aliases": [ + "Aibee Beijing Intelligent Technology Co Ltd", + "Aibee Inc.", + "爱笔智能" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Aibee", + "iso639": null + }, + { + "label": "爱笔智能科技有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03t5a9538.json b/v1.51/v1/03t5a9538.json new file mode 100644 index 000000000..588064f3e --- /dev/null +++ b/v1.51/v1/03t5a9538.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03t5a9538", + "name": "Instituto Tecnologico Superior de Misantla", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 19.98196, + "lng": -96.89248, + "state": null, + "state_code": null, + "city": "Misantla", + "geonames_city": { + "id": 8583754, + "city": "Misantla", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://misantla.tecnm.mx" + ], + "aliases": [ + "TecNM Campus de Misantla", + "Tecnológico Nacional de México Campus de Misantla", + "Tecnológico de Misantla" + ], + "acronyms": [ + "ITSM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 3984" + ], + "preferred": "0000 0004 1770 3984" + }, + "Wikidata": { + "all": [ + "Q24880628" + ], + "preferred": "Q24880628" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03tc3ph72.json b/v1.51/v1/03tc3ph72.json new file mode 100644 index 000000000..46c03eeb9 --- /dev/null +++ b/v1.51/v1/03tc3ph72.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03tc3ph72", + "name": "Sempra Energy (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sempra.com" + ], + "aliases": [ + "AIG Trading", + "Sempra Energy" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Sempra Energy", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03v4gjf40.json b/v1.51/v1/03v4gjf40.json new file mode 100644 index 000000000..0da778562 --- /dev/null +++ b/v1.51/v1/03v4gjf40.json @@ -0,0 +1,129 @@ +{ + "id": "https://ror.org/03v4gjf40", + "name": "Technische Universität Berlin", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Daimler Center for Automotive Information Technology Innovations", + "type": "Child", + "id": "https://ror.org/048d5b075" + }, + { + "label": "Weizenbaum Institute", + "type": "Child", + "id": "https://ror.org/023kksk09" + }, + { + "label": "Berlin Mathematical School", + "type": "Related", + "id": "https://ror.org/03zekj455" + }, + { + "label": "Weierstrass Institute for Applied Analysis and Stochastics", + "type": "Related", + "id": "https://ror.org/00h1x4t21" + }, + { + "label": "TU9", + "type": "Related", + "id": "https://ror.org/02nx8n605" + }, + { + "label": "Berlin Institute for the Foundations of Learning and Data", + "type": "Child", + "id": "https://ror.org/05dsfb086" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tu.berlin" + ], + "aliases": [ + "Berlin Institute of Technology", + "TU Berlin", + "Technical University of Berlin" + ], + "acronyms": [ + "TUB" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Technical_University_of_Berlin", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006764" + ], + "preferred": null + }, + "GRID": { + "all": "grid.6734.6", + "preferred": "grid.6734.6" + }, + "ISNI": { + "all": [ + "0000 0001 2292 8254" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51985" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03v8tnc06.json b/v1.51/v1/03v8tnc06.json new file mode 100644 index 000000000..aead4e399 --- /dev/null +++ b/v1.51/v1/03v8tnc06.json @@ -0,0 +1,132 @@ +{ + "id": "https://ror.org/03v8tnc06", + "name": "Institute of High Energy Physics", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "China Spallation Neutron Source", + "type": "Child", + "id": "https://ror.org/01g140v14" + }, + { + "label": "Key Laboratory of Nuclear Radiation and Nuclear Energy Technology", + "type": "Child", + "id": "https://ror.org/03prcq065" + }, + { + "label": "Songshan Lake Materials Laboratory", + "type": "Child", + "id": "https://ror.org/020vtf184" + }, + { + "label": "State Key Laboratory of Nuclear Detection and Nuclear Electronics", + "type": "Child", + "id": "https://ror.org/0303gny42" + }, + { + "label": "Chinese Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/034t30j35" + }, + { + "label": "Jiangmen Underground Neutrino Observatory", + "type": "Child", + "id": "https://ror.org/0231an742" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://english.ihep.cas.cn/" + ], + "aliases": [], + "acronyms": [ + "IHEP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_of_High_Energy_Physics", + "labels": [ + { + "label": "中国科学院高能物理研究所", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002856", + "501100005237" + ], + "preferred": "501100002856" + }, + "GRID": { + "all": "grid.418741.f", + "preferred": "grid.418741.f" + }, + "ISNI": { + "all": [ + "0000 0004 0632 3097" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1665162", + "Q4881128" + ], + "preferred": "Q1665162" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03ve7j725.json b/v1.51/v1/03ve7j725.json new file mode 100644 index 000000000..2edccf272 --- /dev/null +++ b/v1.51/v1/03ve7j725.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03ve7j725", + "name": "APA Corporation (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.76328, + "lng": -95.36327, + "state": null, + "state_code": null, + "city": "Houston", + "geonames_city": { + "id": 4699066, + "city": "Houston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://apacorp.com" + ], + "aliases": [ + "Apache Corporation", + "Apache Oil Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/APA_Corporation", + "labels": [ + { + "label": "APA Corporation", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q119991" + ], + "preferred": "Q119991" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03w9xqv95.json b/v1.51/v1/03w9xqv95.json new file mode 100644 index 000000000..311bf6c35 --- /dev/null +++ b/v1.51/v1/03w9xqv95.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03w9xqv95", + "name": "Lowe's (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.74529, + "lng": -93.71771, + "state": null, + "state_code": null, + "city": "Mooresville", + "geonames_city": { + "id": 4399012, + "city": "Mooresville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lowes.com" + ], + "aliases": [ + "Lowe's Companies, Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Lowe's", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03wmf1y16.json b/v1.51/v1/03wmf1y16.json new file mode 100644 index 000000000..f956846d0 --- /dev/null +++ b/v1.51/v1/03wmf1y16.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/03wmf1y16", + "name": "University of Colorado Anschutz Medical Campus", + "email_address": null, + "ip_addresses": [], + "established": 1876, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Colorado Cancer Center", + "type": "Related", + "id": "https://ror.org/04cqn7d42" + }, + { + "label": "University of Colorado Hospital", + "type": "Related", + "id": "https://ror.org/006jjmw19" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 39.72943, + "lng": -104.83192, + "state": null, + "state_code": null, + "city": "Aurora", + "geonames_city": { + "id": 5412347, + "city": "Aurora", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cuanschutz.edu/" + ], + "aliases": [ + "CU Anschutz Medical Campus" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Anschutz_Medical_Campus", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016193", + "100014450" + ], + "preferred": "100014450" + }, + "GRID": { + "all": "grid.430503.1", + "preferred": "grid.430503.1" + }, + "ISNI": { + "all": [ + "0000 0001 0703 675X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4770537" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03wx30207.json b/v1.51/v1/03wx30207.json new file mode 100644 index 000000000..b3ce1419e --- /dev/null +++ b/v1.51/v1/03wx30207.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/03wx30207", + "name": "EOG Resources (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.76328, + "lng": -95.36327, + "state": null, + "state_code": null, + "city": "Houston", + "geonames_city": { + "id": 4699066, + "city": "Houston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.eogresources.com" + ], + "aliases": [ + "EOG Resources Inc", + "Enron Oil & Gas Company", + "Enron Oil and Gas Company" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "EOG Resources", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03x53g461.json b/v1.51/v1/03x53g461.json new file mode 100644 index 000000000..bbabf8bd9 --- /dev/null +++ b/v1.51/v1/03x53g461.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03x53g461", + "name": "Fonctionnement agroécologique et performances des systèmes de culture horticoles", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ur-hortsys.cirad.fr" + ], + "aliases": [ + "Hortsys", + "UPR Hortsys", + "Unité de recherche Hortsys" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Agroecological Functioning and Performances of Horticultural Systems", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03xbe6k03.json b/v1.51/v1/03xbe6k03.json new file mode 100644 index 000000000..298eb673a --- /dev/null +++ b/v1.51/v1/03xbe6k03.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/03xbe6k03", + "name": "Wuhan General Hospital of Guangzhou", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "General Hospital of Central Theater Command", + "type": "Successor", + "id": "https://ror.org/030ev1m28" + } + ], + "addresses": [ + { + "lat": 30.58333, + "lng": 114.26667, + "state": null, + "state_code": null, + "city": "Wuhan", + "geonames_city": { + "id": 1791247, + "city": "Wuhan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.whzyy.net/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [ + { + "label": "中国人民解放军广州军区武汉总医院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.417279.e", + "preferred": "grid.417279.e" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03xvvtc63.json b/v1.51/v1/03xvvtc63.json new file mode 100644 index 000000000..b0247865b --- /dev/null +++ b/v1.51/v1/03xvvtc63.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/03xvvtc63", + "name": "Center for Brooklyn History", + "email_address": null, + "ip_addresses": [], + "established": 1863, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Brooklyn Public Library", + "type": "Parent", + "id": "https://ror.org/051kejp81" + } + ], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bklynlibrary.org/center-for-brooklyn-history" + ], + "aliases": [ + "Brooklyn Historical Society" + ], + "acronyms": [ + "BHS", + "CBH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Center_for_Brooklyn_History", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446382.f", + "preferred": "grid.446382.f" + }, + "ISNI": { + "all": [ + "0000 0001 2303 085X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4974851" + ], + "preferred": "Q4974851" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03xxf5v12.json b/v1.51/v1/03xxf5v12.json new file mode 100644 index 000000000..3b645f8b1 --- /dev/null +++ b/v1.51/v1/03xxf5v12.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03xxf5v12", + "name": "Airbnb (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://airbnb.com" + ], + "aliases": [ + "Airbed & Breakfast", + "Airbnb Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Airbnb", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03y6j4b59.json b/v1.51/v1/03y6j4b59.json new file mode 100644 index 000000000..dae9ad7f1 --- /dev/null +++ b/v1.51/v1/03y6j4b59.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03y6j4b59", + "name": "Crown Castle International (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.76328, + "lng": -95.36327, + "state": null, + "state_code": null, + "city": "Houston", + "geonames_city": { + "id": 4699066, + "city": "Houston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.crowncastle.com" + ], + "aliases": [ + "Crown Castle", + "Crowncastle" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Crown Castle International", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03yajem64.json b/v1.51/v1/03yajem64.json new file mode 100644 index 000000000..0c9d80513 --- /dev/null +++ b/v1.51/v1/03yajem64.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03yajem64", + "name": "Nisource (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.48281, + "lng": -87.33281, + "state": null, + "state_code": null, + "city": "Merrillville", + "geonames_city": { + "id": 4923482, + "city": "Merrillville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nisource.com" + ], + "aliases": [ + "Nipsco Industries" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Nisource", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03ypykr22.json b/v1.51/v1/03ypykr22.json new file mode 100644 index 000000000..5355954f7 --- /dev/null +++ b/v1.51/v1/03ypykr22.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03ypykr22", + "name": "Universidad ORT Uruguay", + "email_address": null, + "ip_addresses": [], + "established": 1942, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -34.90328, + "lng": -56.18816, + "state": null, + "state_code": null, + "city": "Montevideo", + "geonames_city": { + "id": 3441575, + "city": "Montevideo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ort.edu.uy/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Universidad_ORT_Uruguay", + "labels": [], + "country": { + "country_name": "Uruguay", + "country_code": "UY" + }, + "external_ids": { + "GRID": { + "all": "grid.442045.3", + "preferred": "grid.442045.3" + }, + "ISNI": { + "all": [ + "0000 0000 8032 2974" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3772943" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03z22t144.json b/v1.51/v1/03z22t144.json new file mode 100644 index 000000000..b5d06589b --- /dev/null +++ b/v1.51/v1/03z22t144.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03z22t144", + "name": "Mercedes-Benz (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Daimler (Japan)", + "type": "Predecessor", + "id": "https://ror.org/04hc84p76" + }, + { + "label": "Mercedes-Benz (Germany)", + "type": "Parent", + "id": "https://ror.org/055rn2a38" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mercedes-benz.co.jp" + ], + "aliases": [ + "Mercedes-Benz Japan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "メルセデスベンツ日本", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03ze73t75.json b/v1.51/v1/03ze73t75.json new file mode 100644 index 000000000..f4b1f32da --- /dev/null +++ b/v1.51/v1/03ze73t75.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03ze73t75", + "name": "Recyclage et risque", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ur-recyclage-risque.cirad.fr" + ], + "aliases": [ + "Recyclage et risque", + "UPR Recyclage et risque", + "Unité de recherche Recyclage et risque" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Recycling and Risk", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/03zhyf578.json b/v1.51/v1/03zhyf578.json new file mode 100644 index 000000000..131b336a1 --- /dev/null +++ b/v1.51/v1/03zhyf578.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/03zhyf578", + "name": "Fonctionnement écologique et gestion durable des agrosystèmes bananiers et ananas", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ur-geco.cirad.fr" + ], + "aliases": [ + "UPR Geco", + "Unité de recherche Geco" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Functioning and Sustainable Management of Banana and Pineapple", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782558" + ], + "preferred": "Q51782558" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/03zqyp327.json b/v1.51/v1/03zqyp327.json new file mode 100644 index 000000000..e9a0ff725 --- /dev/null +++ b/v1.51/v1/03zqyp327.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/03zqyp327", + "name": "Cincinnati Financial (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.34589, + "lng": -84.5605, + "state": null, + "state_code": null, + "city": "Fairfield", + "geonames_city": { + "id": 4511283, + "city": "Fairfield", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cinfin.com" + ], + "aliases": [ + "Cincinnati Financial Corp", + "Cincinnati Financial Corporation", + "The Cincinnati Insurance Companies" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cincinnati Financial", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0406gha72.json b/v1.51/v1/0406gha72.json new file mode 100644 index 000000000..df1537cbc --- /dev/null +++ b/v1.51/v1/0406gha72.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/0406gha72", + "name": "University of Nevada, Las Vegas", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Nevada System of Higher Education", + "type": "Parent", + "id": "https://ror.org/03sxdvx36" + }, + { + "label": "University Medical Center of Southern Nevada", + "type": "Related", + "id": "https://ror.org/017sgna85" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 36.17497, + "lng": -115.13722, + "state": null, + "state_code": null, + "city": "Las Vegas", + "geonames_city": { + "id": 5506956, + "city": "Las Vegas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unlv.edu/" + ], + "aliases": [], + "acronyms": [ + "UNLV" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Nevada,_Las_Vegas", + "labels": [ + { + "label": "Universidad de Nevada, Las Vegas", + "iso639": "es" + }, + { + "label": "Université du Nevada à las Vegas", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100004186", + "100007162" + ], + "preferred": null + }, + "GRID": { + "all": "grid.272362.0", + "preferred": "grid.272362.0" + }, + "ISNI": { + "all": [ + "0000 0001 0806 6926" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2302311" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/040asb018.json b/v1.51/v1/040asb018.json new file mode 100644 index 000000000..aee1b259d --- /dev/null +++ b/v1.51/v1/040asb018.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/040asb018", + "name": "American Electric Power (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.96118, + "lng": -82.99879, + "state": null, + "state_code": null, + "city": "Columbus", + "geonames_city": { + "id": 4509177, + "city": "Columbus", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aep.com" + ], + "aliases": [ + "American Electric Power Company Inc." + ], + "acronyms": [ + "AEP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "American Electric Power", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0698 7502" + ], + "preferred": "0000 0001 0698 7502" + }, + "Wikidata": { + "all": [ + "Q18970200" + ], + "preferred": "Q18970200" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/040b32p69.json b/v1.51/v1/040b32p69.json new file mode 100644 index 000000000..121554c06 --- /dev/null +++ b/v1.51/v1/040b32p69.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/040b32p69", + "name": "Megvii (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.megvii.com" + ], + "aliases": [ + "Megvii Inc", + "Megvii Technology", + "Megvii Technology Limited", + "Megvii Technology Ltd", + "旷视", + "旷视科技" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Megvii", + "iso639": null + }, + { + "label": "北京旷视科技有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/040f08y74.json b/v1.51/v1/040f08y74.json new file mode 100644 index 000000000..53e9fbb42 --- /dev/null +++ b/v1.51/v1/040f08y74.json @@ -0,0 +1,128 @@ +{ + "id": "https://ror.org/040f08y74", + "name": "St George's, University of London", + "email_address": null, + "ip_addresses": [], + "established": 1733, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of London", + "type": "Parent", + "id": "https://ror.org/04cw6st05" + }, + { + "label": "Croydon University Hospital", + "type": "Related", + "id": "https://ror.org/04e2jep17" + }, + { + "label": "Royal Surrey County Hospital", + "type": "Related", + "id": "https://ror.org/02w7x5c08" + }, + { + "label": "St Helier Hospital", + "type": "Related", + "id": "https://ror.org/019hb9542" + }, + { + "label": "St Peter's Hospital", + "type": "Related", + "id": "https://ror.org/0159cmf83" + }, + { + "label": "City St George's, University of London", + "type": "Parent", + "id": "https://ror.org/047ybhc09" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sgul.ac.uk" + ], + "aliases": [ + "St George's Hospital Medical School", + "St George's University of London" + ], + "acronyms": [ + "SGUL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/St_George's,_University_of_London", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004337" + ], + "preferred": null + }, + "GRID": { + "all": "grid.264200.2", + "preferred": "grid.264200.2" + }, + "ISNI": { + "all": [ + "0000 0000 8546 682X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q772421" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/040zz8080.json b/v1.51/v1/040zz8080.json new file mode 100644 index 000000000..7994800c1 --- /dev/null +++ b/v1.51/v1/040zz8080.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/040zz8080", + "name": "Cerebras Systems (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.36883, + "lng": -122.03635, + "state": null, + "state_code": null, + "city": "Sunnyvale", + "geonames_city": { + "id": 5400075, + "city": "Sunnyvale", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cerebras.net" + ], + "aliases": [ + "Cerebras Systems Inc", + "Cerebras Systems Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cerebras Systems", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/041g6bx17.json b/v1.51/v1/041g6bx17.json new file mode 100644 index 000000000..39da718cb --- /dev/null +++ b/v1.51/v1/041g6bx17.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/041g6bx17", + "name": "Faculdade Pernambucana de Saúde", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -8.05389, + "lng": -34.88111, + "state": null, + "state_code": null, + "city": "Recife", + "geonames_city": { + "id": 3390760, + "city": "Recife", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fps.edu.br" + ], + "aliases": [], + "acronyms": [ + "FPS" + ], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Faculdade_Pernambucana_de_Sa%C3%BAde", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q10279298" + ], + "preferred": "Q10279298" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/041twcm28.json b/v1.51/v1/041twcm28.json new file mode 100644 index 000000000..2a825580d --- /dev/null +++ b/v1.51/v1/041twcm28.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/041twcm28", + "name": "Leonardo (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Leonardo (Italy)", + "type": "Parent", + "id": "https://ror.org/0470vke61" + } + ], + "addresses": [ + { + "lat": 38.88101, + "lng": -77.10428, + "state": null, + "state_code": null, + "city": "Arlington", + "geonames_city": { + "id": 4744709, + "city": "Arlington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://usa.leonardo.com" + ], + "aliases": [ + "DRS Technologies, Inc.", + "Diagnostic/Retrieval Systems, Inc", + "Finmeccanica North America DRS", + "Leonardo DRS", + "Leonardo Finmeccanica" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Leonardo_DRS", + "labels": [ + { + "label": "Leonardo United States", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.473264.0", + "preferred": "grid.473264.0" + }, + "Wikidata": { + "all": [ + "Q3700554", + "Q112038007" + ], + "preferred": "Q112038007" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/042phe474.json b/v1.51/v1/042phe474.json new file mode 100644 index 000000000..48c8607fb --- /dev/null +++ b/v1.51/v1/042phe474.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/042phe474", + "name": "SGS Germany GmbH (Germany)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "SGS (Switzerland)", + "type": "Parent", + "id": "https://ror.org/05p30rt34" + } + ], + "addresses": [ + { + "lat": 53.55073, + "lng": 9.99302, + "state": null, + "state_code": null, + "city": "Hamburg", + "geonames_city": { + "id": 2911298, + "city": "Hamburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sgs.com" + ], + "aliases": [ + "SGS Germany" + ], + "acronyms": [ + "SGS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "SGS Germany GmbH", + "iso639": null + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/042qa2p32.json b/v1.51/v1/042qa2p32.json new file mode 100644 index 000000000..76628cf76 --- /dev/null +++ b/v1.51/v1/042qa2p32.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/042qa2p32", + "name": "Tamr (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.3751, + "lng": -71.10561, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 4931972, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tamr.com" + ], + "aliases": [ + "Tamr Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Tamr", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/042tfbd02.json b/v1.51/v1/042tfbd02.json new file mode 100644 index 000000000..e7eaa5bfd --- /dev/null +++ b/v1.51/v1/042tfbd02.json @@ -0,0 +1,148 @@ +{ + "id": "https://ror.org/042tfbd02", + "name": "Institut Polytechnique de Paris", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut Mines-Télécom", + "type": "Child", + "id": "https://ror.org/025vp2923" + }, + { + "label": "École Nationale Supérieure de Techniques Avancées", + "type": "Child", + "id": "https://ror.org/0309cs235" + }, + { + "label": "École Polytechnique", + "type": "Child", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "Telecom SudParis", + "type": "Child", + "id": "https://ror.org/05xvk4r52" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "Child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "Child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Microfluidique Physique et Bio-ingénierie", + "type": "Child", + "id": "https://ror.org/05hvqzx20" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Laboratoire Leprince-Ringuet", + "type": "Child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Laboratoire Traitement et Communication de l’Information", + "type": "Child", + "id": "https://ror.org/057er4c39" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ip-paris.fr/en/home-en/" + ], + "aliases": [ + "IP Paris" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Polytechnic_Institute_of_Paris", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.508893.f", + "preferred": "grid.508893.f" + }, + "Wikidata": { + "all": [ + "Q48759778" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/042twtr12.json b/v1.51/v1/042twtr12.json new file mode 100644 index 000000000..21a365e33 --- /dev/null +++ b/v1.51/v1/042twtr12.json @@ -0,0 +1,214 @@ +{ + "id": "https://ror.org/042twtr12", + "name": "Centers for Disease Control and Prevention", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Agency for Toxic Substances and Disease Registry", + "type": "Child", + "id": "https://ror.org/0045x2741" + }, + { + "label": "American Association on Health and Disability", + "type": "Child", + "id": "https://ror.org/00x584494" + }, + { + "label": "Center for Global Health", + "type": "Child", + "id": "https://ror.org/02e5dc168" + }, + { + "label": "Center for Surveillance, Epidemiology, and Laboratory Services", + "type": "Child", + "id": "https://ror.org/05xte6x19" + }, + { + "label": "Division of Parasitic Diseases and Malaria", + "type": "Child", + "id": "https://ror.org/05tcdh256" + }, + { + "label": "Epidemic Intelligence Service", + "type": "Child", + "id": "https://ror.org/03v64vs34" + }, + { + "label": "National Center for Chronic Disease Prevention and Health Promotion", + "type": "Child", + "id": "https://ror.org/021rths28" + }, + { + "label": "National Center for Environmental Health", + "type": "Child", + "id": "https://ror.org/00jc2kw33" + }, + { + "label": "National Center for Health Statistics", + "type": "Child", + "id": "https://ror.org/03p15s250" + }, + { + "label": "National Center for Immunization and Respiratory Diseases", + "type": "Child", + "id": "https://ror.org/05je2tx78" + }, + { + "label": "National Center for Injury Prevention and Control", + "type": "Child", + "id": "https://ror.org/0015x1k58" + }, + { + "label": "National Center on Birth Defects and Developmental Disabilities", + "type": "Child", + "id": "https://ror.org/021asz590" + }, + { + "label": "National Institute for Occupational Safety and Health", + "type": "Child", + "id": "https://ror.org/0502a2655" + }, + { + "label": "Office of Tribal Affairs and Strategic Alliances", + "type": "Child", + "id": "https://ror.org/03fe2kq34" + }, + { + "label": "Office of Infectious Diseases", + "type": "Child", + "id": "https://ror.org/01z6p8p31" + }, + { + "label": "Office of Minority Health and Health Equity", + "type": "Child", + "id": "https://ror.org/01c75m640" + }, + { + "label": "Office of Public Health Genomics", + "type": "Child", + "id": "https://ror.org/04spzbf72" + }, + { + "label": "Office of Readiness and Response", + "type": "Child", + "id": "https://ror.org/00sdb8f83" + }, + { + "label": "San Juan Quarantine Station", + "type": "Child", + "id": "https://ror.org/044fqcn90" + }, + { + "label": "U.S. President's Malaria Initiative", + "type": "Child", + "id": "https://ror.org/012rb2c33" + }, + { + "label": "National Center for Public Health Informatics", + "type": "Child", + "id": "https://ror.org/00f5trr09" + }, + { + "label": "United States Department of Health and Human Services", + "type": "Parent", + "id": "https://ror.org/033jnv181" + } + ], + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cdc.gov/" + ], + "aliases": [], + "acronyms": [ + "CDC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Centers_for_Disease_Control_and_Prevention", + "labels": [ + { + "label": "Centres pour le contrôle et la prévention des maladies", + "iso639": "fr" + }, + { + "label": "Centros para el Control y Prevención de Enfermedades", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100000030" + ], + "preferred": null + }, + "GRID": { + "all": "grid.416738.f", + "preferred": "grid.416738.f" + }, + "ISNI": { + "all": [ + "0000 0001 2163 0069" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q583725" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0439k2291.json b/v1.51/v1/0439k2291.json new file mode 100644 index 000000000..a68bc9149 --- /dev/null +++ b/v1.51/v1/0439k2291.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/0439k2291", + "name": "Universidad Tecnológica del Valle de Toluca", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.32831, + "lng": -99.46899, + "state": null, + "state_code": null, + "city": "Atarasquillo", + "geonames_city": { + "id": 3517284, + "city": "Atarasquillo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://utvt.edomex.gob.mx" + ], + "aliases": [ + "UT Valle de Toluca" + ], + "acronyms": [ + "UTVT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 8267" + ], + "preferred": "0000 0004 1770 8267" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/043ae9h44.json b/v1.51/v1/043ae9h44.json new file mode 100644 index 000000000..d2ec7e5ac --- /dev/null +++ b/v1.51/v1/043ae9h44.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/043ae9h44", + "name": "Regis University", + "email_address": null, + "ip_addresses": [], + "established": 1877, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 39.73915, + "lng": -104.9847, + "state": null, + "state_code": null, + "city": "Denver", + "geonames_city": { + "id": 5419384, + "city": "Denver", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.regis.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Regis_University", + "labels": [ + { + "label": "Universidad Régis", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100017515" + ], + "preferred": "100017515" + }, + "GRID": { + "all": "grid.262516.4", + "preferred": "grid.262516.4" + }, + "ISNI": { + "all": [ + "0000 0004 0395 8791" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q649299" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/043vfk764.json b/v1.51/v1/043vfk764.json new file mode 100644 index 000000000..1fbec9e6b --- /dev/null +++ b/v1.51/v1/043vfk764.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/043vfk764", + "name": "Centre de recherche en Agropastoralisme (CRAPast)", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.67279, + "lng": 3.263, + "state": null, + "state_code": null, + "city": "Djelfa", + "geonames_city": { + "id": 2500017, + "city": "Djelfa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crapast.dz" + ], + "aliases": [ + "Centre de recherche en Agropastoralisme (CRAPast)", + "CRAPast" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "مركز البحث في الفلاحة الرعوية", + "iso639": "ar" + } + ], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/044466k19.json b/v1.51/v1/044466k19.json new file mode 100644 index 000000000..4ce46ed16 --- /dev/null +++ b/v1.51/v1/044466k19.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/044466k19", + "name": "Bitmain Technologies (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bitmain.com" + ], + "aliases": [ + "Bite Dalu", + "Bitmain", + "Bitmain Technologies Holding Company", + "Bitmain Technologies Inc.", + "比特大陆" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bitmain", + "labels": [ + { + "label": "Bitmain Technologies", + "iso639": "en" + }, + { + "label": "比特大陆科技有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q43177802" + ], + "preferred": "Q43177802" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04489at23.json b/v1.51/v1/04489at23.json new file mode 100644 index 000000000..af8de2b4f --- /dev/null +++ b/v1.51/v1/04489at23.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/04489at23", + "name": "City, University of London", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of London", + "type": "Parent", + "id": "https://ror.org/04cw6st05" + }, + { + "label": "Moorfields Eye Hospital", + "type": "Related", + "id": "https://ror.org/03tb37539" + }, + { + "label": "City St George's, University of London", + "type": "Parent", + "id": "https://ror.org/047ybhc09" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.city.ac.uk" + ], + "aliases": [ + "City University London" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/City_University_London", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007566", + "501100000583" + ], + "preferred": "100007566" + }, + "GRID": { + "all": "grid.28577.3f", + "preferred": "grid.28577.3f" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8497" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1094046" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/044xay220.json b/v1.51/v1/044xay220.json new file mode 100644 index 000000000..b201a5fc7 --- /dev/null +++ b/v1.51/v1/044xay220.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/044xay220", + "name": "Koje College", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.82333, + "lng": 128.73778, + "state": null, + "state_code": null, + "city": "Gyeongsan-si", + "geonames_city": { + "id": 1841598, + "city": "Gyeongsan-si", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://english.koje.ac.kr/CmsHome/MainDefault.aspx" + ], + "aliases": [ + "Geoje University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "거제대학", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "GRID": { + "all": "grid.496046.9", + "preferred": "grid.496046.9" + }, + "ISNI": { + "all": [ + "0000 0004 0648 1319" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0451s5g67.json b/v1.51/v1/0451s5g67.json new file mode 100644 index 000000000..df1ea59df --- /dev/null +++ b/v1.51/v1/0451s5g67.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/0451s5g67", + "name": "Colorado Mesa University", + "email_address": null, + "ip_addresses": [], + "established": 1925, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 39.06387, + "lng": -108.55065, + "state": null, + "state_code": null, + "city": "Grand Junction", + "geonames_city": { + "id": 5423573, + "city": "Grand Junction", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.coloradomesa.edu/" + ], + "aliases": [ + "Mesa State College" + ], + "acronyms": [ + "CMU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Colorado_Mesa_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015706" + ], + "preferred": "100015706" + }, + "GRID": { + "all": "grid.419760.d", + "preferred": "grid.419760.d" + }, + "ISNI": { + "all": [ + "0000 0000 8544 1139" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1507218" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/045495t75.json b/v1.51/v1/045495t75.json new file mode 100644 index 000000000..8d0d36e38 --- /dev/null +++ b/v1.51/v1/045495t75.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/045495t75", + "name": "Ifo Institute for Economic Research", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "Parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ifo.de/en" + ], + "aliases": [ + "Ifo Institute – Leibniz Institute for Economic Research" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ifo_Institute_for_Economic_Research", + "labels": [ + { + "label": "ifo Institut für Wirtschaftsforschung", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.469877.3", + "preferred": "grid.469877.3" + }, + "ISNI": { + "all": [ + "0000 0004 0397 0846" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q314073" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0460tzy11.json b/v1.51/v1/0460tzy11.json new file mode 100644 index 000000000..1aa70bc44 --- /dev/null +++ b/v1.51/v1/0460tzy11.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/0460tzy11", + "name": "Instituto Tecnológico de La Paz", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 24.14231, + "lng": -110.31316, + "state": null, + "state_code": null, + "city": "La Paz", + "geonames_city": { + "id": 4000900, + "city": "La Paz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lapaz.tecnm.mx" + ], + "aliases": [ + "TecNM - Instituto Tecnológico de La Paz", + "Tecnológico Nacional de México - Instituto Tecnológico de La Paz" + ], + "acronyms": [ + "ITLP" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_de_La_Paz", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0369 4917" + ], + "preferred": "0000 0004 0369 4917" + }, + "Wikidata": { + "all": [ + "Q5917848" + ], + "preferred": "Q5917848" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/046ak2485.json b/v1.51/v1/046ak2485.json new file mode 100644 index 000000000..e8e163665 --- /dev/null +++ b/v1.51/v1/046ak2485.json @@ -0,0 +1,140 @@ +{ + "id": "https://ror.org/046ak2485", + "name": "Freie Universität Berlin", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Botanic Garden and Botanical Museum Berlin", + "type": "Child", + "id": "https://ror.org/00bv4cx53" + }, + { + "label": "Einstein Center Digital Future", + "type": "Child", + "id": "https://ror.org/0086bb350" + }, + { + "label": "Weizenbaum Institute", + "type": "Child", + "id": "https://ror.org/023kksk09" + }, + { + "label": "CRC183 - Entangled States of Matter", + "type": "Child", + "id": "https://ror.org/015wtqn87" + }, + { + "label": "Berlin Mathematical School", + "type": "Related", + "id": "https://ror.org/03zekj455" + }, + { + "label": "Charité - Universitätsmedizin Berlin", + "type": "Related", + "id": "https://ror.org/001w7jn25" + }, + { + "label": "Weierstrass Institute for Applied Analysis and Stochastics", + "type": "Related", + "id": "https://ror.org/00h1x4t21" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fu-berlin.de" + ], + "aliases": [ + "FU Berlin", + "Free University of Berlin" + ], + "acronyms": [ + "FU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Free_University_of_Berlin", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002971", + "501100001644", + "501100007537" + ], + "preferred": "501100007537" + }, + "GRID": { + "all": "grid.14095.39", + "preferred": "grid.14095.39" + }, + "ISNI": { + "all": [ + "0000 0001 2185 5786" + ], + "preferred": "0000 0001 2185 5786" + }, + "Wikidata": { + "all": [ + "Q153006" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/046gx1e19.json b/v1.51/v1/046gx1e19.json new file mode 100644 index 000000000..be98724d1 --- /dev/null +++ b/v1.51/v1/046gx1e19.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/046gx1e19", + "name": "STKIP Muhammadiyah Kuningan", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Universitas Muhammadiyah Kuningan", + "type": "Successor", + "id": "https://ror.org/0526wv466" + } + ], + "addresses": [ + { + "lat": -6.97583, + "lng": 108.48306, + "state": null, + "state_code": null, + "city": "Kuningan", + "geonames_city": { + "id": 1639094, + "city": "Kuningan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Muhammadiyah Kuningan School of Teacher Training and Education", + "Sekolah Tinggi Keguruan dan Ilmu Pendidikan Muhammadiyah Kuningan" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8337 1500" + ], + "preferred": "0000 0004 8337 1500" + }, + "Wikidata": { + "all": [ + "Q12511326" + ], + "preferred": "Q12511326" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0470vke61.json b/v1.51/v1/0470vke61.json new file mode 100644 index 000000000..9ad97fd4e --- /dev/null +++ b/v1.51/v1/0470vke61.json @@ -0,0 +1,125 @@ +{ + "id": "https://ror.org/0470vke61", + "name": "Leonardo (Italy)", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "SELEX Sistemi Integrati", + "type": "Child", + "id": "https://ror.org/02sj0zy88" + }, + { + "label": "Leonardo (Poland)", + "type": "Child", + "id": "https://ror.org/0203k1k48" + }, + { + "label": "Leonardo (United Kingdom)", + "type": "Child", + "id": "https://ror.org/0445yn719" + }, + { + "label": "Leonardo (France)", + "type": "Child", + "id": "https://ror.org/00vfjqp82" + }, + { + "label": "Leonardo (United States)", + "type": "Child", + "id": "https://ror.org/041twcm28" + }, + { + "label": "Thales Alenia Space (France)", + "type": "Child", + "id": "https://ror.org/05gz77z03" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.leonardo.com" + ], + "aliases": [ + "Finmeccanica (Italy)" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Finmeccanica", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003324" + ], + "preferred": null + }, + "GRID": { + "all": "grid.423952.b", + "preferred": "grid.423952.b" + }, + "ISNI": { + "all": [ + "0000 0001 2302 3537" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q910379" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/047b8ap14.json b/v1.51/v1/047b8ap14.json new file mode 100644 index 000000000..6dc763ee4 --- /dev/null +++ b/v1.51/v1/047b8ap14.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/047b8ap14", + "name": "FactSet (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.90224, + "lng": -118.08173, + "state": null, + "state_code": null, + "city": "Norwalk", + "geonames_city": { + "id": 5377995, + "city": "Norwalk", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.factset.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/FactSet", + "labels": [ + { + "label": "FactSet", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/047pw0q71.json b/v1.51/v1/047pw0q71.json new file mode 100644 index 000000000..5fb32682f --- /dev/null +++ b/v1.51/v1/047pw0q71.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/047pw0q71", + "name": "Steel Dynamics (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.1306, + "lng": -85.12886, + "state": null, + "state_code": null, + "city": "Fort Wayne", + "geonames_city": { + "id": 4920423, + "city": "Fort Wayne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.steeldynamics.com" + ], + "aliases": [ + "Steel Dynamics Inc" + ], + "acronyms": [ + "SDI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Steel_Dynamics", + "labels": [ + { + "label": "Steel Dynamics", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/047rhhm47.json b/v1.51/v1/047rhhm47.json new file mode 100644 index 000000000..0350f19d1 --- /dev/null +++ b/v1.51/v1/047rhhm47.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/047rhhm47", + "name": "Brigham Young University", + "email_address": null, + "ip_addresses": [], + "established": 1875, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "McMurdo Dry Valleys Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/04r3s7465" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 40.23384, + "lng": -111.65853, + "state": null, + "state_code": null, + "city": "Provo", + "geonames_city": { + "id": 5780026, + "city": "Provo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://home.byu.edu/home/" + ], + "aliases": [], + "acronyms": [ + "BYU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Brigham_Young_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006756", + "100008627", + "100006374", + "100006757" + ], + "preferred": "100006756" + }, + "GRID": { + "all": "grid.253294.b", + "preferred": "grid.253294.b" + }, + "ISNI": { + "all": [ + "0000 0004 1936 9115" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q332498" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/047ybhc09.json b/v1.51/v1/047ybhc09.json new file mode 100644 index 000000000..877350ccb --- /dev/null +++ b/v1.51/v1/047ybhc09.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/047ybhc09", + "name": "City St George's, University of London", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "City, University of London", + "type": "Child", + "id": "https://ror.org/04489at23" + }, + { + "label": "St George's, University of London", + "type": "Child", + "id": "https://ror.org/040f08y74" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "City St George's University of London" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q124917493" + ], + "preferred": "Q124917493" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0488bwq42.json b/v1.51/v1/0488bwq42.json new file mode 100644 index 000000000..bc0ed665f --- /dev/null +++ b/v1.51/v1/0488bwq42.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/0488bwq42", + "name": "Delhi Skill and Entrepreneurship University", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.62137, + "lng": 77.2148, + "state": null, + "state_code": null, + "city": "New Delhi", + "geonames_city": { + "id": 1261481, + "city": "New Delhi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dseu.ac.in" + ], + "aliases": [], + "acronyms": [ + "DSEU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Delhi_Skill_and_Entrepreneurship_University", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q108673567" + ], + "preferred": "Q108673567" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/048d5b075.json b/v1.51/v1/048d5b075.json new file mode 100644 index 000000000..40f814630 --- /dev/null +++ b/v1.51/v1/048d5b075.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/048d5b075", + "name": "Daimler Center for Automotive Information Technology Innovations", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Technische Universität Berlin", + "type": "Parent", + "id": "https://ror.org/03v4gjf40" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dcaiti.tu-berlin.de/" + ], + "aliases": [], + "acronyms": [ + "DCAITI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.507789.4", + "preferred": "grid.507789.4" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/049ahjd53.json b/v1.51/v1/049ahjd53.json new file mode 100644 index 000000000..6fa4f4a86 --- /dev/null +++ b/v1.51/v1/049ahjd53.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/049ahjd53", + "name": "Daimler Truck (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mitsubishi Fuso Truck and Bus (Japan)", + "type": "Child", + "id": "https://ror.org/02nayd663" + }, + { + "label": "Mercedes-Benz (Germany)", + "type": "Related", + "id": "https://ror.org/055rn2a38" + }, + { + "label": "Daimler (Germany)", + "type": "Predecessor", + "id": "https://ror.org/00m0j3d84" + }, + { + "label": "Daimler Truck (United States)", + "type": "Child", + "id": "https://ror.org/02ctt0481" + } + ], + "addresses": [ + { + "lat": 48.69406, + "lng": 9.16809, + "state": null, + "state_code": null, + "city": "Leinfelden-Echterdingen", + "geonames_city": { + "id": 2879185, + "city": "Leinfelden-Echterdingen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.daimlertruck.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Daimler_Truck", + "labels": [ + { + "label": "Daimler Truck", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/049sebs45.json b/v1.51/v1/049sebs45.json new file mode 100644 index 000000000..8c3c2d0b4 --- /dev/null +++ b/v1.51/v1/049sebs45.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/049sebs45", + "name": "Chubb (Switzerland)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chubb.com" + ], + "aliases": [ + "ACE Limited" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Chubb", + "iso639": null + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4648 3757" + ], + "preferred": "0000 0004 4648 3757" + }, + "Wikidata": { + "all": [ + "Q288285" + ], + "preferred": "Q288285" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/049sjm257.json b/v1.51/v1/049sjm257.json new file mode 100644 index 000000000..50b7b9290 --- /dev/null +++ b/v1.51/v1/049sjm257.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/049sjm257", + "name": "Fortinet (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.36883, + "lng": -122.03635, + "state": null, + "state_code": null, + "city": "Sunnyvale", + "geonames_city": { + "id": 5400075, + "city": "Sunnyvale", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fortinet.com" + ], + "aliases": [ + "Fortinet Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Fortinet", + "labels": [ + { + "label": "Fortinet", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 9292 164X" + ], + "preferred": "0000 0004 9292 164X" + }, + "Wikidata": { + "all": [ + "Q2749364" + ], + "preferred": "Q2749364" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/049vx3n55.json b/v1.51/v1/049vx3n55.json new file mode 100644 index 000000000..4b0838bd5 --- /dev/null +++ b/v1.51/v1/049vx3n55.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/049vx3n55", + "name": "Charles Schwab Corporation (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.45532, + "lng": -81.91792, + "state": null, + "state_code": null, + "city": "Westlake", + "geonames_city": { + "id": 5176517, + "city": "Westlake", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.schwab.com" + ], + "aliases": [ + "Charles Schwab", + "Charles Schwab & Co.", + "Charles Schwab Corp" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Charles Schwab Corporation", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/049wsmj07.json b/v1.51/v1/049wsmj07.json new file mode 100644 index 000000000..94e2574cf --- /dev/null +++ b/v1.51/v1/049wsmj07.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/049wsmj07", + "name": "Sensetime (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sensetime.com" + ], + "aliases": [ + "Beijing Sensetime Technology Development Co Ltd.", + "Sensetime Group Ltd.", + "商汤", + "商汤科技" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Sensetime", + "iso639": "en" + }, + { + "label": "商汤集团有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/04b7gmr83.json b/v1.51/v1/04b7gmr83.json new file mode 100644 index 000000000..44cb3d2bd --- /dev/null +++ b/v1.51/v1/04b7gmr83.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/04b7gmr83", + "name": "Eversource Energy (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.35843, + "lng": -71.05977, + "state": null, + "state_code": null, + "city": "Boston", + "geonames_city": { + "id": 4930956, + "city": "Boston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.eversource.com" + ], + "aliases": [ + "Eversource", + "Northeast Utilities" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Eversource Energy", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/04beeeh24.json b/v1.51/v1/04beeeh24.json new file mode 100644 index 000000000..f7299b16e --- /dev/null +++ b/v1.51/v1/04beeeh24.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04beeeh24", + "name": "Saybrook University", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.14778, + "lng": -118.14452, + "state": null, + "state_code": null, + "city": "Pasadena", + "geonames_city": { + "id": 5381396, + "city": "Pasadena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.saybrook.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Saybrook_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.419535.f", + "preferred": "grid.419535.f" + }, + "ISNI": { + "all": [ + "0000 0000 9340 7117" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7429134" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04bg06z22.json b/v1.51/v1/04bg06z22.json new file mode 100644 index 000000000..6b4ab1621 --- /dev/null +++ b/v1.51/v1/04bg06z22.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04bg06z22", + "name": "Burnham On Sea War Memorial Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1922, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.23862, + "lng": -2.9978, + "state": null, + "state_code": null, + "city": "Burnham-on-Sea", + "geonames_city": { + "id": 2654269, + "city": "Burnham-on-Sea", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/burnham-on-sea-war-memorial-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.439689.9", + "preferred": "grid.439689.9" + }, + "Wikidata": { + "all": [ + "Q30293056" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04bsgk835.json b/v1.51/v1/04bsgk835.json new file mode 100644 index 000000000..9759c52db --- /dev/null +++ b/v1.51/v1/04bsgk835.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/04bsgk835", + "name": "Ekologické Služby (Czechia)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.83465, + "lng": 18.28204, + "state": null, + "state_code": null, + "city": "Ostrava", + "geonames_city": { + "id": 3068799, + "city": "Ostrava", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Ekologické služby, s.r.o", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448179.7", + "preferred": "grid.448179.7" + }, + "Wikidata": { + "all": [ + "Q30258784" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04c7yen31.json b/v1.51/v1/04c7yen31.json new file mode 100644 index 000000000..c2121cb88 --- /dev/null +++ b/v1.51/v1/04c7yen31.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04c7yen31", + "name": "Kookje College", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.01372, + "lng": 126.98748, + "state": null, + "state_code": null, + "city": "Pyeongtaek-si", + "geonames_city": { + "id": 1838341, + "city": "Pyeongtaek-si", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kookje.ac.kr" + ], + "aliases": [ + "International University", + "Kookje University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://ko.wikipedia.org/wiki/%EA%B5%AD%EC%A0%9C%EB%8C%80%ED%95%99%EA%B5%90_(%EA%B2%BD%EA%B8%B0)", + "labels": [ + { + "label": "국제대학교", + "iso639": "kr" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q3459863" + ], + "preferred": "Q3459863" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04d087g06.json b/v1.51/v1/04d087g06.json new file mode 100644 index 000000000..8784fbfb4 --- /dev/null +++ b/v1.51/v1/04d087g06.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/04d087g06", + "name": "Association of Engineering Technology", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sst.cz/en/" + ], + "aliases": [ + "Association of Manufacturers and Suppliers of Engineering Technique" + ], + "acronyms": [ + "SST" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Svaz strojírenské technologie", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.486416.9", + "preferred": "grid.486416.9" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04e3sqx89.json b/v1.51/v1/04e3sqx89.json new file mode 100644 index 000000000..a96506984 --- /dev/null +++ b/v1.51/v1/04e3sqx89.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04e3sqx89", + "name": "Frome Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.22834, + "lng": -2.32211, + "state": null, + "state_code": null, + "city": "Frome", + "geonames_city": { + "id": 2649024, + "city": "Frome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/frome-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.439777.9", + "preferred": "grid.439777.9" + }, + "Wikidata": { + "all": [ + "Q30293117" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04fj16d47.json b/v1.51/v1/04fj16d47.json new file mode 100644 index 000000000..b524d7395 --- /dev/null +++ b/v1.51/v1/04fj16d47.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04fj16d47", + "name": "Kroger (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.12711, + "lng": -84.51439, + "state": null, + "state_code": null, + "city": "Cincinnati", + "geonames_city": { + "id": 4508722, + "city": "Cincinnati", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kroger.com" + ], + "aliases": [ + "The Kroger Co" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kroger", + "labels": [ + { + "label": "Kroger", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0618 8999" + ], + "preferred": "0000 0004 0618 8999" + }, + "Wikidata": { + "all": [ + "Q153417" + ], + "preferred": "Q153417" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04fq9j139.json b/v1.51/v1/04fq9j139.json new file mode 100644 index 000000000..899a0daf7 --- /dev/null +++ b/v1.51/v1/04fq9j139.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/04fq9j139", + "name": "Max Planck Institute for Intelligent Systems", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Institutes Stuttgart Library", + "type": "Child", + "id": "https://ror.org/010c2rf19" + }, + { + "label": "Max Planck Society", + "type": "Parent", + "id": "https://ror.org/01hhn8329" + }, + { + "label": "Tübingen AI Center", + "type": "Child", + "id": "https://ror.org/0107nyd78" + } + ], + "addresses": [ + { + "lat": 48.78232, + "lng": 9.17702, + "state": null, + "state_code": null, + "city": "Stuttgart", + "geonames_city": { + "id": 2825297, + "city": "Stuttgart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.is.mpg.de/en" + ], + "aliases": [], + "acronyms": [ + "MPI-IS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Max_Planck_Institute_for_Intelligent_Systems", + "labels": [ + { + "label": "Max-Planck-Institut für Intelligente Systeme", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.419534.e", + "preferred": "grid.419534.e" + }, + "ISNI": { + "all": [ + "0000 0001 1015 6533" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1287942" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04gsj9h69.json b/v1.51/v1/04gsj9h69.json new file mode 100644 index 000000000..92e356391 --- /dev/null +++ b/v1.51/v1/04gsj9h69.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/04gsj9h69", + "name": "Fifth Third Bancorp (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.12711, + "lng": -84.51439, + "state": null, + "state_code": null, + "city": "Cincinnati", + "geonames_city": { + "id": 4508722, + "city": "Cincinnati", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.53.com" + ], + "aliases": [ + "Fifth Third Bank", + "Fifth Third Bank National Association" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fifth Third Bancorp", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100024491" + ], + "preferred": "100024491" + }, + "ISNI": { + "all": [ + "0000 0000 9776 3784" + ], + "preferred": "0000 0000 9776 3784" + }, + "Wikidata": { + "all": [ + "Q1411810" + ], + "preferred": "Q1411810" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04hc84p76.json b/v1.51/v1/04hc84p76.json new file mode 100644 index 000000000..00a2b5cfb --- /dev/null +++ b/v1.51/v1/04hc84p76.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04hc84p76", + "name": "Daimler (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 1926, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Daimler (Germany)", + "type": "Parent", + "id": "https://ror.org/00m0j3d84" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.daimler.com/company/" + ], + "aliases": [ + "Daimler-Benz", + "DaimlerChrysler" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Daimler_AG", + "labels": [], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.481708.2", + "preferred": "grid.481708.2" + }, + "Wikidata": { + "all": [ + "Q30343913" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04hhxc122.json b/v1.51/v1/04hhxc122.json new file mode 100644 index 000000000..d2169d0dd --- /dev/null +++ b/v1.51/v1/04hhxc122.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/04hhxc122", + "name": "State Research Institute for Material Protection (Czechia)", + "email_address": null, + "ip_addresses": [], + "established": 1954, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.svuom.cz/" + ], + "aliases": [ + "SVÚOM s.r.o.", + "Státní výzkumný ústav ochrany materiálu" + ], + "acronyms": [ + "SVÚOM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448140.d", + "preferred": "grid.448140.d" + }, + "ISNI": { + "all": [ + "0000 0004 0480 6239" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04hp42s89.json b/v1.51/v1/04hp42s89.json new file mode 100644 index 000000000..397535f68 --- /dev/null +++ b/v1.51/v1/04hp42s89.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/04hp42s89", + "name": "Institute of International Relations", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iir.cz/en/" + ], + "aliases": [], + "acronyms": [ + "IIPE", + "IIR", + "UMV" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_of_International_Relations_Prague", + "labels": [ + { + "label": "Ústav Mezinárodních Vztahů", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.448103.a", + "preferred": "grid.448103.a" + }, + "ISNI": { + "all": [ + "0000 0004 0610 2569" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q15476020" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04kz59847.json b/v1.51/v1/04kz59847.json new file mode 100644 index 000000000..d52031ee4 --- /dev/null +++ b/v1.51/v1/04kz59847.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/04kz59847", + "name": "Pultegroup (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pultegroupinc.com" + ], + "aliases": [ + "Pulte Group", + "Pulte Homes", + "Pultegroup, Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Pultegroup", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/04m6zg706.json b/v1.51/v1/04m6zg706.json new file mode 100644 index 000000000..47d2d7276 --- /dev/null +++ b/v1.51/v1/04m6zg706.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04m6zg706", + "name": "Pinterest (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pinterest.com" + ], + "aliases": [ + "Cold Brew Labs Inc", + "Pinterest Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Pinterest", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q96095585" + ], + "preferred": "Q96095585" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04mcp3x60.json b/v1.51/v1/04mcp3x60.json new file mode 100644 index 000000000..c0acd8d62 --- /dev/null +++ b/v1.51/v1/04mcp3x60.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/04mcp3x60", + "name": "The Association of Intellectuals for the Development of Science in Serbia “The Serbian Academic Center”", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.25167, + "lng": 19.83694, + "state": null, + "state_code": null, + "city": "Novi Sad", + "geonames_city": { + "id": 3194360, + "city": "Novi Sad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sac.rs" + ], + "aliases": [ + "Serbian Academic Center", + "“The Serbian Academic Center” Novi Sad" + ], + "acronyms": [ + "SAC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Oбщество интеллектуалов за развитие науки в Сербии „Сербский aкадемический центр” Нови-Сад", + "iso639": "ru" + }, + { + "label": "Удружење интелектуалаца за развој науке у Србији - „СРПСКИ АКАДЕМСКИ ЦЕНТАР”", + "iso639": "sr" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/04md5yc36.json b/v1.51/v1/04md5yc36.json new file mode 100644 index 000000000..3495e4c30 --- /dev/null +++ b/v1.51/v1/04md5yc36.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04md5yc36", + "name": "Phramongkutklao College of Medicine", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Phramongkutklao Hospital", + "type": "Related", + "id": "https://ror.org/007h1qz76" + } + ], + "addresses": [ + { + "lat": 13.75398, + "lng": 100.50144, + "state": null, + "state_code": null, + "city": "Bangkok", + "geonames_city": { + "id": 1609350, + "city": "Bangkok", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pcm.ac.th" + ], + "aliases": [ + "วิทยาลัยแพทยศาสตร์พระมงกุฎเกล้า" + ], + "acronyms": [ + "PCM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Thailand", + "country_code": "TH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0576 1116" + ], + "preferred": "0000 0004 0576 1116" + }, + "Wikidata": { + "all": [ + "Q18388380" + ], + "preferred": "Q18388380" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04mtej177.json b/v1.51/v1/04mtej177.json new file mode 100644 index 000000000..c259a609b --- /dev/null +++ b/v1.51/v1/04mtej177.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/04mtej177", + "name": "Al-Kunooze University College", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.50852, + "lng": 47.7804, + "state": null, + "state_code": null, + "city": "Basra", + "geonames_city": { + "id": 99532, + "city": "Basra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kunoozu.edu.iq" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://ar.wikipedia.org/wiki/%D9%83%D9%84%D9%8A%D8%A9_%D8%A7%D9%84%D9%83%D9%86%D9%88%D8%B2_%D8%A7%D9%84%D8%AC%D8%A7%D9%85%D8%B9%D8%A9", + "labels": [ + { + "label": "كلية الكنوز الجامعة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1173 2159" + ], + "preferred": "0000 0005 1173 2159" + }, + "Wikidata": { + "all": [ + "Q25450403" + ], + "preferred": "Q25450403" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04n60x970.json b/v1.51/v1/04n60x970.json new file mode 100644 index 000000000..5fc1177cb --- /dev/null +++ b/v1.51/v1/04n60x970.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04n60x970", + "name": "GE Vernova (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "General Electric (United States)", + "type": "Parent", + "id": "https://ror.org/013msgt25" + } + ], + "addresses": [ + { + "lat": 42.3751, + "lng": -71.10561, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 4931972, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gevernova.com" + ], + "aliases": [ + "GE Vernova Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/GE_Vernova", + "labels": [ + { + "label": "GE Vernova", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/04n901n71.json b/v1.51/v1/04n901n71.json new file mode 100644 index 000000000..37bb32de9 --- /dev/null +++ b/v1.51/v1/04n901n71.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/04n901n71", + "name": "CAIMed - Niedersächsisches Zentrum für KI und Kausale Methoden in der Medizin", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "L3S Research Center", + "type": "Parent", + "id": "https://ror.org/039t4wk02" + }, + { + "label": "Medizinische Hochschule Hannover", + "type": "Related", + "id": "https://ror.org/00f2yqf98" + }, + { + "label": "Helmholtz Centre for Infection Research", + "type": "Related", + "id": "https://ror.org/03d0p2685" + }, + { + "label": "University of Göttingen", + "type": "Related", + "id": "https://ror.org/01y9bpm73" + }, + { + "label": "Universitätsmedizin Göttingen", + "type": "Related", + "id": "https://ror.org/021ft0n22" + } + ], + "addresses": [ + { + "lat": 52.37052, + "lng": 9.73322, + "state": null, + "state_code": null, + "city": "Hanover", + "geonames_city": { + "id": 2910831, + "city": "Hanover", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://caimed.de" + ], + "aliases": [ + "CAIMed", + "CAIMed - Lower Saxony Center for AI and Causal Methods in Medicine", + "Lower Saxony Center for AI and Causal Methods in Medicine", + "Niedersächsisches Zentrum für KI und Kausale Methoden in der Medizin" + ], + "acronyms": [], + "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.51/v1/04nnvgw25.json b/v1.51/v1/04nnvgw25.json new file mode 100644 index 000000000..cc0945d63 --- /dev/null +++ b/v1.51/v1/04nnvgw25.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/04nnvgw25", + "name": "Europeum", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.europeum.org/" + ], + "aliases": [ + "EUROPEUM Institute for European Policy", + "Institut pro evropskou politiku EUROPEUM" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/EUROPEUM_Institute_for_European_Policy", + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.447788.0", + "preferred": "grid.447788.0" + }, + "ISNI": { + "all": [ + "0000 0001 2203 1148" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04nxkaq16.json b/v1.51/v1/04nxkaq16.json new file mode 100644 index 000000000..7aac4548d --- /dev/null +++ b/v1.51/v1/04nxkaq16.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04nxkaq16", + "name": "Università degli studi di Cassino e del Lazio Meridionale", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.48581, + "lng": 13.82835, + "state": null, + "state_code": null, + "city": "Cassino", + "geonames_city": { + "id": 3179781, + "city": "Cassino", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unicas.it" + ], + "aliases": [ + "University of Cassino" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Cassino", + "labels": [ + { + "label": "University of Cassino and Southern Lazio", + "iso639": "en" + }, + { + "label": "Università degli Studi di Cassino e del Lazio Meridionale", + "iso639": "it" + }, + { + "label": "Université de cassino", + "iso639": "fr" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100012699" + ], + "preferred": "501100012699" + }, + "GRID": { + "all": "grid.21003.30", + "preferred": "grid.21003.30" + }, + "ISNI": { + "all": [ + "0000 0004 1762 1962" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q504263" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04p9akw79.json b/v1.51/v1/04p9akw79.json new file mode 100644 index 000000000..58bd4841e --- /dev/null +++ b/v1.51/v1/04p9akw79.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/04p9akw79", + "name": "Brown-Forman (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.25424, + "lng": -85.75941, + "state": null, + "state_code": null, + "city": "Louisville", + "geonames_city": { + "id": 4299276, + "city": "Louisville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.brown-forman.com" + ], + "aliases": [ + "Brown-Forman Corp", + "Brown-Forman Corporation", + "Brown-Forman and Company" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Brown-Forman", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/04ppmte83.json b/v1.51/v1/04ppmte83.json new file mode 100644 index 000000000..9b5d92af1 --- /dev/null +++ b/v1.51/v1/04ppmte83.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/04ppmte83", + "name": "Mercedes-Benz (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Daimler (United States)", + "type": "Predecessor", + "id": "https://ror.org/05angxc35" + } + ], + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mbusa.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.51/v1/04pq1cz46.json b/v1.51/v1/04pq1cz46.json new file mode 100644 index 000000000..e2b52ed8e --- /dev/null +++ b/v1.51/v1/04pq1cz46.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04pq1cz46", + "name": "Nextera Energy (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 26.87978, + "lng": -80.05337, + "state": null, + "state_code": null, + "city": "Juno Beach", + "geonames_city": { + "id": 4160604, + "city": "Juno Beach", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nexteraenergy.com" + ], + "aliases": [ + "Nextera Energy Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Nextera Energy", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1791 2874" + ], + "preferred": "0000 0004 1791 2874" + }, + "Wikidata": { + "all": [ + "Q967868" + ], + "preferred": "Q967868" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04qvpkd07.json b/v1.51/v1/04qvpkd07.json new file mode 100644 index 000000000..2d0045fdd --- /dev/null +++ b/v1.51/v1/04qvpkd07.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/04qvpkd07", + "name": "Harris (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "L3Harris (United States)", + "type": "Successor", + "id": "https://ror.org/05fhwtx59" + } + ], + "addresses": [ + { + "lat": 28.08363, + "lng": -80.60811, + "state": null, + "state_code": null, + "city": "Melbourne", + "geonames_city": { + "id": 4163971, + "city": "Melbourne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.harris.com/" + ], + "aliases": [ + "Harris Corporation" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Harris_Corporation", + "labels": [ + { + "label": "Harris", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.421991.6", + "preferred": "grid.421991.6" + }, + "ISNI": { + "all": [ + "0000 0000 9289 1250" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1433308" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04r3s7465.json b/v1.51/v1/04r3s7465.json new file mode 100644 index 000000000..649c6a539 --- /dev/null +++ b/v1.51/v1/04r3s7465.json @@ -0,0 +1,147 @@ +{ + "id": "https://ror.org/04r3s7465", + "name": "McMurdo Dry Valleys Long Term Ecological Research", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Long Term Ecological Research Network", + "type": "Parent", + "id": "https://ror.org/039kwqk96" + }, + { + "label": "University of Colorado Boulder", + "type": "Parent", + "id": "https://ror.org/02ttsq026" + }, + { + "label": "Environmental Data Initiative", + "type": "Related", + "id": "https://ror.org/0330j0z60" + }, + { + "label": "Brigham Young University", + "type": "Related", + "id": "https://ror.org/047rhhm47" + }, + { + "label": "Institute of Arctic and Alpine Research", + "type": "Related", + "id": "https://ror.org/00924z688" + }, + { + "label": "Louisiana State University", + "type": "Related", + "id": "https://ror.org/05ect4e57" + }, + { + "label": "Miami University", + "type": "Related", + "id": "https://ror.org/05nbqxr67" + }, + { + "label": "University of New Mexico", + "type": "Related", + "id": "https://ror.org/05fs6jp91" + }, + { + "label": "Virginia Tech", + "type": "Related", + "id": "https://ror.org/02smfhw86" + }, + { + "label": "Northern Arizona University", + "type": "Related", + "id": "https://ror.org/0272j5188" + }, + { + "label": "The Ohio State University", + "type": "Related", + "id": "https://ror.org/00rs6vg23" + }, + { + "label": "University of Wisconsin–Madison", + "type": "Related", + "id": "https://ror.org/01y2jtd41" + }, + { + "label": "Kansas State University", + "type": "Related", + "id": "https://ror.org/05p1j8758" + } + ], + "addresses": [ + { + "lat": -77.5, + "lng": 162, + "state": null, + "state_code": null, + "city": "McMurdo Dry Valleys", + "geonames_city": { + "id": 6637888, + "city": "McMurdo Dry Valleys", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mcm.lternet.edu" + ], + "aliases": [ + "McMurdo Dry Valleys LTER" + ], + "acronyms": [ + "MCM", + "MCM LTER" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Antarctica", + "country_code": "AQ" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q8518663" + ], + "preferred": "Q8518663" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04raf6v53.json b/v1.51/v1/04raf6v53.json new file mode 100644 index 000000000..af748f335 --- /dev/null +++ b/v1.51/v1/04raf6v53.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/04raf6v53", + "name": "Colorado School of Mines", + "email_address": null, + "ip_addresses": [], + "established": 1873, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 39.75554, + "lng": -105.2211, + "state": null, + "state_code": null, + "city": "Golden", + "geonames_city": { + "id": 5423294, + "city": "Golden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mines.edu/" + ], + "aliases": [], + "acronyms": [ + "CSM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Colorado_School_of_Mines", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008917" + ], + "preferred": null + }, + "GRID": { + "all": "grid.254549.b", + "preferred": "grid.254549.b" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8155" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1111367" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04rgg2p32.json b/v1.51/v1/04rgg2p32.json new file mode 100644 index 000000000..0846c1eac --- /dev/null +++ b/v1.51/v1/04rgg2p32.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/04rgg2p32", + "name": "University of Business in Prague", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.vso.cz/" + ], + "aliases": [], + "acronyms": [ + "VSO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Business_in_Prague", + "labels": [ + { + "label": "Vysoká škola obchodní v Praze", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "all": "grid.445543.7", + "preferred": "grid.445543.7" + }, + "ISNI": { + "all": [ + "0000 0004 4648 4039" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q11947381" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04rqv8543.json b/v1.51/v1/04rqv8543.json new file mode 100644 index 000000000..94fea6434 --- /dev/null +++ b/v1.51/v1/04rqv8543.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04rqv8543", + "name": "Bridgewater Associates (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.89009, + "lng": -124.10406, + "state": null, + "state_code": null, + "city": "Westport", + "geonames_city": { + "id": 5815665, + "city": "Westport", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bridgewater.com" + ], + "aliases": [ + "Bridgewater Associates LP" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Bridgewater Associates", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/04st7tp96.json b/v1.51/v1/04st7tp96.json new file mode 100644 index 000000000..54018cae8 --- /dev/null +++ b/v1.51/v1/04st7tp96.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/04st7tp96", + "name": "CCCC Comprehensive Planning and Design Institute Co., Ltd. (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.fhebci.cn" + ], + "aliases": [ + "CCCC Comprehensive Planning and Design Institute", + "CCCC Comprehensive Planning and Design Institute Co." + ], + "acronyms": [ + "CCCC CPDIC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "CCCC Comprehensive Planning and Design Institute Co., Ltd.", + "iso639": "en" + }, + { + "label": "中交综合规划设计院有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/04tb90x61.json b/v1.51/v1/04tb90x61.json new file mode 100644 index 000000000..931232420 --- /dev/null +++ b/v1.51/v1/04tb90x61.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/04tb90x61", + "name": "Mininglamp (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mininglamp.com" + ], + "aliases": [ + "Beijing Mininglamp Software System Co Ltd", + "Mingluo Technology", + "Mininglamp Tech", + "Mininglamp Technology", + "明略科技", + "明略科技集团" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Mininglamp", + "iso639": "en" + }, + { + "label": "北京明略昭辉科技有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.513524.4", + "preferred": "grid.513524.4" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04v7gh640.json b/v1.51/v1/04v7gh640.json new file mode 100644 index 000000000..32e95331e --- /dev/null +++ b/v1.51/v1/04v7gh640.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04v7gh640", + "name": "Cloudwalk (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cloudwalk.io" + ], + "aliases": [ + "Cloudwalk Group Co Ltd", + "云从科技" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Cloudwalk", + "iso639": "en" + }, + { + "label": "云从科技集团股份有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/04vmke174.json b/v1.51/v1/04vmke174.json new file mode 100644 index 000000000..3bf0633e5 --- /dev/null +++ b/v1.51/v1/04vmke174.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/04vmke174", + "name": "National Center for Infectious Diseases", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centers for Disease Control and Prevention", + "type": "Parent", + "id": "https://ror.org/042twtr12" + }, + { + "label": "National Center for Emerging and Zoonotic Infectious Diseases", + "type": "Successor", + "id": "https://ror.org/02ggwpx62" + } + ], + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cdc.gov/ncidod" + ], + "aliases": [], + "acronyms": [ + "NCID" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006088" + ], + "preferred": null + }, + "GRID": { + "all": "grid.419261.9", + "preferred": "grid.419261.9" + }, + "Wikidata": { + "all": [ + "Q30282068" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04w0a0617.json b/v1.51/v1/04w0a0617.json new file mode 100644 index 000000000..a55b691b0 --- /dev/null +++ b/v1.51/v1/04w0a0617.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04w0a0617", + "name": "Instituto Tecnológico de San Luis Potosí", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 22.14982, + "lng": -100.97916, + "state": null, + "state_code": null, + "city": "San Luis Potosí City", + "geonames_city": { + "id": 3985606, + "city": "San Luis Potosí City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://slp.tecnm.mx" + ], + "aliases": [ + "TecNM campus San Luis Potosí" + ], + "acronyms": [ + "ITSLP" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_de_San_Luis_Potos%C3%AD", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0369 8555" + ], + "preferred": "0000 0004 0369 8555" + }, + "Wikidata": { + "all": [ + "Q5917885" + ], + "preferred": "Q5917885" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04w5qp452.json b/v1.51/v1/04w5qp452.json new file mode 100644 index 000000000..cbf3a0055 --- /dev/null +++ b/v1.51/v1/04w5qp452.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04w5qp452", + "name": "TeX Users Group", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.52345, + "lng": -122.67621, + "state": null, + "state_code": null, + "city": "Portland", + "geonames_city": { + "id": 5746545, + "city": "Portland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tug.org" + ], + "aliases": [], + "acronyms": [ + "TUG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 8559 9593" + ], + "preferred": "0000 0000 8559 9593" + }, + "Wikidata": { + "all": [ + "Q1753649" + ], + "preferred": "Q1753649" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04w7skc03.json b/v1.51/v1/04w7skc03.json new file mode 100644 index 000000000..d4eaeb141 --- /dev/null +++ b/v1.51/v1/04w7skc03.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/04w7skc03", + "name": "University of Denver", + "email_address": null, + "ip_addresses": [], + "established": 1864, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 39.73915, + "lng": -104.9847, + "state": null, + "state_code": null, + "city": "Denver", + "geonames_city": { + "id": 5419384, + "city": "Denver", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.du.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Denver", + "labels": [ + { + "label": "Universidad de Denver", + "iso639": "es" + }, + { + "label": "Université de denver", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100009938", + "100009939" + ], + "preferred": null + }, + "GRID": { + "all": "grid.266239.a", + "preferred": "grid.266239.a" + }, + "ISNI": { + "all": [ + "0000 0001 2165 7675" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q519427" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04y8cs423.json b/v1.51/v1/04y8cs423.json new file mode 100644 index 000000000..ae0143384 --- /dev/null +++ b/v1.51/v1/04y8cs423.json @@ -0,0 +1,169 @@ +{ + "id": "https://ror.org/04y8cs423", + "name": "École Nationale Supérieure des Mines de Paris", + "email_address": null, + "ip_addresses": [], + "established": 1783, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de sociologie de l'innovation", + "type": "Child", + "id": "https://ror.org/00a8p0m24" + }, + { + "label": "Centre de Gestion Scientifique", + "type": "Child", + "id": "https://ror.org/003y0kg83" + }, + { + "label": "Centre de Recherche en Informatique", + "type": "Child", + "id": "https://ror.org/020cdve92" + }, + { + "label": "Centre des Matériaux", + "type": "Child", + "id": "https://ror.org/01q5ge486" + }, + { + "label": "Centre de Mise en Forme des Matériaux", + "type": "Child", + "id": "https://ror.org/00qm1ye08" + }, + { + "label": "Centre Procédés, Energies Renouvelables et Systèmes Energétiques", + "type": "Child", + "id": "https://ror.org/01ydp2x12" + }, + { + "label": "Centre de Géosciences", + "type": "Child", + "id": "https://ror.org/03kc13263" + }, + { + "label": "Laboratoire Mécanique des Solides", + "type": "Child", + "id": "https://ror.org/00xd1ek73" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "Child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "ParisTech", + "type": "Parent", + "id": "https://ror.org/05c2qg481" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://minesparis.psl.eu" + ], + "aliases": [ + "Mines Paris - PSL", + "Mines Paris, Université PSL", + "Mines ParisTech", + "École des Mines de Paris" + ], + "acronyms": [ + "ENSMP" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Mines_ParisTech", + "labels": [ + { + "label": "Mines Paris, PSL University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.58140.38", + "preferred": "grid.58140.38" + }, + "ISNI": { + "all": [ + "0000 0001 2097 6957" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1189954" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04yp7fr64.json b/v1.51/v1/04yp7fr64.json new file mode 100644 index 000000000..eaed63fb6 --- /dev/null +++ b/v1.51/v1/04yp7fr64.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/04yp7fr64", + "name": "CoStar Group (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.costargroup.com" + ], + "aliases": [ + "CoStar Group Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CoStar_Group", + "labels": [ + { + "label": "CoStar Group", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0984 6392" + ], + "preferred": "0000 0005 0984 6392" + }, + "Wikidata": { + "all": [ + "Q16988748" + ], + "preferred": "Q16988748" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04yqxr030.json b/v1.51/v1/04yqxr030.json new file mode 100644 index 000000000..0cade0a66 --- /dev/null +++ b/v1.51/v1/04yqxr030.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/04yqxr030", + "name": "Shanghai Marine Meteorological Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.22222, + "lng": 121.45806, + "state": null, + "state_code": null, + "city": "Shanghai", + "geonames_city": { + "id": 1796236, + "city": "Shanghai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "上海海洋中心气象台", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/04z557486.json b/v1.51/v1/04z557486.json new file mode 100644 index 000000000..417ff8011 --- /dev/null +++ b/v1.51/v1/04z557486.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04z557486", + "name": "Arizona Western College", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 32.72532, + "lng": -114.6244, + "state": null, + "state_code": null, + "city": "Yuma", + "geonames_city": { + "id": 5322053, + "city": "Yuma", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.azwestern.edu/" + ], + "aliases": [], + "acronyms": [ + "AWC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Arizona_Western_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.422870.b", + "preferred": "grid.422870.b" + }, + "ISNI": { + "all": [ + "0000 0000 9682 5218" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4791459" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04z73qb28.json b/v1.51/v1/04z73qb28.json new file mode 100644 index 000000000..9bc57ff4d --- /dev/null +++ b/v1.51/v1/04z73qb28.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/04z73qb28", + "name": "Brooklyn Philharmonic", + "email_address": null, + "ip_addresses": [], + "established": 1857, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.bphil.org" + ], + "aliases": [ + "Brooklyn Philharmonic Symphony Orchestra" + ], + "acronyms": [ + "BSO" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Brooklyn_Philharmonic#cite_note-5", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.446393.f", + "preferred": "grid.446393.f" + }, + "ISNI": { + "all": [ + "0000 0000 9550 2919" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2039845" + ], + "preferred": "Q2039845" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/04zjhw235.json b/v1.51/v1/04zjhw235.json new file mode 100644 index 000000000..03f60370e --- /dev/null +++ b/v1.51/v1/04zjhw235.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04zjhw235", + "name": "Instituto Tecnológico Superior de Acatlán de Osorio", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 18.2025, + "lng": -98.04864, + "state": null, + "state_code": null, + "city": "Acatlán de Osorio", + "geonames_city": { + "id": 3533440, + "city": "Acatlán de Osorio", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.itsao.edu.mx" + ], + "aliases": [ + "ITSAO" + ], + "acronyms": [ + "ITSAO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "TecNM Campus de Acatlán de Osorio", + "iso639": "es" + }, + { + "label": "Tecnológico Nacional de México Campus de Acatlán de Osorio", + "iso639": "es" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/04zxf4256.json b/v1.51/v1/04zxf4256.json new file mode 100644 index 000000000..438ab832e --- /dev/null +++ b/v1.51/v1/04zxf4256.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04zxf4256", + "name": "General Tire (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1915, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Continental (United States)", + "type": "Parent", + "id": "https://ror.org/05yhca997" + } + ], + "addresses": [ + { + "lat": 35.00737, + "lng": -80.94508, + "state": null, + "state_code": null, + "city": "Fort Mill", + "geonames_city": { + "id": 4578977, + "city": "Fort Mill", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.continental.com/en-us/" + ], + "aliases": [ + "GenCorp", + "GenCorp, Inc.", + "General Tire & Rubber Company", + "General Tire and Rubber Company", + "The General Tire & Rubber Company" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/General_Tire", + "labels": [ + { + "label": "General Tire", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.427198.1", + "preferred": "grid.427198.1" + }, + "Wikidata": { + "all": [ + "Q369128" + ], + "preferred": "Q369128" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0502afh35.json b/v1.51/v1/0502afh35.json new file mode 100644 index 000000000..f8b503cb3 --- /dev/null +++ b/v1.51/v1/0502afh35.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/0502afh35", + "name": "Abt Global (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.084, + "lng": -77.15276, + "state": null, + "state_code": null, + "city": "Rockville", + "geonames_city": { + "id": 4367175, + "city": "Rockville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.abtglobal.com" + ], + "aliases": [ + "Abt Associates" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Abt Global", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008769" + ], + "preferred": null + }, + "GRID": { + "all": "grid.417585.a", + "preferred": "grid.417585.a" + }, + "ISNI": { + "all": [ + "0000 0004 0384 7952" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/050yr0479.json b/v1.51/v1/050yr0479.json new file mode 100644 index 000000000..d02bfda50 --- /dev/null +++ b/v1.51/v1/050yr0479.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/050yr0479", + "name": "Cohere (Canada)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cohere.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cohere", + "labels": [ + { + "label": "Cohere", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q110363143" + ], + "preferred": "Q110363143" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0512cxv65.json b/v1.51/v1/0512cxv65.json new file mode 100644 index 000000000..07a62ade9 --- /dev/null +++ b/v1.51/v1/0512cxv65.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/0512cxv65", + "name": "Seiko (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1881, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Epson (United States)", + "type": "Child", + "id": "https://ror.org/05ykp4255" + } + ], + "addresses": [ + { + "lat": 41.08871, + "lng": -74.14376, + "state": null, + "state_code": null, + "city": "Mahwah", + "geonames_city": { + "id": 5100776, + "city": "Mahwah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://seikousa.com" + ], + "aliases": [ + "Seiko Holdings" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Seiko", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.481746.8", + "preferred": "grid.481746.8" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0517rzt45.json b/v1.51/v1/0517rzt45.json new file mode 100644 index 000000000..f2c0781b9 --- /dev/null +++ b/v1.51/v1/0517rzt45.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0517rzt45", + "name": "T. Rowe Price Group (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "T. Rowe Price Program for Charitable Giving", + "type": "Child", + "id": "https://ror.org/052gyqs21" + } + ], + "addresses": [ + { + "lat": 39.29038, + "lng": -76.61219, + "state": null, + "state_code": null, + "city": "Baltimore", + "geonames_city": { + "id": 4347778, + "city": "Baltimore", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.troweprice.com" + ], + "aliases": [ + "T. Rowe Price", + "T. Rowe Price Associates", + "T. Rowe Price Group, Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "T. Rowe Price Group", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q3511946" + ], + "preferred": "Q3511946" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0519z1a07.json b/v1.51/v1/0519z1a07.json new file mode 100644 index 000000000..13ceb838c --- /dev/null +++ b/v1.51/v1/0519z1a07.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/0519z1a07", + "name": "Universidad Tecnológica del Valle del Mezquital", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.5, + "lng": -99, + "state": null, + "state_code": null, + "city": "Hidalgo", + "geonames_city": { + "id": 3527115, + "city": "Hidalgo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utvm.edu.mx" + ], + "aliases": [], + "acronyms": [ + "UTVM" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Tecnol%C3%B3gica_del_Valle_del_Mezquital", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q69431457" + ], + "preferred": "Q69431457" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/051escj72.json b/v1.51/v1/051escj72.json new file mode 100644 index 000000000..315452cea --- /dev/null +++ b/v1.51/v1/051escj72.json @@ -0,0 +1,413 @@ +{ + "id": "https://ror.org/051escj72", + "name": "Université de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1289, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "UMR Botanique et Modélisation de l’Architecture des Plantes et des végétations", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Recherche de Biochimie Macromoléculaire", + "type": "Child", + "id": "https://ror.org/01xpc6869" + }, + { + "label": "Diversité, adaptation et développement des plantes", + "type": "Child", + "id": "https://ror.org/02banhz78" + }, + { + "label": "Diversity, Genomes and Insects-Microorganisms Interactions", + "type": "Child", + "id": "https://ror.org/03q1qx424" + }, + { + "label": "Forests and Societies", + "type": "Child", + "id": "https://ror.org/02pzyz439" + }, + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Institut Charles Gerhardt", + "type": "Child", + "id": "https://ror.org/028wq3277" + }, + { + "label": "Institut Européen des Membranes", + "type": "Child", + "id": "https://ror.org/04nmj9827" + }, + { + "label": "Institut d'Électronique et des Systèmes", + "type": "Child", + "id": "https://ror.org/0431hh004" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Génétique Moléculaire de Montpellier", + "type": "Child", + "id": "https://ror.org/02785qs39" + }, + { + "label": "Institut Montpelliérain Alexander Grothendieck", + "type": "Child", + "id": "https://ror.org/044kxby82" + }, + { + "label": "Institut de Recherche en Infectiologie de Montpellier", + "type": "Child", + "id": "https://ror.org/036eg1q44" + }, + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "Child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "Child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institut de Chimie Séparative de Marcoule", + "type": "Child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institut de Recherche en Cancérologie de Montpellier", + "type": "Child", + "id": "https://ror.org/03capj968" + }, + { + "label": "Institut de Génétique Humaine", + "type": "Child", + "id": "https://ror.org/05ee10k25" + }, + { + "label": "Laboratoire Charles Coulomb", + "type": "Child", + "id": "https://ror.org/02ftce284" + }, + { + "label": "Laboratoire Univers et Particules de Montpellier", + "type": "Child", + "id": "https://ror.org/00nrbzg90" + }, + { + "label": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "type": "Child", + "id": "https://ror.org/03fte3n86" + }, + { + "label": "Laboratoire de Mécanique et Génie Civil", + "type": "Child", + "id": "https://ror.org/02fke9256" + }, + { + "label": "Laboratoire HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "Child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Marine Biodiversity Exploitation and Conservation", + "type": "Child", + "id": "https://ror.org/049dk3691" + }, + { + "label": "Laboratoire d'Informatique, de Robotique et de Microélectronique de Montpellier", + "type": "Child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Physiologie et Médecine Expérimentale du Coeur et des Muscles", + "type": "Child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Sciences pour L’Œnologie", + "type": "Child", + "id": "https://ror.org/04w07sc25" + }, + { + "label": "Centre d’Etudes Politiques Et sociaLes", + "type": "Child", + "id": "https://ror.org/02wzg8t73" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "Child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "Child", + "id": "https://ror.org/03kbarg82" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "Child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "Child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "Child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Centre Méditerranéen de l’Environnement et de la Biodiversité", + "type": "Child", + "id": "https://ror.org/04eeyfe07" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "Université Montpellier 1", + "type": "Predecessor", + "id": "https://ror.org/0227fbx80" + }, + { + "label": "Université Montpellier 2", + "type": "Predecessor", + "id": "https://ror.org/00wh4bp03" + }, + { + "label": "Hôpital Lapeyronie", + "type": "Related", + "id": "https://ror.org/03xzagw65" + }, + { + "label": "Hôpital Saint Eloi", + "type": "Related", + "id": "https://ror.org/04pwyfk22" + }, + { + "label": "Institut Universitaire de Recherche Clinique", + "type": "Related", + "id": "https://ror.org/03kfkzp90" + }, + { + "label": "Centre Hospitalier Universitaire de Montpellier", + "type": "Related", + "id": "https://ror.org/00mthsf17" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umontpellier.fr/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Montpellier", + "labels": [ + { + "label": "University of Montpellier", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008222" + ], + "preferred": null + }, + "GRID": { + "all": "grid.121334.6", + "preferred": "grid.121334.6" + }, + "ISNI": { + "all": [ + "0000 0001 2097 0141" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q776223" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/051f36b19.json b/v1.51/v1/051f36b19.json new file mode 100644 index 000000000..a6b444150 --- /dev/null +++ b/v1.51/v1/051f36b19.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/051f36b19", + "name": "Asociación Colombiana de Cirugía de la Mano", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://asocimano.org" + ], + "aliases": [], + "acronyms": [ + "ASOCIMANO" + ], + "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.51/v1/051kejp81.json b/v1.51/v1/051kejp81.json new file mode 100644 index 000000000..63ac21a85 --- /dev/null +++ b/v1.51/v1/051kejp81.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/051kejp81", + "name": "Brooklyn Public Library", + "email_address": null, + "ip_addresses": [], + "established": 1896, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Center for Brooklyn History", + "type": "Child", + "id": "https://ror.org/03xvvtc63" + } + ], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bklynlibrary.org/" + ], + "aliases": [], + "acronyms": [ + "BPL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Brooklyn_Public_Library", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.475039.c", + "preferred": "grid.475039.c" + }, + "ISNI": { + "all": [ + "0000 0001 2190 1332" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1198796" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0520xdp94.json b/v1.51/v1/0520xdp94.json new file mode 100644 index 000000000..ec497ad97 --- /dev/null +++ b/v1.51/v1/0520xdp94.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/0520xdp94", + "name": "Kut University College", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.5128, + "lng": 45.81817, + "state": null, + "state_code": null, + "city": "Kut", + "geonames_city": { + "id": 99131, + "city": "Kut", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://alkutcollege.edu.iq" + ], + "aliases": [ + "Al-Kut University College" + ], + "acronyms": [ + "KUTCU" + ], + "status": "active", + "wikipedia_url": "https://ar.wikipedia.org/wiki/%D9%83%D9%84%D9%8A%D8%A9_%D8%A7%D9%84%D9%83%D9%88%D8%AA_%D8%A7%D9%84%D8%AC%D8%A7%D9%85%D8%B9%D8%A9#:~:text=%D9%83%D9%84%D9%8A%D8%A9%20%D8%A7%D9%84%D9%83%D9%88%D8%AA%20%D8%A7%D9%84%D8%AC%D8%A7%D9%85%D8%B9%D8%A9%20%D9%87%D9%8A%20%D9%83%D9%84%D9%8A%D8%A9,%D8%A7%D9%84%D8%B9%D9%84%D9%85%D9%8A%20%D8%A7%D9%84%D8%B9%D8%B1%D8%A7%D9%82%D9%8A%D8%A9%20%D9%85%D9%86%D8%B0%20%D8%A7%D9%84%D8%B9%D8%A7%D9%85%202013", + "labels": [ + { + "label": "كلية الكوت الجامعة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1173 2327" + ], + "preferred": "0000 0005 1173 2327" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0524sp257.json b/v1.51/v1/0524sp257.json new file mode 100644 index 000000000..a55a76abb --- /dev/null +++ b/v1.51/v1/0524sp257.json @@ -0,0 +1,175 @@ +{ + "id": "https://ror.org/0524sp257", + "name": "University of Bristol", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics", + "type": "Child", + "id": "https://ror.org/047d2d387" + }, + { + "label": "Max Planck-Bristol Centre for Minimal Biology", + "type": "Child", + "id": "https://ror.org/05k0x2619" + }, + { + "label": "NIHR Bristol Biomedical Research Centre", + "type": "Child", + "id": "https://ror.org/02mtt1z51" + }, + { + "label": "MRC Integrative Epidemiology Unit", + "type": "Child", + "id": "https://ror.org/030qtrs05" + }, + { + "label": "Bristol University Press", + "type": "Child", + "id": "https://ror.org/05fehs989" + }, + { + "label": "Bristol Eye Hospital", + "type": "Related", + "id": "https://ror.org/01w151e64" + }, + { + "label": "Bristol Royal Hospital for Children", + "type": "Related", + "id": "https://ror.org/01qgecw57" + }, + { + "label": "Bristol Royal Infirmary", + "type": "Related", + "id": "https://ror.org/031p4kj21" + }, + { + "label": "Frenchay Hospital", + "type": "Related", + "id": "https://ror.org/03z8x2j90" + }, + { + "label": "NIHR Bristol Cardiovascular Biomedical Research Unit", + "type": "Related", + "id": "https://ror.org/03gna4510" + }, + { + "label": "NIHR Bristol Nutrition Biomedical Research Unit", + "type": "Related", + "id": "https://ror.org/019rf7x86" + }, + { + "label": "St Michael's Hospital", + "type": "Related", + "id": "https://ror.org/02hqqna27" + }, + { + "label": "University Of Bristol Dental Hospital", + "type": "Related", + "id": "https://ror.org/027a33v57" + }, + { + "label": "GW4 Facility for High-Resolution Electron Cryo-Microscopy", + "type": "Related", + "id": "https://ror.org/022p86748" + }, + { + "label": "GW4", + "type": "Related", + "id": "https://ror.org/000vekr11" + } + ], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://bristol.ac.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Bristol", + "labels": [ + { + "label": "Prifysgol Bryste", + "iso639": "cy" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100000883", + "501100006438", + "501100005618" + ], + "preferred": "501100000883" + }, + "GRID": { + "all": "grid.5337.2", + "preferred": "grid.5337.2" + }, + "ISNI": { + "all": [ + "0000 0004 1936 7603" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q459506" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05252fg05.json b/v1.51/v1/05252fg05.json new file mode 100644 index 000000000..28a98159b --- /dev/null +++ b/v1.51/v1/05252fg05.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/05252fg05", + "name": "Deraya University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.09193, + "lng": 30.75813, + "state": null, + "state_code": null, + "city": "Minya", + "geonames_city": { + "id": 360686, + "city": "Minya", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://deraya.edu.eg" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "جامعة دراية", + "iso639": "ar" + } + ], + "country": { + "country_name": "Egypt", + "country_code": "EG" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q22929389" + ], + "preferred": "Q22929389" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0526wv466.json b/v1.51/v1/0526wv466.json new file mode 100644 index 000000000..ac72f8b23 --- /dev/null +++ b/v1.51/v1/0526wv466.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/0526wv466", + "name": "Universitas Muhammadiyah Kuningan", + "email_address": null, + "ip_addresses": [], + "established": 2024, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "STIKES Muhammadiyah Kuningan", + "type": "Predecessor", + "id": "https://ror.org/05rbj6w12" + }, + { + "label": "STKIP Muhammadiyah Kuningan", + "type": "Predecessor", + "id": "https://ror.org/046gx1e19" + } + ], + "addresses": [ + { + "lat": -6.97583, + "lng": 108.48306, + "state": null, + "state_code": null, + "city": "Kuningan", + "geonames_city": { + "id": 1639094, + "city": "Kuningan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://upmk.ac.id" + ], + "aliases": [], + "acronyms": [ + "UPMK" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/052gyqs21.json b/v1.51/v1/052gyqs21.json new file mode 100644 index 000000000..85c937cdb --- /dev/null +++ b/v1.51/v1/052gyqs21.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/052gyqs21", + "name": "T. Rowe Price Program for Charitable Giving", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "T. Rowe Price Group (United States)", + "type": "Parent", + "id": "https://ror.org/0517rzt45" + } + ], + "addresses": [ + { + "lat": 39.41955, + "lng": -76.78025, + "state": null, + "state_code": null, + "city": "Owings Mills", + "geonames_city": { + "id": 4364727, + "city": "Owings Mills", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://programforgiving.org/charitable/pages/home.jsp" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100001300" + ], + "preferred": null + }, + "GRID": { + "all": "grid.481459.5", + "preferred": "grid.481459.5" + }, + "ISNI": { + "all": [ + "0000 0004 5904 0111" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/052nhnq73.json b/v1.51/v1/052nhnq73.json new file mode 100644 index 000000000..3499b7643 --- /dev/null +++ b/v1.51/v1/052nhnq73.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/052nhnq73", + "name": "University for Development Studies", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tamale Teaching Hospital", + "type": "Related", + "id": "https://ror.org/00f9jfw45" + }, + { + "label": "Gambaga College of Education", + "type": "Related", + "id": "https://ror.org/028sfha37" + }, + { + "label": "Al-Faruq College of Education", + "type": "Related", + "id": "https://ror.org/02z1xqy79" + }, + { + "label": "St. Vincent College of Education", + "type": "Related", + "id": "https://ror.org/03rfnpw37" + }, + { + "label": "Lakeside University College Ghana", + "type": "Related", + "id": "https://ror.org/03qn3zw06" + } + ], + "addresses": [ + { + "lat": 9.40079, + "lng": -0.8393, + "state": null, + "state_code": null, + "city": "Tamale", + "geonames_city": { + "id": 2294877, + "city": "Tamale", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uds.edu.gh/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_for_Development_Studies", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "GRID": { + "all": "grid.442305.4", + "preferred": "grid.442305.4" + }, + "ISNI": { + "all": [ + "0000 0004 0441 5393" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1766573" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/052waam31.json b/v1.51/v1/052waam31.json new file mode 100644 index 000000000..9bdbe7b1c --- /dev/null +++ b/v1.51/v1/052waam31.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/052waam31", + "name": "Aon (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aon.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Aon", + "iso639": "en" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0535nfe19.json b/v1.51/v1/0535nfe19.json new file mode 100644 index 000000000..57a941958 --- /dev/null +++ b/v1.51/v1/0535nfe19.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/0535nfe19", + "name": "Universidad Politécnica de la Zona Metropolitana de Guadalajara", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.47421, + "lng": -103.44654, + "state": null, + "state_code": null, + "city": "Tlajomulco de Zúñiga", + "geonames_city": { + "id": 3981467, + "city": "Tlajomulco de Zúñiga", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://upzmg.edu.jalisco.gob.mx" + ], + "aliases": [ + "Polytechnic University of the Metropolitan Area of Guadalajara" + ], + "acronyms": [ + "UPZMG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0369 2495" + ], + "preferred": "0000 0004 0369 2495" + }, + "Wikidata": { + "all": [ + "Q129003904" + ], + "preferred": "Q129003904" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/053jkh992.json b/v1.51/v1/053jkh992.json new file mode 100644 index 000000000..730d7d2b2 --- /dev/null +++ b/v1.51/v1/053jkh992.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/053jkh992", + "name": "Thai Nguyen University of Medicine and Pharmacy", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.59422, + "lng": 105.84817, + "state": null, + "state_code": null, + "city": "Thái Nguyên", + "geonames_city": { + "id": 1566319, + "city": "Thái Nguyên", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tump.edu.vn" + ], + "aliases": [], + "acronyms": [ + "TUMP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Trường Đại học Y - Dược, Đại học Thái Nguyên", + "iso639": "vi" + } + ], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 5948 8493" + ], + "preferred": "0000 0004 5948 8493" + }, + "Wikidata": { + "all": [ + "Q10829169" + ], + "preferred": "Q10829169" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/053kjm920.json b/v1.51/v1/053kjm920.json new file mode 100644 index 000000000..65e5f1375 --- /dev/null +++ b/v1.51/v1/053kjm920.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/053kjm920", + "name": "Centro Universitário Católica de Quixadá", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -4.97139, + "lng": -39.01528, + "state": null, + "state_code": null, + "city": "Quixadá", + "geonames_city": { + "id": 3390907, + "city": "Quixadá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://unicatolicaquixada.edu.br/" + ], + "aliases": [ + "Faculdade Católica Rainha do Sertão", + "UniCatólica" + ], + "acronyms": [ + "FCRS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "GRID": { + "all": "grid.466687.d", + "preferred": "grid.466687.d" + }, + "ISNI": { + "all": [ + "0000 0004 1795 7730" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10279228" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/053yszt22.json b/v1.51/v1/053yszt22.json new file mode 100644 index 000000000..fd7de531f --- /dev/null +++ b/v1.51/v1/053yszt22.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/053yszt22", + "name": "Exelon (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.85003, + "lng": -87.65005, + "state": null, + "state_code": null, + "city": "Chicago", + "geonames_city": { + "id": 4887398, + "city": "Chicago", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.exeloncorp.com" + ], + "aliases": [ + "Exelon Corp", + "Exelon Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Exelon", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018435" + ], + "preferred": "100018435" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/054ktxw16.json b/v1.51/v1/054ktxw16.json new file mode 100644 index 000000000..32c66e72b --- /dev/null +++ b/v1.51/v1/054ktxw16.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/054ktxw16", + "name": "Biomasse, bois, énergie, bio-produits", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ur-biowooeb.cirad.fr" + ], + "aliases": [ + "BioWooEB", + "UPR BioWooEB", + "Unité de recherche BioWooEB" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Biomass, Wood, Energy, Bioproducts", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/054spjc55.json b/v1.51/v1/054spjc55.json new file mode 100644 index 000000000..c4740ba67 --- /dev/null +++ b/v1.51/v1/054spjc55.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/054spjc55", + "name": "University of Colorado Colorado Springs", + "email_address": null, + "ip_addresses": [], + "established": 1876, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Colorado System", + "type": "Parent", + "id": "https://ror.org/00jc20583" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 38.83388, + "lng": -104.82136, + "state": null, + "state_code": null, + "city": "Colorado Springs", + "geonames_city": { + "id": 5417598, + "city": "Colorado Springs", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uccs.edu/" + ], + "aliases": [], + "acronyms": [ + "UCCS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Colorado_Colorado_Springs", + "labels": [ + { + "label": "Universidad de Colorado en Colorado Springs", + "iso639": "es" + }, + { + "label": "Université du Colorado à Colorado Springs", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010175", + "100010499" + ], + "preferred": null + }, + "GRID": { + "all": "grid.266186.d", + "preferred": "grid.266186.d" + }, + "ISNI": { + "all": [ + "0000 0001 0684 1394" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2495841" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/054wd5j92.json b/v1.51/v1/054wd5j92.json new file mode 100644 index 000000000..ca9e4e130 --- /dev/null +++ b/v1.51/v1/054wd5j92.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/054wd5j92", + "name": "Guangzhou Baiyun Airport Customs Comprehensive Technical Service Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://guangzhou.customs.gov.cn/guangzhou_customs/sy6/index.html" + ], + "aliases": [], + "acronyms": [ + "GBACCTSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "广州白云机场海关综合技术服务中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/054ys4h04.json b/v1.51/v1/054ys4h04.json new file mode 100644 index 000000000..595fe9d83 --- /dev/null +++ b/v1.51/v1/054ys4h04.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/054ys4h04", + "name": "Cobham (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1934, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Cobham (United States)", + "type": "Child", + "id": "https://ror.org/02ja00s57" + } + ], + "addresses": [ + { + "lat": 50.72048, + "lng": -1.8795, + "state": null, + "state_code": null, + "city": "Bournemouth", + "geonames_city": { + "id": 2655095, + "city": "Bournemouth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cobham.com" + ], + "aliases": [ + "Flight Refuelling Limited" + ], + "acronyms": [ + "FRL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cobham_(company)", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.438953.0", + "preferred": "grid.438953.0" + }, + "ISNI": { + "all": [ + "0000 0004 0600 6198" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30292500" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0552wkf46.json b/v1.51/v1/0552wkf46.json new file mode 100644 index 000000000..ca760c966 --- /dev/null +++ b/v1.51/v1/0552wkf46.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/0552wkf46", + "name": "NRG Energy (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.76328, + "lng": -95.36327, + "state": null, + "state_code": null, + "city": "Houston", + "geonames_city": { + "id": 4699066, + "city": "Houston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nrg.com" + ], + "aliases": [ + "NRG Energy, Inc" + ], + "acronyms": [ + "NRG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "NRG Energy", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/05591te55.json b/v1.51/v1/05591te55.json new file mode 100644 index 000000000..16c15d8db --- /dev/null +++ b/v1.51/v1/05591te55.json @@ -0,0 +1,156 @@ +{ + "id": "https://ror.org/05591te55", + "name": "Ludwig-Maximilians-Universität München", + "email_address": null, + "ip_addresses": [], + "established": 1472, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zentrum für Klinische Tiermedizin", + "type": "Child", + "id": "https://ror.org/02qqvpd39" + }, + { + "label": "Munich Cluster for Systems Neurology", + "type": "Child", + "id": "https://ror.org/025z3z560" + }, + { + "label": "Excellence Cluster Origins", + "type": "Child", + "id": "https://ror.org/010wkny21" + }, + { + "label": "Munich Center for Quantum Science and Technology", + "type": "Child", + "id": "https://ror.org/04xrcta15" + }, + { + "label": "Nanosystems Initiative Munich", + "type": "Child", + "id": "https://ror.org/01mvrj242" + }, + { + "label": "Center for Integrated Protein Science Munich", + "type": "Child", + "id": "https://ror.org/032hzb643" + }, + { + "label": "Center for NanoScience", + "type": "Child", + "id": "https://ror.org/002epp671" + }, + { + "label": "Centre for Advanced Laser Applications", + "type": "Child", + "id": "https://ror.org/04j4kfb22" + }, + { + "label": "Rachel Carson Center for Environment and Society", + "type": "Child", + "id": "https://ror.org/01h2vtb84" + }, + { + "label": "Collegium Carolinum", + "type": "Related", + "id": "https://ror.org/02jjvb954" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lmu.de" + ], + "aliases": [ + "Ludwig Maximilian University of Munich", + "University of Munich", + "Universität München" + ], + "acronyms": [ + "LMU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ludwig_Maximilian_University_of_Munich", + "labels": [ + { + "label": "Ludwig-Maximilians-Universität in Munich", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005722", + "501100006192", + "501100009401" + ], + "preferred": "501100005722" + }, + "GRID": { + "all": "grid.5252.0", + "preferred": "grid.5252.0" + }, + "ISNI": { + "all": [ + "0000 0004 1936 973X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q55044" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/055r0dt08.json b/v1.51/v1/055r0dt08.json new file mode 100644 index 000000000..6ed8c412e --- /dev/null +++ b/v1.51/v1/055r0dt08.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/055r0dt08", + "name": "Faculdade do Futuro", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -20.25806, + "lng": -42.03361, + "state": null, + "state_code": null, + "city": "Manhuaçu", + "geonames_city": { + "id": 3457952, + "city": "Manhuaçu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://faculdadedofuturo.com.br" + ], + "aliases": [ + "College of Future" + ], + "acronyms": [ + "FAF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7479 4237" + ], + "preferred": "0000 0004 7479 4237" + }, + "Wikidata": { + "all": [ + "Q56841178" + ], + "preferred": "Q56841178" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/055rbnx68.json b/v1.51/v1/055rbnx68.json new file mode 100644 index 000000000..decde36d5 --- /dev/null +++ b/v1.51/v1/055rbnx68.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/055rbnx68", + "name": "Vulcan Materials (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.52066, + "lng": -86.80249, + "state": null, + "state_code": null, + "city": "Birmingham", + "geonames_city": { + "id": 4049979, + "city": "Birmingham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vulcanmaterials.com" + ], + "aliases": [ + "Vulcan Materials Co", + "Vulcan Materials Company" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Vulcan Materials", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100029271" + ], + "preferred": "100029271" + }, + "Wikidata": { + "all": [ + "Q1685287" + ], + "preferred": "Q1685287" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/055rn2a38.json b/v1.51/v1/055rn2a38.json new file mode 100644 index 000000000..c1bcf8c4d --- /dev/null +++ b/v1.51/v1/055rn2a38.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/055rn2a38", + "name": "Mercedes-Benz (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1926, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mercedes-Benz Research and Development North America (United States)", + "type": "Child", + "id": "https://ror.org/00b4ram58" + }, + { + "label": "Daimler Truck (Germany)", + "type": "Related", + "id": "https://ror.org/049ahjd53" + }, + { + "label": "Mercedes-Benz (Japan)", + "type": "Child", + "id": "https://ror.org/03z22t144" + } + ], + "addresses": [ + { + "lat": 48.78232, + "lng": 9.17702, + "state": null, + "state_code": null, + "city": "Stuttgart", + "geonames_city": { + "id": 2825297, + "city": "Stuttgart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mercedes-benz.com/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mercedes-Benz", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.71377.35", + "preferred": "grid.71377.35" + }, + "ISNI": { + "all": [ + "0000 0001 2308 5762" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q36008" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/055s37c97.json b/v1.51/v1/055s37c97.json new file mode 100644 index 000000000..5e64897e0 --- /dev/null +++ b/v1.51/v1/055s37c97.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/055s37c97", + "name": "Leibniz-Institut für Naturstoff-Forschung und Infektionsbiologie e. V. - Hans-Knöll-Institut (HKI)", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "Parent", + "id": "https://ror.org/01n6r0e97" + }, + { + "label": "InfectControl", + "type": "Child", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 50.92878, + "lng": 11.5899, + "state": null, + "state_code": null, + "city": "Jena", + "geonames_city": { + "id": 2895044, + "city": "Jena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.leibniz-hki.de" + ], + "aliases": [ + "Hans Knöll Institute", + "Leibniz HKI", + "Leibniz Institute for Natural Product Research and Infection Biology", + "Leibniz Institute for Natural Product Research and Infection Biology Hans Knöll Institute", + "Leibniz-Institut für Naturstoff-Forschung und Infektionsbiologie", + "Leibniz-Institut für Naturstoff-Forschung und Infektionsbiologie Hans-Knöll-Institut", + "Leibniz-Institut für Naturstoff-Forschung und Infektionsbiologie e. V." + ], + "acronyms": [ + "HKI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008831" + ], + "preferred": "501100008831" + }, + "GRID": { + "all": "grid.418398.f", + "preferred": "grid.418398.f" + }, + "ISNI": { + "all": [ + "0000 0001 0143 807X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/056nsnt54.json b/v1.51/v1/056nsnt54.json new file mode 100644 index 000000000..b25967d61 --- /dev/null +++ b/v1.51/v1/056nsnt54.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/056nsnt54", + "name": "MeteoIA (Brazil)", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": -23.5475, + "lng": -46.63611, + "state": null, + "state_code": null, + "city": "São Paulo", + "geonames_city": { + "id": 3448439, + "city": "São Paulo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.meteoia.com" + ], + "aliases": [ + "MeteoIA Datascience LTDA" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "MeteoIA", + "iso639": null + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/056zprp28.json b/v1.51/v1/056zprp28.json new file mode 100644 index 000000000..cc3c3fe6c --- /dev/null +++ b/v1.51/v1/056zprp28.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/056zprp28", + "name": "Microsoft Research New York City (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Microsoft (United States)", + "type": "Parent", + "id": "https://ror.org/00d0nc645" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.microsoft.com/en-us/research/lab/microsoft-research-new-york/" + ], + "aliases": [ + "Microsoft Research New York" + ], + "acronyms": [ + "MSR-NYC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Microsoft Research New York City", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/0573vrp16.json b/v1.51/v1/0573vrp16.json new file mode 100644 index 000000000..6b4bd4404 --- /dev/null +++ b/v1.51/v1/0573vrp16.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/0573vrp16", + "name": "Abgeordnetenhaus Berlin", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.parlament-berlin.de" + ], + "aliases": [ + "Abgeordnetenhaus von Berlin", + "House of Representatives of Berlin", + "State Parliament of Berlin" + ], + "acronyms": [ + "AGH" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Abgeordnetenhaus_von_Berlin", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 1013 4764" + ], + "preferred": "0000 0001 1013 4764" + }, + "Wikidata": { + "all": [ + "Q640859" + ], + "preferred": "Q640859" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/0577njw16.json b/v1.51/v1/0577njw16.json new file mode 100644 index 000000000..235e430c8 --- /dev/null +++ b/v1.51/v1/0577njw16.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/0577njw16", + "name": "Universitas Nahdlatul Ulama Purwokerto", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -7.42139, + "lng": 109.23444, + "state": null, + "state_code": null, + "city": "Purwokerto", + "geonames_city": { + "id": 1630328, + "city": "Purwokerto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unupurwokerto.ac.id" + ], + "aliases": [ + "UNU Purwokerto", + "University of Nahdlatul Ulama Purwokerto" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Universitas_Nahdlatul_Ulama_Purwokerto", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q85995029" + ], + "preferred": "Q85995029" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05783n648.json b/v1.51/v1/05783n648.json new file mode 100644 index 000000000..441389910 --- /dev/null +++ b/v1.51/v1/05783n648.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05783n648", + "name": "Discover Financial Services (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.16753, + "lng": -87.89701, + "state": null, + "state_code": null, + "city": "Riverwoods", + "geonames_city": { + "id": 4907762, + "city": "Riverwoods", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.discover.co" + ], + "aliases": [], + "acronyms": [ + "DFS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Discover Financial Services", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9894 5854" + ], + "preferred": "0000 0000 9894 5854" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/057a3cc32.json b/v1.51/v1/057a3cc32.json new file mode 100644 index 000000000..03969d998 --- /dev/null +++ b/v1.51/v1/057a3cc32.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/057a3cc32", + "name": "Association de lutte contre le sida (ALCS)", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.58831, + "lng": -7.61138, + "state": null, + "state_code": null, + "city": "Casablanca", + "geonames_city": { + "id": 2553604, + "city": "Casablanca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://alcs.ma" + ], + "aliases": [ + "Association de lutte contre le sida" + ], + "acronyms": [ + "ALCS" + ], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Association_de_lutte_contre_le_sida", + "labels": [], + "country": { + "country_name": "Morocco", + "country_code": "MA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q18213989" + ], + "preferred": "Q18213989" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/057er4c39.json b/v1.51/v1/057er4c39.json new file mode 100644 index 000000000..d7b2203ad --- /dev/null +++ b/v1.51/v1/057er4c39.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/057er4c39", + "name": "Laboratoire Traitement et Communication de l’Information", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Télécom Paris", + "type": "Parent", + "id": "https://ror.org/01naq7912" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Parent", + "id": "https://ror.org/042tfbd02" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.telecom-paris.fr/fr/recherche/laboratoires/laboratoire-traitement-et-communication-de-linformation-ltci" + ], + "aliases": [ + "LTCI Lab" + ], + "acronyms": [ + "LTCI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464001.7", + "preferred": "grid.464001.7" + }, + "ISNI": { + "all": [ + "0000 0000 9194 9502" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262371" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/058svmp18.json b/v1.51/v1/058svmp18.json new file mode 100644 index 000000000..fedceb53d --- /dev/null +++ b/v1.51/v1/058svmp18.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/058svmp18", + "name": "Alcaldía de Barranquilla", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.96854, + "lng": -74.78132, + "state": null, + "state_code": null, + "city": "Barranquilla", + "geonames_city": { + "id": 3689147, + "city": "Barranquilla", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.barranquilla.gov.co" + ], + "aliases": [ + "Alcaldía Distrital de Barranquilla" + ], + "acronyms": [ + "ABQA" + ], + "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.51/v1/05a0xpx35.json b/v1.51/v1/05a0xpx35.json new file mode 100644 index 000000000..155485d2d --- /dev/null +++ b/v1.51/v1/05a0xpx35.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/05a0xpx35", + "name": "Maine College of Health Professions", + "email_address": null, + "ip_addresses": [], + "established": 1891, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.10035, + "lng": -70.21478, + "state": null, + "state_code": null, + "city": "Lewiston", + "geonames_city": { + "id": 4969398, + "city": "Lewiston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mchp.edu" + ], + "aliases": [], + "acronyms": [ + "MCHP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q104901588" + ], + "preferred": "Q104901588" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05a5cgn70.json b/v1.51/v1/05a5cgn70.json new file mode 100644 index 000000000..90a05becd --- /dev/null +++ b/v1.51/v1/05a5cgn70.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05a5cgn70", + "name": "Xiaopeng Motors (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.xiaopeng.com" + ], + "aliases": [ + "XPeng", + "小鹏汽车" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/XPeng", + "labels": [ + { + "label": "Guangzhou Xiaopeng Motors Technology Co Ltd", + "iso639": "en" + }, + { + "label": "Xiaopeng Motors", + "iso639": "en" + }, + { + "label": "广州小鹏汽车科技有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q63035278" + ], + "preferred": "Q63035278" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05angxc35.json b/v1.51/v1/05angxc35.json new file mode 100644 index 000000000..51282619f --- /dev/null +++ b/v1.51/v1/05angxc35.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05angxc35", + "name": "Daimler (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1926, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Daimler (Germany)", + "type": "Parent", + "id": "https://ror.org/00m0j3d84" + } + ], + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.daimler.com/company/north-america/" + ], + "aliases": [ + "Daimler-Benz", + "DaimlerChrysler" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Daimler_AG", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.433999.d", + "preferred": "grid.433999.d" + }, + "Wikidata": { + "all": [ + "Q30256347" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05cg4bn76.json b/v1.51/v1/05cg4bn76.json new file mode 100644 index 000000000..2375a0c19 --- /dev/null +++ b/v1.51/v1/05cg4bn76.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05cg4bn76", + "name": "City College of Calamba", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 14.21167, + "lng": 121.16528, + "state": null, + "state_code": null, + "city": "Calamba", + "geonames_city": { + "id": 1720681, + "city": "Calamba", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ccc.edu.ph" + ], + "aliases": [], + "acronyms": [ + "CCC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Dalubhasaan ng Calamba", + "iso639": "tl" + } + ], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5123124" + ], + "preferred": "Q5123124" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05cmv6g68.json b/v1.51/v1/05cmv6g68.json new file mode 100644 index 000000000..185107094 --- /dev/null +++ b/v1.51/v1/05cmv6g68.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05cmv6g68", + "name": "Horizon Robotics (China)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.horizon.ai" + ], + "aliases": [ + "Beijing Horizon Robotics Technology Development Co LTD", + "Dipingxian", + "Horizon Robotics, Inc.", + "地平线" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Horizon Robotics", + "iso639": "en" + }, + { + "label": "北京地平线信息技术有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/05ctx1h60.json b/v1.51/v1/05ctx1h60.json new file mode 100644 index 000000000..dc5a84e6e --- /dev/null +++ b/v1.51/v1/05ctx1h60.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/05ctx1h60", + "name": "Franklin Templeton (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.56299, + "lng": -122.32553, + "state": null, + "state_code": null, + "city": "San Mateo", + "geonames_city": { + "id": 5392423, + "city": "San Mateo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.franklintempleton.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Franklin_Templeton_Investments", + "labels": [ + { + "label": "Franklin Templeton", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/05cvfcr44.json b/v1.51/v1/05cvfcr44.json new file mode 100644 index 000000000..544ebae05 --- /dev/null +++ b/v1.51/v1/05cvfcr44.json @@ -0,0 +1,143 @@ +{ + "id": "https://ror.org/05cvfcr44", + "name": "NSF National Center for Atmospheric Research", + "email_address": null, + "ip_addresses": [], + "established": 1930, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Climate and Global Dynamics Laboratory", + "type": "Child", + "id": "https://ror.org/03qrb1j36" + }, + { + "label": "Atmospheric Chemistry Observations & Modeling", + "type": "Child", + "id": "https://ror.org/00hhjz250" + }, + { + "label": "Computational & Information Systems Laboratory", + "type": "Child", + "id": "https://ror.org/05xc0qp17" + }, + { + "label": "Earth Observing Laboratory", + "type": "Child", + "id": "https://ror.org/02b5sc606" + }, + { + "label": "Mesoscale & Microscale Meteorology Laboratory", + "type": "Child", + "id": "https://ror.org/02exh3e86" + }, + { + "label": "Research Applications Laboratory", + "type": "Child", + "id": "https://ror.org/05detrt70" + }, + { + "label": "High Altitude Observatory", + "type": "Child", + "id": "https://ror.org/03773p874" + }, + { + "label": "University Corporation for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/04zhhyn23" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ncar.ucar.edu/" + ], + "aliases": [ + "National Center for Atmospheric Research", + "National Science Foundation National Center for Atmospheric Research" + ], + "acronyms": [ + "NCAR" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/National_Center_for_Atmospheric_Research", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100005323" + ], + "preferred": null + }, + "GRID": { + "all": "grid.57828.30", + "preferred": "grid.57828.30" + }, + "ISNI": { + "all": [ + "0000 0004 0637 9680" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q934589" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05cwhxn91.json b/v1.51/v1/05cwhxn91.json new file mode 100644 index 000000000..0bbe58163 --- /dev/null +++ b/v1.51/v1/05cwhxn91.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05cwhxn91", + "name": "Williton Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.01494, + "lng": -3.10293, + "state": null, + "state_code": null, + "city": "Taunton", + "geonames_city": { + "id": 2636177, + "city": "Taunton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/williton-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.439853.0", + "preferred": "grid.439853.0" + }, + "Wikidata": { + "all": [ + "Q30293179" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05d37ka75.json b/v1.51/v1/05d37ka75.json new file mode 100644 index 000000000..5429b8e29 --- /dev/null +++ b/v1.51/v1/05d37ka75.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/05d37ka75", + "name": "Freies Institut für Bauforschung und Dokumentation e.V.", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.80904, + "lng": 8.77069, + "state": null, + "state_code": null, + "city": "Marburg", + "geonames_city": { + "id": 2873759, + "city": "Marburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ibd-marburg.de" + ], + "aliases": [ + "Free Institute for Building Research and Documentation", + "Free Institute for Building Research and Documentation e.V.", + "Freies Institut für Bauforschung und Dokumentation" + ], + "acronyms": [ + "IBD" + ], + "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.51/v1/05d917r56.json b/v1.51/v1/05d917r56.json new file mode 100644 index 000000000..72fcd9e3a --- /dev/null +++ b/v1.51/v1/05d917r56.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05d917r56", + "name": "Institute for Cultural Research of the National Academy of Arts of Ukraine", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Academy of Arts", + "type": "Parent", + "id": "https://ror.org/01psx1920" + } + ], + "addresses": [ + { + "lat": 50.45466, + "lng": 30.5238, + "state": null, + "state_code": null, + "city": "Kyiv", + "geonames_city": { + "id": 703448, + "city": "Kyiv", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://icr.org.ua" + ], + "aliases": [ + "Інститут культурології Національної академії мистецтв України" + ], + "acronyms": [ + "ICR NAAU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Academy_of_Arts_of_Ukraine", + "labels": [], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q128788034" + ], + "preferred": "Q128788034" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05dgrnf47.json b/v1.51/v1/05dgrnf47.json new file mode 100644 index 000000000..21c0df7e9 --- /dev/null +++ b/v1.51/v1/05dgrnf47.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/05dgrnf47", + "name": "Verizon Media (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.36883, + "lng": -122.03635, + "state": null, + "state_code": null, + "city": "Sunnyvale", + "geonames_city": { + "id": 5400075, + "city": "Sunnyvale", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.verizonmedia.com" + ], + "aliases": [ + "Verizon Media LLC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Verizon Media", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/05dk0ce17.json b/v1.51/v1/05dk0ce17.json new file mode 100644 index 000000000..eecf2eb63 --- /dev/null +++ b/v1.51/v1/05dk0ce17.json @@ -0,0 +1,148 @@ +{ + "id": "https://ror.org/05dk0ce17", + "name": "Washington State University", + "email_address": null, + "ip_addresses": [], + "established": 1890, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Washington State University Spokane", + "type": "Child", + "id": "https://ror.org/04vfs5h36" + }, + { + "label": "Washington State University Tri-Cities", + "type": "Child", + "id": "https://ror.org/02sjef319" + }, + { + "label": "Washington State University Vancouver", + "type": "Child", + "id": "https://ror.org/00g2fk805" + }, + { + "label": "Bioproducts Institute", + "type": "Child", + "id": "https://ror.org/03wpv8896" + }, + { + "label": "Nuclear Science and Technology Institute", + "type": "Child", + "id": "https://ror.org/039fx6g98" + }, + { + "label": "Advanced Grid Institute", + "type": "Child", + "id": "https://ror.org/014vdsh37" + }, + { + "label": "Materials Science in Extreme Environments University Research Alliance", + "type": "Related", + "id": "https://ror.org/04n07f274" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 46.73127, + "lng": -117.17962, + "state": null, + "state_code": null, + "city": "Pullman", + "geonames_city": { + "id": 5807540, + "city": "Pullman", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://wsu.edu/" + ], + "aliases": [], + "acronyms": [ + "WSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Washington_State_University", + "labels": [ + { + "label": "Universidad Estatal de Washington", + "iso639": "es" + }, + { + "label": "Université d'État de washington", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007588", + "100007593", + "100009500", + "100004202", + "100010950" + ], + "preferred": "100007588" + }, + "GRID": { + "all": "grid.30064.31", + "preferred": "grid.30064.31" + }, + "ISNI": { + "all": [ + "0000 0001 2157 6568" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q597236" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05dsfb086.json b/v1.51/v1/05dsfb086.json new file mode 100644 index 000000000..e77e19f86 --- /dev/null +++ b/v1.51/v1/05dsfb086.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/05dsfb086", + "name": "Berlin Institute for the Foundations of Learning and Data", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Technische Universität Berlin", + "type": "Parent", + "id": "https://ror.org/03v4gjf40" + }, + { + "label": "Charité - Universitätsmedizin Berlin", + "type": "Parent", + "id": "https://ror.org/001w7jn25" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bifold.berlin" + ], + "aliases": [ + "BIFOLD Berlin", + "BIFOLD Institute", + "Berlin Zentrum für Maschinelles Lernen" + ], + "acronyms": [ + "BIFOLD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "The Berlin Institute for the Foundations of Learning and Data (BIFOLD)", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1089 7074" + ], + "preferred": "0000 0005 1089 7074" + }, + "Wikidata": { + "all": [ + "Q108366971" + ], + "preferred": "Q108366971" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05dvbq272.json b/v1.51/v1/05dvbq272.json new file mode 100644 index 000000000..d352d8390 --- /dev/null +++ b/v1.51/v1/05dvbq272.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05dvbq272", + "name": "Yeovil District Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.94159, + "lng": -2.63211, + "state": null, + "state_code": null, + "city": "Yeovil", + "geonames_city": { + "id": 2633373, + "city": "Yeovil", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.yeovilhospital.co.uk/jobs/about-ydh/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.417353.7", + "preferred": "grid.417353.7" + }, + "ISNI": { + "all": [ + "0000 0004 0399 1233" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q50575533" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05e2f3x89.json b/v1.51/v1/05e2f3x89.json new file mode 100644 index 000000000..ca5f133e8 --- /dev/null +++ b/v1.51/v1/05e2f3x89.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05e2f3x89", + "name": "Universal Health Services (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.08927, + "lng": -75.39602, + "state": null, + "state_code": null, + "city": "King of Prussia", + "geonames_city": { + "id": 5196220, + "city": "King of Prussia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uhs.com" + ], + "aliases": [ + "Universal Health Services Inc" + ], + "acronyms": [ + "UHS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Universal_Health_Services", + "labels": [ + { + "label": "Universal Health Services", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0415 9289" + ], + "preferred": "0000 0004 0415 9289" + }, + "Wikidata": { + "all": [ + "Q7893967" + ], + "preferred": "Q7893967" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05et7jg19.json b/v1.51/v1/05et7jg19.json new file mode 100644 index 000000000..a384b90ff --- /dev/null +++ b/v1.51/v1/05et7jg19.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05et7jg19", + "name": "Shahid Matangini Hazra Government College for Women", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.30083, + "lng": 87.92593, + "state": null, + "state_code": null, + "city": "Tamlūk", + "geonames_city": { + "id": 1255046, + "city": "Tamlūk", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://matanginicollege.ac.in" + ], + "aliases": [ + "Shahid Matangini Hazra Govt. General Degree College for Women" + ], + "acronyms": [ + "SMHGGDCW" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q30633398" + ], + "preferred": "Q30633398" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05febkk55.json b/v1.51/v1/05febkk55.json new file mode 100644 index 000000000..518f77674 --- /dev/null +++ b/v1.51/v1/05febkk55.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/05febkk55", + "name": "xAI (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://x.ai" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/XAI_%28company%29", + "labels": [ + { + "label": "xAI", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/05fhwtx59.json b/v1.51/v1/05fhwtx59.json new file mode 100644 index 000000000..6c1f2e2e2 --- /dev/null +++ b/v1.51/v1/05fhwtx59.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/05fhwtx59", + "name": "L3Harris (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "L3Harris (Canada)", + "type": "Child", + "id": "https://ror.org/03h7x4635" + }, + { + "label": "L3Harris (Norway)", + "type": "Child", + "id": "https://ror.org/04zypah04" + }, + { + "label": "L3Harris (United Kingdom)", + "type": "Child", + "id": "https://ror.org/00kce5954" + }, + { + "label": "Aerojet Rocketdyne (United States)", + "type": "Child", + "id": "https://ror.org/05p76fn60" + } + ], + "addresses": [ + { + "lat": 28.08363, + "lng": -80.60811, + "state": null, + "state_code": null, + "city": "Melbourne", + "geonames_city": { + "id": 4163971, + "city": "Melbourne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.l3harris.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/L3Harris_Technologies", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016280" + ], + "preferred": "100016280" + }, + "GRID": { + "all": "grid.436907.f", + "preferred": "grid.436907.f" + }, + "Wikidata": { + "all": [ + "Q30291091" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05fs6jp91.json b/v1.51/v1/05fs6jp91.json new file mode 100644 index 000000000..444590ae4 --- /dev/null +++ b/v1.51/v1/05fs6jp91.json @@ -0,0 +1,145 @@ +{ + "id": "https://ror.org/05fs6jp91", + "name": "University of New Mexico", + "email_address": null, + "ip_addresses": [], + "established": 1889, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Sevilleta Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/01qcacz92" + }, + { + "label": "UNM Comprehensive Cancer Center", + "type": "Child", + "id": "https://ror.org/05kx2e072" + }, + { + "label": "New Mexico VA Health Care System", + "type": "Related", + "id": "https://ror.org/04n9z8z70" + }, + { + "label": "University of New Mexico Hospital", + "type": "Related", + "id": "https://ror.org/04skph061" + }, + { + "label": "McMurdo Dry Valleys Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/04r3s7465" + }, + { + "label": "Konza Prairie Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/02wavzm11" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + } + ], + "addresses": [ + { + "lat": 35.08449, + "lng": -106.65114, + "state": null, + "state_code": null, + "city": "Albuquerque", + "geonames_city": { + "id": 5454711, + "city": "Albuquerque", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unm.edu/" + ], + "aliases": [ + "Universitatis Novus Mexico" + ], + "acronyms": [ + "UNM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_New_Mexico", + "labels": [ + { + "label": "Universidad de Nuevo México", + "iso639": "es" + }, + { + "label": "Université du Nouveau-Mexique", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007179", + "100008112", + "100008575", + "100011116", + "100011175" + ], + "preferred": "100007179" + }, + "GRID": { + "all": "grid.266832.b", + "preferred": "grid.266832.b" + }, + "ISNI": { + "all": [ + "0000 0001 2188 8502" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1190812" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05gakfp64.json b/v1.51/v1/05gakfp64.json new file mode 100644 index 000000000..d6c5b01fe --- /dev/null +++ b/v1.51/v1/05gakfp64.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/05gakfp64", + "name": "Asociación Colombiana de Hepatología", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://higadocolombia.org" + ], + "aliases": [], + "acronyms": [ + "ACH" + ], + "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.51/v1/05h3y2073.json b/v1.51/v1/05h3y2073.json new file mode 100644 index 000000000..b50cffb12 --- /dev/null +++ b/v1.51/v1/05h3y2073.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05h3y2073", + "name": "Costco Wholesale (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.5301, + "lng": -122.03262, + "state": null, + "state_code": null, + "city": "Issaquah", + "geonames_city": { + "id": 5798487, + "city": "Issaquah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.costco.com" + ], + "aliases": [ + "Costco", + "Costco Wholesale Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Costco Wholesale", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100028487" + ], + "preferred": "100028487" + }, + "Wikidata": { + "all": [ + "Q715583" + ], + "preferred": "Q715583" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05he76226.json b/v1.51/v1/05he76226.json new file mode 100644 index 000000000..eb49df7f8 --- /dev/null +++ b/v1.51/v1/05he76226.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05he76226", + "name": "Pioneer Natural Resources (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.81402, + "lng": -96.94889, + "state": null, + "state_code": null, + "city": "Irving", + "geonames_city": { + "id": 4700168, + "city": "Irving", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pxd.com" + ], + "aliases": [ + "Pioneer Natural Resources Co", + "Pioneer Natural Resources Company" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pioneer_Natural_Resources", + "labels": [ + { + "label": "Pioneer Natural Resources", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q4046987" + ], + "preferred": "Q4046987" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05hz99a17.json b/v1.51/v1/05hz99a17.json new file mode 100644 index 000000000..e2a0bb054 --- /dev/null +++ b/v1.51/v1/05hz99a17.json @@ -0,0 +1,132 @@ +{ + "id": "https://ror.org/05hz99a17", + "name": "AAU - Ambiances, Architectures, Urbanités", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École Centrale de Nantes", + "type": "Parent", + "id": "https://ror.org/03nh7d505" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "École Nationale Supérieure d'Architecture de Grenoble", + "type": "Parent", + "id": "https://ror.org/01yxtfe92" + }, + { + "label": "École Nationale Supérieure d'Architecture de Nantes", + "type": "Parent", + "id": "https://ror.org/01jq57122" + }, + { + "label": "Ministère de la Culture", + "type": "Parent", + "id": "https://ror.org/017rnyz40" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "National Council for Scientific Research", + "type": "Related", + "id": "https://ror.org/00x9ewr78" + }, + { + "label": "Nantes Université", + "type": "Related", + "id": "https://ror.org/03gnr7b55" + } + ], + "addresses": [ + { + "lat": 47.21725, + "lng": -1.55336, + "state": null, + "state_code": null, + "city": "Nantes", + "geonames_city": { + "id": 2990969, + "city": "Nantes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://aau.archi.fr" + ], + "aliases": [ + "Architectural and Urban Ambiances", + "UMR Ambiances, Architectures, Urbanités" + ], + "acronyms": [ + "AAU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463749.b", + "preferred": "grid.463749.b" + }, + "ISNI": { + "all": [ + "0000 0001 0089 8904" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262148" + ], + "preferred": "Q30262148" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05hzcdx60.json b/v1.51/v1/05hzcdx60.json new file mode 100644 index 000000000..01e6bf334 --- /dev/null +++ b/v1.51/v1/05hzcdx60.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/05hzcdx60", + "name": "Yum! Brands (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.25424, + "lng": -85.75941, + "state": null, + "state_code": null, + "city": "Louisville", + "geonames_city": { + "id": 4299276, + "city": "Louisville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.yum.com" + ], + "aliases": [ + "Tricon Global Restaurants", + "Yum!", + "Yum! Brands Inc", + "Yum! Brands RSC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Yum! Brands", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/05jk8e518.json b/v1.51/v1/05jk8e518.json new file mode 100644 index 000000000..aae5c9e28 --- /dev/null +++ b/v1.51/v1/05jk8e518.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05jk8e518", + "name": "Universidad de Los Lagos", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -40.57395, + "lng": -73.13348, + "state": null, + "state_code": null, + "city": "Osorno", + "geonames_city": { + "id": 3877949, + "city": "Osorno", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ulagos.cl" + ], + "aliases": [ + "University of Los Lagos" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Los_Lagos", + "labels": [], + "country": { + "country_name": "Chile", + "country_code": "CL" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100019702" + ], + "preferred": "501100019702" + }, + "GRID": { + "all": "grid.442234.7", + "preferred": "grid.442234.7" + }, + "ISNI": { + "all": [ + "0000 0001 2295 9069" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7895645" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05jt6pc28.json b/v1.51/v1/05jt6pc28.json new file mode 100644 index 000000000..2f063bfe7 --- /dev/null +++ b/v1.51/v1/05jt6pc28.json @@ -0,0 +1,152 @@ +{ + "id": "https://ror.org/05jt6pc28", + "name": "Somerset Partnership NHS Foundation Trust", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Bridgwater Community Hospital", + "type": "Child", + "id": "https://ror.org/02r609884" + }, + { + "label": "Burnham On Sea War Memorial Hospital", + "type": "Child", + "id": "https://ror.org/04bg06z22" + }, + { + "label": "Crewkerne Community Hospital", + "type": "Child", + "id": "https://ror.org/01z3j1770" + }, + { + "label": "Dene Barton Community Hospital", + "type": "Child", + "id": "https://ror.org/02x2vzy16" + }, + { + "label": "Frome Community Hospital", + "type": "Child", + "id": "https://ror.org/04e3sqx89" + }, + { + "label": "Minehead Community Hospital", + "type": "Child", + "id": "https://ror.org/0333vk137" + }, + { + "label": "Shepton Mallet Community Hospital", + "type": "Child", + "id": "https://ror.org/02xyv8p74" + }, + { + "label": "South Petherton Community Hospital", + "type": "Child", + "id": "https://ror.org/00jz07n34" + }, + { + "label": "Wellington Community Hospital", + "type": "Child", + "id": "https://ror.org/03p8zav06" + }, + { + "label": "West Mendip Community Hospital", + "type": "Child", + "id": "https://ror.org/05v5aya38" + }, + { + "label": "Williton Community Hospital", + "type": "Child", + "id": "https://ror.org/05cwhxn91" + }, + { + "label": "Wincanton Community Hospital", + "type": "Child", + "id": "https://ror.org/02dr9m704" + }, + { + "label": "Somerset NHS Foundation Trust", + "type": "Successor", + "id": "https://ror.org/00abj3t43" + } + ], + "addresses": [ + { + "lat": 51.12837, + "lng": -3.00356, + "state": null, + "state_code": null, + "city": "Bridgwater", + "geonames_city": { + "id": 2654730, + "city": "Bridgwater", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Somerset_Partnership_NHS_Foundation_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.500936.9", + "preferred": "grid.500936.9" + }, + "ISNI": { + "all": [ + "0000 0000 8621 4130" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q17021629" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05kjvvp31.json b/v1.51/v1/05kjvvp31.json new file mode 100644 index 000000000..bca5529ee --- /dev/null +++ b/v1.51/v1/05kjvvp31.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05kjvvp31", + "name": "Travelers Companies (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1853, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.travelers.com" + ], + "aliases": [ + "The Travelers Companies Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Travelers Companies", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 8890 5947" + ], + "preferred": "0000 0000 8890 5947" + }, + "Wikidata": { + "all": [ + "Q942471" + ], + "preferred": "Q942471" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05kpkpg04.json b/v1.51/v1/05kpkpg04.json new file mode 100644 index 000000000..578439137 --- /dev/null +++ b/v1.51/v1/05kpkpg04.json @@ -0,0 +1,246 @@ +{ + "id": "https://ror.org/05kpkpg04", + "name": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Animal, Santé, Territoires, Risques et Ecosystèmes", + "type": "Child", + "id": "https://ror.org/006fhby04" + }, + { + "label": "UMR Botanique et Modélisation de l’Architecture des Plantes et des végétations", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Ecologie des Forêts de Guyane", + "type": "Child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Forests and Societies", + "type": "Child", + "id": "https://ror.org/02pzyz439" + }, + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "Child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Peuplements végétaux et bioagresseurs en milieu tropical", + "type": "Child", + "id": "https://ror.org/03mj14b52" + }, + { + "label": "Systèmes d’élevage méditerranéens et tropicaux", + "type": "Child", + "id": "https://ror.org/05merjr74" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Interactions hotes-vecteurs-parasites-environnement dans les maladies tropicales négligées dues aux trypanosomatides", + "type": "Child", + "id": "https://ror.org/05ye29x39" + }, + { + "label": "Savoirs, Environnement, Sociétés", + "type": "Child", + "id": "https://ror.org/04gpe6h67" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "ABSys", + "type": "Child", + "id": "https://ror.org/00n2c0309" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Agro-écologie et intensification durable des cultures annuelles", + "type": "Child", + "id": "https://ror.org/01hv86c27" + }, + { + "label": "Biomasse, bois, énergie, bio-produits", + "type": "Child", + "id": "https://ror.org/054ktxw16" + }, + { + "label": "Fonctionnement écologique et gestion durable des agrosystèmes bananiers et ananas", + "type": "Child", + "id": "https://ror.org/03zhyf578" + }, + { + "label": "Fonctionnement agroécologique et performances des systèmes de culture horticoles", + "type": "Child", + "id": "https://ror.org/03x53g461" + }, + { + "label": "Recyclage et risque", + "type": "Child", + "id": "https://ror.org/03ze73t75" + }, + { + "label": "Analyses des eaux, sols et végétaux", + "type": "Child", + "id": "https://ror.org/05xk4yb78" + }, + { + "label": "Diversité, adaptation et développement des plantes", + "type": "Child", + "id": "https://ror.org/02banhz78" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cirad.fr" + ], + "aliases": [], + "acronyms": [ + "CIRAD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French Agricultural Research Centre for International Development", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007204", + "100007599" + ], + "preferred": null + }, + "GRID": { + "all": "grid.8183.2", + "preferred": "grid.8183.2" + }, + "ISNI": { + "all": [ + "0000 0001 2153 9871" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945274" + ], + "preferred": "Q2945274" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05mhxe367.json b/v1.51/v1/05mhxe367.json new file mode 100644 index 000000000..56a0a5e95 --- /dev/null +++ b/v1.51/v1/05mhxe367.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05mhxe367", + "name": "Beethoven-Haus Bonn", + "email_address": null, + "ip_addresses": [], + "established": 1889, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.73438, + "lng": 7.09549, + "state": null, + "state_code": null, + "city": "Bonn", + "geonames_city": { + "id": 2946447, + "city": "Bonn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.beethoven.de" + ], + "aliases": [ + "Beethoven House", + "Beethoven House Bonn", + "Beethoven-Haus" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Beethoven_House", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.461642.3", + "preferred": "grid.461642.3" + }, + "ISNI": { + "all": [ + "0000 0001 2353 7095" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05n8t2628.json b/v1.51/v1/05n8t2628.json new file mode 100644 index 000000000..a9ec7fbe8 --- /dev/null +++ b/v1.51/v1/05n8t2628.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05n8t2628", + "name": "University of Washington Tacoma", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Washington", + "type": "Parent", + "id": "https://ror.org/00cvxb145" + } + ], + "addresses": [ + { + "lat": 47.25288, + "lng": -122.44429, + "state": null, + "state_code": null, + "city": "Tacoma", + "geonames_city": { + "id": 5812944, + "city": "Tacoma", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tacoma.uw.edu/" + ], + "aliases": [ + "UW Tacoma" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Washington_Tacoma", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.462984.5", + "preferred": "grid.462984.5" + }, + "ISNI": { + "all": [ + "0000 0000 9494 3202" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7896583" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05nj19v03.json b/v1.51/v1/05nj19v03.json new file mode 100644 index 000000000..8a769f17b --- /dev/null +++ b/v1.51/v1/05nj19v03.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/05nj19v03", + "name": "Center for the Analysis of Sustainable Agricultural Systems", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.91048, + "lng": -122.28025, + "state": null, + "state_code": null, + "city": "Kensington", + "geonames_city": { + "id": 5362849, + "city": "Kensington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.casasglobal.org" + ], + "aliases": [ + "CASAS Global", + "Center for the Analysis of Sustainable Agricultural Systems Global" + ], + "acronyms": [ + "CASAS" + ], + "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.51/v1/05nyp3428.json b/v1.51/v1/05nyp3428.json new file mode 100644 index 000000000..b61f98229 --- /dev/null +++ b/v1.51/v1/05nyp3428.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05nyp3428", + "name": "U.S. Bancorp (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.97997, + "lng": -93.26384, + "state": null, + "state_code": null, + "city": "Minneapolis", + "geonames_city": { + "id": 5037649, + "city": "Minneapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usbank.com" + ], + "aliases": [ + "U.S. Bancorp Asset Management", + "U.S. Bancorp Fund Services" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "U.S. Bancorp", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0629 7050" + ], + "preferred": "0000 0001 0629 7050" + }, + "Wikidata": { + "all": [ + "Q739084" + ], + "preferred": "Q739084" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05p1j8758.json b/v1.51/v1/05p1j8758.json new file mode 100644 index 000000000..005714f8e --- /dev/null +++ b/v1.51/v1/05p1j8758.json @@ -0,0 +1,127 @@ +{ + "id": "https://ror.org/05p1j8758", + "name": "Kansas State University", + "email_address": null, + "ip_addresses": [], + "established": 1863, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Kansas State University Salina Aerospace and Technology Campus", + "type": "Child", + "id": "https://ror.org/02mrpaq42" + }, + { + "label": "Konza Prairie Long Term Ecological Research", + "type": "Child", + "id": "https://ror.org/02wavzm11" + }, + { + "label": "Johnson Cancer Research Center", + "type": "Child", + "id": "https://ror.org/00nffqq91" + }, + { + "label": "McMurdo Dry Valleys Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/04r3s7465" + } + ], + "addresses": [ + { + "lat": 39.18361, + "lng": -96.57167, + "state": null, + "state_code": null, + "city": "Manhattan", + "geonames_city": { + "id": 4274994, + "city": "Manhattan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.k-state.edu/" + ], + "aliases": [ + "K-State" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Kansas_State_University", + "labels": [ + { + "label": "Universidad Estatal de Kansas", + "iso639": "es" + }, + { + "label": "Université d'État du kansas", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007765", + "100007830", + "100007766", + "100007829" + ], + "preferred": "100007765" + }, + "GRID": { + "all": "grid.36567.31", + "preferred": "grid.36567.31" + }, + "ISNI": { + "all": [ + "0000 0001 0737 1259" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q31249" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05p299b07.json b/v1.51/v1/05p299b07.json new file mode 100644 index 000000000..470ff5c66 --- /dev/null +++ b/v1.51/v1/05p299b07.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05p299b07", + "name": "Instituto Tecnológico Superior de Los Reyes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 19.04472, + "lng": -101.57463, + "state": null, + "state_code": null, + "city": "Los Reyes", + "geonames_city": { + "id": 9278760, + "city": "Los Reyes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itslr.edu.mx/2013/" + ], + "aliases": [], + "acronyms": [ + "ITSLR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 1292" + ], + "preferred": "0000 0004 1770 1292" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05p30rt34.json b/v1.51/v1/05p30rt34.json new file mode 100644 index 000000000..b0672b34a --- /dev/null +++ b/v1.51/v1/05p30rt34.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/05p30rt34", + "name": "SGS (Switzerland)", + "email_address": null, + "ip_addresses": [], + "established": 1878, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "SGS (Canada)", + "type": "Child", + "id": "https://ror.org/05w5dvb13" + }, + { + "label": "SGS (China)", + "type": "Child", + "id": "https://ror.org/01gb59s19" + }, + { + "label": "SGS (Czechia)", + "type": "Child", + "id": "https://ror.org/02e72p904" + }, + { + "label": "SGS (France)", + "type": "Child", + "id": "https://ror.org/00stasw52" + }, + { + "label": "SGS (Netherlands)", + "type": "Child", + "id": "https://ror.org/0171vtm86" + }, + { + "label": "SGS (Portugal)", + "type": "Child", + "id": "https://ror.org/02phrtc32" + }, + { + "label": "SGS Germany GmbH (Germany)", + "type": "Child", + "id": "https://ror.org/042phe474" + } + ], + "addresses": [ + { + "lat": 46.20222, + "lng": 6.14569, + "state": null, + "state_code": null, + "city": "Geneva", + "geonames_city": { + "id": 2660646, + "city": "Geneva", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sgs.com/" + ], + "aliases": [ + "General Society of Surveillance" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/SGS_S.A.", + "labels": [ + { + "label": "Société Générale de Surveillance", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.507545.6", + "preferred": "grid.507545.6" + }, + "Wikidata": { + "all": [ + "Q669620" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05p43t846.json b/v1.51/v1/05p43t846.json new file mode 100644 index 000000000..6853e05e0 --- /dev/null +++ b/v1.51/v1/05p43t846.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05p43t846", + "name": "NGimat (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Engi-Mat (United States)", + "type": "Successor", + "id": "https://ror.org/05qkm6m65" + } + ], + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ngimat.com/" + ], + "aliases": [], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.436364.0", + "preferred": "grid.436364.0" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05p5v2j38.json b/v1.51/v1/05p5v2j38.json new file mode 100644 index 000000000..df78fda38 --- /dev/null +++ b/v1.51/v1/05p5v2j38.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05p5v2j38", + "name": "Jane Street (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.janestreet.com" + ], + "aliases": [ + "Jane Street Capital", + "Jane Street Group", + "Jane Street Group LLC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Jane Street", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q17630723" + ], + "preferred": "Q17630723" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05p76fn60.json b/v1.51/v1/05p76fn60.json new file mode 100644 index 000000000..eb6fa25c7 --- /dev/null +++ b/v1.51/v1/05p76fn60.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05p76fn60", + "name": "Aerojet Rocketdyne (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "L3Harris (United States)", + "type": "Parent", + "id": "https://ror.org/05fhwtx59" + } + ], + "addresses": [ + { + "lat": 38.58907, + "lng": -121.30273, + "state": null, + "state_code": null, + "city": "Rancho Cordova", + "geonames_city": { + "id": 5385941, + "city": "Rancho Cordova", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.l3harris.com/company/aerojet-rocketdyne" + ], + "aliases": [ + "Aerojet", + "Aerojet Rocketdyne Holdings" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Aerojet_Rocketdyne", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q381498" + ], + "preferred": "Q381498" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05pdn2z45.json b/v1.51/v1/05pdn2z45.json new file mode 100644 index 000000000..64d594b22 --- /dev/null +++ b/v1.51/v1/05pdn2z45.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05pdn2z45", + "name": "Second Affiliated Hospital of Nantong University", + "email_address": null, + "ip_addresses": [], + "established": 1907, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.03028, + "lng": 120.87472, + "state": null, + "state_code": null, + "city": "Nantong", + "geonames_city": { + "id": 1799722, + "city": "Nantong", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nt2191.com" + ], + "aliases": [ + "Affiliated Hospital 2 of Nantong University", + "Nantong First People’s Hospital", + "第一人民医院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "南通大学第二附属医院", + "iso639": "zh" + }, + { + "label": "南通市第一人民医院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/05pht7q62.json b/v1.51/v1/05pht7q62.json new file mode 100644 index 000000000..1c8339e8d --- /dev/null +++ b/v1.51/v1/05pht7q62.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/05pht7q62", + "name": "Instituto de la Democracia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -0.22985, + "lng": -78.52495, + "state": null, + "state_code": null, + "city": "Quito", + "geonames_city": { + "id": 3652462, + "city": "Quito", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://institutodemocracia.gob.ec" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Ecuador", + "country_code": "EC" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/05pk81s67.json b/v1.51/v1/05pk81s67.json new file mode 100644 index 000000000..bf6b4dc8e --- /dev/null +++ b/v1.51/v1/05pk81s67.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05pk81s67", + "name": "Dish Network (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.64777, + "lng": -104.98776, + "state": null, + "state_code": null, + "city": "Englewood", + "geonames_city": { + "id": 5421250, + "city": "Englewood", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dish.com" + ], + "aliases": [ + "Dish Network Corp", + "Dish Network Corporation", + "Dish Network LLC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Dish Network", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1081 0901" + ], + "preferred": "0000 0005 1081 0901" + }, + "Wikidata": { + "all": [ + "Q12685759" + ], + "preferred": "Q12685759" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05q3vnk25.json b/v1.51/v1/05q3vnk25.json new file mode 100644 index 000000000..b4049cb8e --- /dev/null +++ b/v1.51/v1/05q3vnk25.json @@ -0,0 +1,461 @@ +{ + "id": "https://ror.org/05q3vnk25", + "name": "Institut de Recherche pour le Développement", + "email_address": null, + "ip_addresses": [], + "established": 1937, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "AGroecologies, Innovations & Ruralities", + "type": "Child", + "id": "https://ror.org/01sjmsj73" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "Child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "UMR Botanique et Modélisation de l’Architecture des Plantes et des végétations", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Center for Social Studies on African, American and Asian Worlds", + "type": "Child", + "id": "https://ror.org/03pnk9016" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Diversité, adaptation et développement des plantes", + "type": "Child", + "id": "https://ror.org/02banhz78" + }, + { + "label": "Economic & Social Sciences, Health Systems & Medical Informatics", + "type": "Child", + "id": "https://ror.org/0508wny29" + }, + { + "label": "Institut Universitaire Européen de la Mer", + "type": "Child", + "id": "https://ror.org/04pfr1b11" + }, + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Géoazur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Gouvernance, Risque, Environnement, Développement", + "type": "Child", + "id": "https://ror.org/01h4rra97" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Institut Pythéas Observatoire des Sciences de l’Univers", + "type": "Child", + "id": "https://ror.org/00f945z63" + }, + { + "label": "Institut de Recherche Pour le Développement", + "type": "Child", + "id": "https://ror.org/05kf9jb93" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/051ykjw41" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/044vzpb64" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/015q23935" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/01j4h9t83" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/00bnthp71" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/03xx98n35" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/032qezt74" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institut des Géosciences de l'Environnement", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "Institut de minéralogie, de physique des matériaux et de cosmochimie", + "type": "Child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire des Sciences de l'Environnement Marin", + "type": "Child", + "id": "https://ror.org/05h929866" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratoire HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "Child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Marine Biodiversity Exploitation and Conservation", + "type": "Child", + "id": "https://ror.org/049dk3691" + }, + { + "label": "Institut Méditerranéen de Biodiversité et d'Ecologie Marine et Continentale", + "type": "Child", + "id": "https://ror.org/0409c3995" + }, + { + "label": "Institut Méditerranéen d’Océanologie", + "type": "Child", + "id": "https://ror.org/05258q350" + }, + { + "label": "Mère et Enfant en Milieu Tropical", + "type": "Child", + "id": "https://ror.org/00rd22143" + }, + { + "label": "Pharmacochimie et Pharmacologie pour le Développement", + "type": "Child", + "id": "https://ror.org/03p7xrr08" + }, + { + "label": "Laboratoire Population Environnement Développement", + "type": "Child", + "id": "https://ror.org/017qtjx43" + }, + { + "label": "Centre Population et Développement", + "type": "Child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "Child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Unité de Modélisation Mathématique et Informatique des Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/053kxkj53" + }, + { + "label": "Écologie Marine Tropicale des Océans Pacifique et Indien", + "type": "Child", + "id": "https://ror.org/05kxt4539" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "Child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "Patrimoines locaux, Environnement et Globalisation", + "type": "Child", + "id": "https://ror.org/00mryrd39" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "Child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "Ecosystèmes Insulaires Océaniens", + "type": "Child", + "id": "https://ror.org/001j26r80" + }, + { + "label": "Interactions hotes-vecteurs-parasites-environnement dans les maladies tropicales négligées dues aux trypanosomatides", + "type": "Child", + "id": "https://ror.org/05ye29x39" + }, + { + "label": "UMR Développement et Sociétés", + "type": "Child", + "id": "https://ror.org/00waz9262" + }, + { + "label": "Soutenabilité et Résilence", + "type": "Child", + "id": "https://ror.org/047rqcm40" + }, + { + "label": "Savoirs, Environnement, Sociétés", + "type": "Child", + "id": "https://ror.org/04gpe6h67" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "Observatoire des Sciences de l'Univers de la Réunion", + "type": "Child", + "id": "https://ror.org/05mv3tj33" + }, + { + "label": "Ministère de l'Europe et des Affaires étrangères", + "type": "Parent", + "id": "https://ror.org/00dfd1509" + }, + { + "label": "Ministère de l’Enseignement Supérieur et de la Recherche", + "type": "Parent", + "id": "https://ror.org/03sjk9a61" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://en.ird.fr/" + ], + "aliases": [], + "acronyms": [ + "IRD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_de_recherche_pour_le_d%C3%A9veloppement", + "labels": [ + { + "label": "Institute of Research for Development", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006137", + "100012947" + ], + "preferred": "100012947" + }, + "GRID": { + "all": "grid.4399.7", + "preferred": "grid.4399.7" + }, + "ISNI": { + "all": [ + "0000 0001 2287 9528" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2910510" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05rbj6w12.json b/v1.51/v1/05rbj6w12.json new file mode 100644 index 000000000..d45c2d443 --- /dev/null +++ b/v1.51/v1/05rbj6w12.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05rbj6w12", + "name": "STIKES Muhammadiyah Kuningan", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Universitas Muhammadiyah Kuningan", + "type": "Successor", + "id": "https://ror.org/0526wv466" + } + ], + "addresses": [ + { + "lat": -6.97583, + "lng": 108.48306, + "state": null, + "state_code": null, + "city": "Kuningan", + "geonames_city": { + "id": 1639094, + "city": "Kuningan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "School of Health Sciences Muhammadiyah Kuningan", + "Sekolah Tinggi Ilmu Kesehatan Muhammadiyah Kuningan" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0406 3500" + ], + "preferred": "0000 0004 0406 3500" + }, + "Wikidata": { + "all": [ + "Q109919557" + ], + "preferred": "Q109919557" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05rsgy424.json b/v1.51/v1/05rsgy424.json new file mode 100644 index 000000000..e74f397c1 --- /dev/null +++ b/v1.51/v1/05rsgy424.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/05rsgy424", + "name": "Sysco (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.76328, + "lng": -95.36327, + "state": null, + "state_code": null, + "city": "Houston", + "geonames_city": { + "id": 4699066, + "city": "Houston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sysco.com" + ], + "aliases": [ + "Sysco Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Sysco", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/05sy8fj60.json b/v1.51/v1/05sy8fj60.json new file mode 100644 index 000000000..c9f0a0095 --- /dev/null +++ b/v1.51/v1/05sy8fj60.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/05sy8fj60", + "name": "Anand International College of Engineering", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 26.91962, + "lng": 75.78781, + "state": null, + "state_code": null, + "city": "Jaipur", + "geonames_city": { + "id": 1269515, + "city": "Jaipur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://anandice.ac.in" + ], + "aliases": [ + "Anand ICE" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0809 5152" + ], + "preferred": "0000 0005 0809 5152" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05v1amx46.json b/v1.51/v1/05v1amx46.json new file mode 100644 index 000000000..24b08ff1c --- /dev/null +++ b/v1.51/v1/05v1amx46.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/05v1amx46", + "name": "Hennepin Healthcare Research Institute", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.97997, + "lng": -93.26384, + "state": null, + "state_code": null, + "city": "Minneapolis", + "geonames_city": { + "id": 5037649, + "city": "Minneapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hhrinstitute.org/" + ], + "aliases": [], + "acronyms": [ + "HHRI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100017245" + ], + "preferred": "100017245" + }, + "GRID": { + "all": "grid.512558.e", + "preferred": "grid.512558.e" + }, + "Wikidata": { + "all": [ + "Q108737452" + ], + "preferred": "Q108737452" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05v5aya38.json b/v1.51/v1/05v5aya38.json new file mode 100644 index 000000000..04af3aafd --- /dev/null +++ b/v1.51/v1/05v5aya38.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05v5aya38", + "name": "West Mendip Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.14745, + "lng": -2.72075, + "state": null, + "state_code": null, + "city": "Glastonbury", + "geonames_city": { + "id": 2648559, + "city": "Glastonbury", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sompar.nhs.uk/what-we-do/community-hospitals/west-mendip-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.439705.c", + "preferred": "grid.439705.c" + }, + "Wikidata": { + "all": [ + "Q30293067" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05w630g93.json b/v1.51/v1/05w630g93.json new file mode 100644 index 000000000..7a381f1a2 --- /dev/null +++ b/v1.51/v1/05w630g93.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/05w630g93", + "name": "PG&E Corporation (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pge.com" + ], + "aliases": [ + "Pacific Gas and Electric Company" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pacific_Gas_and_Electric_Company", + "labels": [ + { + "label": "PG&E Corporation", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100022435" + ], + "preferred": "100022435" + }, + "ISNI": { + "all": [ + "0000 0001 1537 0782" + ], + "preferred": "0000 0001 1537 0782" + }, + "Wikidata": { + "all": [ + "Q1815011" + ], + "preferred": "Q1815011" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05w9qrp28.json b/v1.51/v1/05w9qrp28.json new file mode 100644 index 000000000..ebe5a7dcb --- /dev/null +++ b/v1.51/v1/05w9qrp28.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05w9qrp28", + "name": "Modélisation, information et systèmes", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mis.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "MIS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51779982" + ], + "preferred": "Q51779982" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05wcstg80.json b/v1.51/v1/05wcstg80.json new file mode 100644 index 000000000..6b72bcf1e --- /dev/null +++ b/v1.51/v1/05wcstg80.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/05wcstg80", + "name": "National Applied Research Laboratories", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Center for High-Performance Computing", + "type": "Child", + "id": "https://ror.org/01jpzd518" + }, + { + "label": "Taiwan Space Agency", + "type": "Child", + "id": "https://ror.org/03dcxwy38" + }, + { + "label": "National Science and Technology Council", + "type": "Parent", + "id": "https://ror.org/02kv4zf79" + } + ], + "addresses": [ + { + "lat": 25.04776, + "lng": 121.53185, + "state": null, + "state_code": null, + "city": "Taipei", + "geonames_city": { + "id": 1668341, + "city": "Taipei", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.narlabs.org.tw/" + ], + "aliases": [ + "NARLabs" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Applied_Research_Laboratories", + "labels": [ + { + "label": "財團法人國家實驗研究院", + "iso639": "zh" + } + ], + "country": { + "country_name": "Taiwan", + "country_code": "TW" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016292" + ], + "preferred": "100016292" + }, + "GRID": { + "all": "grid.36020.37", + "preferred": "grid.36020.37" + }, + "ISNI": { + "all": [ + "0000 0000 8889 3720" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q15900817", + "Q39765881" + ], + "preferred": "Q15900817" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05xk4yb78.json b/v1.51/v1/05xk4yb78.json new file mode 100644 index 000000000..e1c676ba1 --- /dev/null +++ b/v1.51/v1/05xk4yb78.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05xk4yb78", + "name": "Analyses des eaux, sols et végétaux", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://us-analyses.cirad.fr" + ], + "aliases": [ + "US Analyses", + "Unité de service Analyses" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Water, Soil and Plant Analysis", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/05y5xxp70.json b/v1.51/v1/05y5xxp70.json new file mode 100644 index 000000000..b9082b5c4 --- /dev/null +++ b/v1.51/v1/05y5xxp70.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/05y5xxp70", + "name": "Fundacao Escola Superior da Defensoria Publica do Estado do Rio de Janeiro", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Education" + ], + "relationships": [], + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fesudeperj.org.br" + ], + "aliases": [ + "FESUDEPERJ - Fundacao Escola Superior da Defensoria Publica do Estado do Rio de Janeiro" + ], + "acronyms": [ + "FESUDEPERJ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.51/v1/05yhca997.json b/v1.51/v1/05yhca997.json new file mode 100644 index 000000000..82aed7f6e --- /dev/null +++ b/v1.51/v1/05yhca997.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05yhca997", + "name": "Continental (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1871, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Continental (Germany)", + "type": "Parent", + "id": "https://ror.org/0359s0245" + }, + { + "label": "General Tire (United States)", + "type": "Child", + "id": "https://ror.org/04zxf4256" + } + ], + "addresses": [ + { + "lat": 42.68753, + "lng": -83.2341, + "state": null, + "state_code": null, + "city": "Auburn Hills", + "geonames_city": { + "id": 4984565, + "city": "Auburn Hills", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.conti-online.com/generator/www/us/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Continental_AG", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.471131.1", + "preferred": "grid.471131.1" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05yk70j08.json b/v1.51/v1/05yk70j08.json new file mode 100644 index 000000000..78c1fd07e --- /dev/null +++ b/v1.51/v1/05yk70j08.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05yk70j08", + "name": "Equifax (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.equifax.com" + ], + "aliases": [ + "Equifax, Inc.", + "Talx" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Equifax", + "labels": [ + { + "label": "Equifax", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5384453" + ], + "preferred": "Q5384453" + } + } +} \ No newline at end of file diff --git a/v1.51/v1/05ykp4255.json b/v1.51/v1/05ykp4255.json new file mode 100644 index 000000000..1c0a6c368 --- /dev/null +++ b/v1.51/v1/05ykp4255.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/05ykp4255", + "name": "Epson (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1942, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Seiko (United States)", + "type": "Parent", + "id": "https://ror.org/0512cxv65" + } + ], + "addresses": [ + { + "lat": 33.76696, + "lng": -118.18923, + "state": null, + "state_code": null, + "city": "Long Beach", + "geonames_city": { + "id": 5367929, + "city": "Long Beach", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.epson.com/cgi-bin/Store/jsp/index.do" + ], + "aliases": [ + "Seiko Epson Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Seiko_Epson", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100004370" + ], + "preferred": null + }, + "GRID": { + "all": "grid.467346.4", + "preferred": "grid.467346.4" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0000n5x09.json b/v1.52/v1/0000n5x09.json new file mode 100644 index 000000000..217a2fe8f --- /dev/null +++ b/v1.52/v1/0000n5x09.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/0000n5x09", + "name": "Ingénierie des Agropolymères et Technologies Emergentes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iate-montpellier.fr" + ], + "aliases": [ + "UMR IATE 1208", + "Unité Mixte de Recherche Ingénierie des Agropolymères et Technologies Emergentes" + ], + "acronyms": [ + "IATE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Agropolymer Engineering and Emerging Technologies", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463886.7", + "preferred": "grid.463886.7" + }, + "ISNI": { + "all": [ + "0000 0004 0373 6662" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0001a2m26.json b/v1.52/v1/0001a2m26.json new file mode 100644 index 000000000..22d626e27 --- /dev/null +++ b/v1.52/v1/0001a2m26.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/0001a2m26", + "name": "SUNY Broome Community College", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.09869, + "lng": -75.91797, + "state": null, + "state_code": null, + "city": "Binghamton", + "geonames_city": { + "id": 5109177, + "city": "Binghamton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www1.sunybroome.edu" + ], + "aliases": [ + "Broome Technical Community College", + "SUNY Broome", + "State University of New York Broome Community College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/SUNY_Broome_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010959" + ], + "preferred": "100010959" + }, + "GRID": { + "all": "grid.432701.3", + "preferred": "grid.432701.3" + }, + "ISNI": { + "all": [ + "0000 0001 0634 0848" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4975271" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/000865z52.json b/v1.52/v1/000865z52.json new file mode 100644 index 000000000..623030d65 --- /dev/null +++ b/v1.52/v1/000865z52.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/000865z52", + "name": "Regional Government of Madeira", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.66568, + "lng": -16.92547, + "state": null, + "state_code": null, + "city": "Funchal", + "geonames_city": { + "id": 2267827, + "city": "Funchal", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.madeira.gov.pt" + ], + "aliases": [ + "Regiao Autonoma da Madeira", + "Região Autónoma da Madeira" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Governo Regional da Madeira", + "iso639": "pt" + } + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9451 8468" + ], + "preferred": "0000 0000 9451 8468" + }, + "Wikidata": { + "all": [ + "Q10290774" + ], + "preferred": "Q10290774" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/000cyem11.json b/v1.52/v1/000cyem11.json new file mode 100644 index 000000000..aa0ee18e7 --- /dev/null +++ b/v1.52/v1/000cyem11.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/000cyem11", + "name": "Donald Danforth Plant Science Center", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Taylor Geospatial Institute", + "type": "Related", + "id": "https://ror.org/0573j3j10" + } + ], + "addresses": [ + { + "lat": 38.62727, + "lng": -90.19789, + "state": null, + "state_code": null, + "city": "St Louis", + "geonames_city": { + "id": 4407066, + "city": "St Louis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.danforthcenter.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Donald_Danforth_Plant_Science_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.34424.35", + "preferred": "grid.34424.35" + }, + "ISNI": { + "all": [ + "0000 0004 0466 6352" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5294218" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/000dfsq72.json b/v1.52/v1/000dfsq72.json new file mode 100644 index 000000000..6a5e1593a --- /dev/null +++ b/v1.52/v1/000dfsq72.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/000dfsq72", + "name": "Office for Learning and Teaching", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Department of Education", + "type": "Parent", + "id": "https://ror.org/03z942k20" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.education.gov.au/learning-and-teaching" + ], + "aliases": [], + "acronyms": [ + "OLT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100000932" + ], + "preferred": null + }, + "GRID": { + "all": "grid.453305.4", + "preferred": "grid.453305.4" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/000q6dn27.json b/v1.52/v1/000q6dn27.json new file mode 100644 index 000000000..207597fe8 --- /dev/null +++ b/v1.52/v1/000q6dn27.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/000q6dn27", + "name": "Laboratoire d'anthropologie des enjeux contemporains", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + } + ], + "addresses": [ + { + "lat": 45.73865, + "lng": 4.91303, + "state": null, + "state_code": null, + "city": "Bron", + "geonames_city": { + "id": 3029931, + "city": "Bron", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ladec.univ-lyon2.fr" + ], + "aliases": [], + "acronyms": [ + "LADEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52604586" + ], + "preferred": "Q52604586" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/000twr676.json b/v1.52/v1/000twr676.json new file mode 100644 index 000000000..d868077da --- /dev/null +++ b/v1.52/v1/000twr676.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/000twr676", + "name": "Anaesthetic Research Society", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ars.ac.uk/" + ], + "aliases": [], + "acronyms": [ + "ARS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100000840", + "100014966" + ], + "preferred": "100014966" + }, + "GRID": { + "all": "grid.453287.f", + "preferred": "grid.453287.f" + }, + "ISNI": { + "all": [ + "0000 0004 5900 2916" + ], + "preferred": "0000 0004 5900 2916" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/000y2g343.json b/v1.52/v1/000y2g343.json new file mode 100644 index 000000000..a541c4d62 --- /dev/null +++ b/v1.52/v1/000y2g343.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/000y2g343", + "name": "Azerbaijan State University of Economics", + "email_address": null, + "ip_addresses": [], + "established": 1930, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.37767, + "lng": 49.89201, + "state": null, + "state_code": null, + "city": "Baku", + "geonames_city": { + "id": 587084, + "city": "Baku", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unec.edu.az" + ], + "aliases": [], + "acronyms": [ + "ADIU", + "ASUE", + "UNEC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Azerbaijan_State_University_of_Economics", + "labels": [ + { + "label": "Azərbaycan Dövlət İqtisad Universiteti", + "iso639": "az" + }, + { + "label": "Азербайджанский государственный экономический университет", + "iso639": "ru" + } + ], + "country": { + "country_name": "Azerbaijan", + "country_code": "AZ" + }, + "external_ids": { + "GRID": { + "all": "grid.442884.6", + "preferred": "grid.442884.6" + }, + "ISNI": { + "all": [ + "0000 0004 0451 6135" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2072655" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/001377z89.json b/v1.52/v1/001377z89.json new file mode 100644 index 000000000..d2ed3cb19 --- /dev/null +++ b/v1.52/v1/001377z89.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/001377z89", + "name": "Riverlane (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "River Lane Research", + "type": "Predecessor", + "id": "https://ror.org/00yzkzh74" + } + ], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.riverlane.com" + ], + "aliases": [ + "River Lane Research", + "River Lane Research Ltd", + "Riverlane Ltd" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Riverlane", + "iso639": null + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.510713.1", + "preferred": "grid.510713.1" + }, + "Wikidata": { + "all": [ + "Q90821123" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0014xh077.json b/v1.52/v1/0014xh077.json new file mode 100644 index 000000000..cb2d2696b --- /dev/null +++ b/v1.52/v1/0014xh077.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/0014xh077", + "name": "Centre d’histoire des sociétés Médiévales et Modernes", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris Nanterre", + "type": "Parent", + "id": "https://ror.org/013bkhk48" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + } + ], + "addresses": [ + { + "lat": 48.89198, + "lng": 2.20675, + "state": null, + "state_code": null, + "city": "Nanterre", + "geonames_city": { + "id": 2990970, + "city": "Nanterre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://memo.parisnanterre.fr" + ], + "aliases": [ + "Center for the History of Medieval and Modern Societies" + ], + "acronyms": [ + "MéMo" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/0015qa126.json b/v1.52/v1/0015qa126.json new file mode 100644 index 000000000..5033ac6bc --- /dev/null +++ b/v1.52/v1/0015qa126.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/0015qa126", + "name": "International Centre for Theoretical Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Tata Institute of Fundamental Research", + "type": "Parent", + "id": "https://ror.org/03ht1xw27" + } + ], + "addresses": [ + { + "lat": 12.97194, + "lng": 77.59369, + "state": null, + "state_code": null, + "city": "Bengaluru", + "geonames_city": { + "id": 1277333, + "city": "Bengaluru", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.icts.res.in/" + ], + "aliases": [ + "ICTS Bengaluru" + ], + "acronyms": [ + "ICTS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_Centre_for_Theoretical_Sciences", + "labels": [ + { + "label": "ಸೈದ್ಧಾಂತಿಕ ವಿಜ್ಞಾನ ಅಂತರರಾಷ್ಟ್ರೀಯ ಕೇಂದ್ರ", + "iso639": "kn" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "FundRef": { + "all": [ + "100017167" + ], + "preferred": "100017167" + }, + "GRID": { + "all": "grid.510240.2", + "preferred": "grid.510240.2" + }, + "ISNI": { + "all": [ + "0000 0004 1761 5095" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q14957003" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/001j26r80.json b/v1.52/v1/001j26r80.json new file mode 100644 index 000000000..bb306c1c7 --- /dev/null +++ b/v1.52/v1/001j26r80.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/001j26r80", + "name": "Ecosystèmes Insulaires Océaniens", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "University of French Polynesia", + "type": "Parent", + "id": "https://ror.org/03ay59x86" + }, + { + "label": "Ifremer", + "type": "Parent", + "id": "https://ror.org/044jxhp58" + } + ], + "addresses": [ + { + "lat": -17.55933, + "lng": -149.60352, + "state": null, + "state_code": null, + "city": "Faaa", + "geonames_city": { + "id": 4034561, + "city": "Faaa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umr-eio.com" + ], + "aliases": [], + "acronyms": [ + "EIO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "French Polynesia", + "country_code": "PF" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52605756" + ], + "preferred": "Q52605756" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/001jhv750.json b/v1.52/v1/001jhv750.json new file mode 100644 index 000000000..88006f7db --- /dev/null +++ b/v1.52/v1/001jhv750.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/001jhv750", + "name": "NFDI4Culture", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 49.98419, + "lng": 8.2791, + "state": null, + "state_code": null, + "city": "Mainz", + "geonames_city": { + "id": 2874225, + "city": "Mainz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nfdi4culture.de" + ], + "aliases": [ + "NFDI4Culture - Konsortium für Forschungsdaten zu materiellen und immateriellen Kulturgütern" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/NFDI4Culture", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q98276929" + ], + "preferred": "Q98276929" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/001nw2d36.json b/v1.52/v1/001nw2d36.json new file mode 100644 index 000000000..62ec51090 --- /dev/null +++ b/v1.52/v1/001nw2d36.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/001nw2d36", + "name": "Chandpur Science and Technology University", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.25, + "lng": 90.83333, + "state": null, + "state_code": null, + "city": "Chandpur", + "geonames_city": { + "id": 1337194, + "city": "Chandpur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cstu.ac.bd" + ], + "aliases": [ + "Chandpur Science & Technology University" + ], + "acronyms": [ + "CSTU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Chandpur_Science_and_Technology_University", + "labels": [ + { + "label": "চাঁদপুর বিজ্ঞান ও প্রযুক্তি বিশ্ববিদ্যালয়", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q83839243" + ], + "preferred": "Q83839243" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/001tmjg57.json b/v1.52/v1/001tmjg57.json new file mode 100644 index 000000000..73d69fa14 --- /dev/null +++ b/v1.52/v1/001tmjg57.json @@ -0,0 +1,156 @@ +{ + "id": "https://ror.org/001tmjg57", + "name": "University of Kansas", + "email_address": null, + "ip_addresses": [], + "established": 1865, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "KU Endowment", + "type": "Child", + "id": "https://ror.org/05g3bg079" + }, + { + "label": "Center for Remote Sensing and Integrated Systems", + "type": "Child", + "id": "https://ror.org/04t2m2598" + }, + { + "label": "Children's Mercy Hospital", + "type": "Related", + "id": "https://ror.org/04zfmcq84" + }, + { + "label": "Dwight D. Eisenhower VA Medical Center", + "type": "Related", + "id": "https://ror.org/03jb9b006" + }, + { + "label": "Kansas City VA Medical Center", + "type": "Related", + "id": "https://ror.org/050mdr969" + }, + { + "label": "The University of Kansas Health System", + "type": "Related", + "id": "https://ror.org/05kg11974" + }, + { + "label": "University of Kansas Medical Center", + "type": "Related", + "id": "https://ror.org/036c9yv20" + }, + { + "label": "Wesley Medical Center", + "type": "Related", + "id": "https://ror.org/00ftebr67" + }, + { + "label": "Konza Prairie Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/02wavzm11" + }, + { + "label": "Kansas Geological Survey", + "type": "Child", + "id": "https://ror.org/04mxhn923" + } + ], + "addresses": [ + { + "lat": 38.97167, + "lng": -95.23525, + "state": null, + "state_code": null, + "city": "Lawrence", + "geonames_city": { + "id": 4274277, + "city": "Lawrence", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ku.edu/" + ], + "aliases": [], + "acronyms": [ + "KU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Kansas", + "labels": [ + { + "label": "Universidad de Kansas", + "iso639": "es" + }, + { + "label": "Université du kansas", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007859", + "100006729", + "100005690" + ], + "preferred": "100007859" + }, + "GRID": { + "all": "grid.266515.3", + "preferred": "grid.266515.3" + }, + "ISNI": { + "all": [ + "0000 0001 2106 0692" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q52413" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/001zt9558.json b/v1.52/v1/001zt9558.json new file mode 100644 index 000000000..05ec751ea --- /dev/null +++ b/v1.52/v1/001zt9558.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/001zt9558", + "name": "IPMA Srbija", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ipma.rs" + ], + "aliases": [ + "Serbian Project Management Association - IPMA Serbia", + "Udruženje za upravljanje projektima Srbije - IPMA Srbija" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "IPMA Serbia", + "iso639": "en" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/002q11y83.json b/v1.52/v1/002q11y83.json new file mode 100644 index 000000000..b867e6cb0 --- /dev/null +++ b/v1.52/v1/002q11y83.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/002q11y83", + "name": "Institute For Cancer Vaccine & Immunotherapy", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://icvi.org.uk/" + ], + "aliases": [], + "acronyms": [ + "CVI", + "ICVI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022585" + ], + "preferred": "501100022585" + }, + "GRID": { + "all": "grid.481924.2", + "preferred": "grid.481924.2" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0033j3009.json b/v1.52/v1/0033j3009.json new file mode 100644 index 000000000..33e7d43f9 --- /dev/null +++ b/v1.52/v1/0033j3009.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0033j3009", + "name": "NFDIxCS", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nfdixcs.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Research Data Infrastructure for and with Computer Science", + "iso639": "en" + }, + { + "label": "Nationale Forschungsdateninfrastruktur für und mit Computer Science", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q113501071" + ], + "preferred": "Q113501071" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00357kh21.json b/v1.52/v1/00357kh21.json new file mode 100644 index 000000000..7f258c4e2 --- /dev/null +++ b/v1.52/v1/00357kh21.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00357kh21", + "name": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mivegec.fr" + ], + "aliases": [], + "acronyms": [ + "MIVEGEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462603.5", + "preferred": "grid.462603.5" + }, + "ISNI": { + "all": [ + "0000 0004 0382 3424" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0038zss60.json b/v1.52/v1/0038zss60.json new file mode 100644 index 000000000..c26dc8b44 --- /dev/null +++ b/v1.52/v1/0038zss60.json @@ -0,0 +1,249 @@ +{ + "id": "https://ror.org/0038zss60", + "name": "European Marine Biological Resource Centre", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ghent University", + "type": "Related", + "id": "https://ror.org/00cv9y106" + }, + { + "label": "Flanders Marine Institute", + "type": "Related", + "id": "https://ror.org/0496vr396" + }, + { + "label": "Institute of Natural Sciences", + "type": "Related", + "id": "https://ror.org/02y22ws83" + }, + { + "label": "Hasselt University", + "type": "Related", + "id": "https://ror.org/04nbhqj75" + }, + { + "label": "KU Leuven", + "type": "Related", + "id": "https://ror.org/05f950310" + }, + { + "label": "Universidade de Vigo", + "type": "Related", + "id": "https://ror.org/05rdf8595" + }, + { + "label": "University of the Basque Country", + "type": "Related", + "id": "https://ror.org/000xsnr85" + }, + { + "label": "Universidad de Las Palmas de Gran Canaria", + "type": "Related", + "id": "https://ror.org/01teme464" + }, + { + "label": "Laboratoire d’Océanographie de Villefranche", + "type": "Related", + "id": "https://ror.org/05r5y6641" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Related", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Station Biologique de Roscoff", + "type": "Related", + "id": "https://ror.org/03s0pzj56" + }, + { + "label": "Sorbonne Université", + "type": "Related", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Hellenic Centre for Marine Research", + "type": "Related", + "id": "https://ror.org/038kffh84" + }, + { + "label": "Interuniversity Institute for Marine Sciences in Eilat", + "type": "Related", + "id": "https://ror.org/00pvs0d78" + }, + { + "label": "Stazione Zoologica Anton Dohrn", + "type": "Related", + "id": "https://ror.org/03v5jj203" + }, + { + "label": "University of Padua", + "type": "Related", + "id": "https://ror.org/00240q980" + }, + { + "label": "Università di Camerino", + "type": "Related", + "id": "https://ror.org/0005w8d69" + }, + { + "label": "University of Urbino", + "type": "Related", + "id": "https://ror.org/04q4kt073" + }, + { + "label": "Institute of Marine Science", + "type": "Related", + "id": "https://ror.org/02hdf6119" + }, + { + "label": "National Institute of Oceanography and Applied Geophysics", + "type": "Related", + "id": "https://ror.org/04y4t7k95" + }, + { + "label": "Norwegian Institute of Marine Research", + "type": "Related", + "id": "https://ror.org/05vg74d16" + }, + { + "label": "Norwegian Institute for Water Research", + "type": "Related", + "id": "https://ror.org/03hrf8236" + }, + { + "label": "Nofima", + "type": "Related", + "id": "https://ror.org/02v1rsx93" + }, + { + "label": "Norwegian University of Science and Technology", + "type": "Related", + "id": "https://ror.org/05xg72x27" + }, + { + "label": "University of Bergen", + "type": "Related", + "id": "https://ror.org/03zga2b32" + }, + { + "label": "UiT The Arctic University of Norway", + "type": "Related", + "id": "https://ror.org/00wge5k78" + }, + { + "label": "University of Oslo", + "type": "Related", + "id": "https://ror.org/01xtthb56" + }, + { + "label": "University of Algarve", + "type": "Related", + "id": "https://ror.org/014g34x36" + }, + { + "label": "Universidade do Porto", + "type": "Related", + "id": "https://ror.org/043pwc612" + }, + { + "label": "Institute of Marine Research", + "type": "Related", + "id": "https://ror.org/03r8hgy04" + }, + { + "label": "Centro de Ciências do Mar do Algarve", + "type": "Related", + "id": "https://ror.org/00me37y22" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.embrc.eu" + ], + "aliases": [ + "European Marine Biological Resource Centre - European Research Infrastructure Consortium" + ], + "acronyms": [ + "EMBRC", + "EMBRC-ERIC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100015737" + ], + "preferred": "501100015737" + }, + "ISNI": { + "all": [ + "0000 0004 9226 0431" + ], + "preferred": "0000 0004 9226 0431" + }, + "Wikidata": { + "all": [ + "Q113551509" + ], + "preferred": "Q113551509" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/003ex4g35.json b/v1.52/v1/003ex4g35.json new file mode 100644 index 000000000..ae85f601f --- /dev/null +++ b/v1.52/v1/003ex4g35.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/003ex4g35", + "name": "Gairdner Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.70643, + "lng": -79.39864, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.gairdner.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gairdner_Foundation", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012267" + ], + "preferred": "100012267" + }, + "GRID": { + "all": "grid.475552.4", + "preferred": "grid.475552.4" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/003sscq03.json b/v1.52/v1/003sscq03.json new file mode 100644 index 000000000..51794429d --- /dev/null +++ b/v1.52/v1/003sscq03.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/003sscq03", + "name": "Physiologie et Médecine Expérimentale du Coeur et des Muscles", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Centre Hospitalier Universitaire de Montpellier", + "type": "Parent", + "id": "https://ror.org/00mthsf17" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.phymedexp.com" + ], + "aliases": [], + "acronyms": [ + "PHYMEDEXP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Physiology & Experimental Medicine of the Heart and Muscles", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503383.e", + "preferred": "grid.503383.e" + }, + "ISNI": { + "all": [ + "0000 0004 1778 0103" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51782591" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/003vg9w96.json b/v1.52/v1/003vg9w96.json new file mode 100644 index 000000000..f947dacd0 --- /dev/null +++ b/v1.52/v1/003vg9w96.json @@ -0,0 +1,789 @@ +{ + "id": "https://ror.org/003vg9w96", + "name": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "AgroResonance Platform", + "type": "Child", + "id": "https://ror.org/01wzg9f04" + }, + { + "label": "Agroécologie", + "type": "Child", + "id": "https://ror.org/00mkad321" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "Child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Institut des Sciences des Plantes de Montpellier", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Fonctionnelle Insectes et Interactions", + "type": "Child", + "id": "https://ror.org/03d1jma17" + }, + { + "label": "Biologie des Oiseaux et Aviculture", + "type": "Child", + "id": "https://ror.org/02y3mfk39" + }, + { + "label": "Carnot Institute Qualiment", + "type": "Child", + "id": "https://ror.org/032k75171" + }, + { + "label": "Centre Bourgogne-Franche-Comté", + "type": "Child", + "id": "https://ror.org/002jby155" + }, + { + "label": "Centre Bretagne-Normandie", + "type": "Child", + "id": "https://ror.org/01v6wmk25" + }, + { + "label": "Centre Clermont-Auvergne-Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04aqtsh50" + }, + { + "label": "Centre INRAE Grand-Est - Colmar", + "type": "Child", + "id": "https://ror.org/00zg31r41" + }, + { + "label": "Centre Nouvelle Aquitaine-Bordeaux", + "type": "Child", + "id": "https://ror.org/00tebkv94" + }, + { + "label": "Centre Occitanie-Montpellier", + "type": "Child", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre Occitanie-Toulouse", + "type": "Child", + "id": "https://ror.org/02sxjwh33" + }, + { + "label": "Centre Pays de la Loire", + "type": "Child", + "id": "https://ror.org/020jynt45" + }, + { + "label": "Centre Provence-Alpes-Côte d'Azur", + "type": "Child", + "id": "https://ror.org/03qbdej90" + }, + { + "label": "Centre Régional d’Innovation et de Transferts Technologiques des Industries du Bois", + "type": "Child", + "id": "https://ror.org/016crzw98" + }, + { + "label": "Centre Val de Loire", + "type": "Child", + "id": "https://ror.org/03ntmtb29" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Centre de Corse", + "type": "Child", + "id": "https://ror.org/04hrbdg71" + }, + { + "label": "Centre de Recherche en Nutrition Humaine d'Auvergne", + "type": "Child", + "id": "https://ror.org/03rzyjb72" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "Child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre Île-de-France - Jouy-en-Josas - Antony", + "type": "Child", + "id": "https://ror.org/00gtg0p11" + }, + { + "label": "Centre Île-de-France - Versailles-Grignon", + "type": "Child", + "id": "https://ror.org/02cbapb21" + }, + { + "label": "Dynamique des Génomes et Adaptation Microbienne", + "type": "Child", + "id": "https://ror.org/01gbppd30" + }, + { + "label": "Département Alimentation Humaine", + "type": "Child", + "id": "https://ror.org/00pgyqh43" + }, + { + "label": "Département Biologie et Amélioration des Plantes", + "type": "Child", + "id": "https://ror.org/05r63mf91" + }, + { + "label": "Département Environnement et Agronomie", + "type": "Child", + "id": "https://ror.org/01e7wth34" + }, + { + "label": "Département Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/011emb038" + }, + { + "label": "Département Microbiologie et Chaîne Alimentaire", + "type": "Child", + "id": "https://ror.org/03n4vkw74" + }, + { + "label": "Département Physiologie Animale et Systèmes d’Élevage", + "type": "Child", + "id": "https://ror.org/03tpcfk14" + }, + { + "label": "Département Santé Animale", + "type": "Child", + "id": "https://ror.org/024409k12" + }, + { + "label": "Département Santé des Plantes et Environnement", + "type": "Child", + "id": "https://ror.org/0455v8x20" + }, + { + "label": "Département Sciences pour l’Action et le Développement", + "type": "Child", + "id": "https://ror.org/03vxmn596" + }, + { + "label": "Département Sciences sociales, agriculture et alimentation, espace et environnement", + "type": "Child", + "id": "https://ror.org/012221e05" + }, + { + "label": "Département Génétique Animale", + "type": "Child", + "id": "https://ror.org/029xmsm82" + }, + { + "label": "Département Écologie des Forêts, Prairies et Milieux Aquatiques", + "type": "Child", + "id": "https://ror.org/00yv4p972" + }, + { + "label": "Ecologie des Forêts de Guyane", + "type": "Child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Field Observatory in Urban Hydrology", + "type": "Child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fish Physiology and Genomics Institute", + "type": "Child", + "id": "https://ror.org/04xtaw673" + }, + { + "label": "Fractionnation of AgroResources and Environment", + "type": "Child", + "id": "https://ror.org/00136g547" + }, + { + "label": "Genomics and Biotechnology of the Fruits Laboratory", + "type": "Child", + "id": "https://ror.org/01z0xsq42" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Laboratoire d'Economie Appliquée de Grenoble", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Groupe de Recherche en Droit, Économie, Gestion", + "type": "Child", + "id": "https://ror.org/00rfccx09" + }, + { + "label": "Génétique Animale et Biologie Intégrative", + "type": "Child", + "id": "https://ror.org/03rkgeb39" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Unité de Nutrition Humaine", + "type": "Child", + "id": "https://ror.org/003qhrc72" + }, + { + "label": "Infectiologie Animale et Santé Publique", + "type": "Child", + "id": "https://ror.org/0454zjr22" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "Child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Institut Jean-Pierre Bourgin", + "type": "Child", + "id": "https://ror.org/01wqd6v19" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "Child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut de Génétique, Environnement et Protection des Plantes", + "type": "Child", + "id": "https://ror.org/038kxsm48" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institut de Mécanique et d'Ingénierie", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire CarMeN", + "type": "Child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Biologiques et des Procédés", + "type": "Child", + "id": "https://ror.org/01yypjb30" + }, + { + "label": "Laboratoire de Biotechnologie de l'Environnement", + "type": "Child", + "id": "https://ror.org/022m8c549" + }, + { + "label": "Laboratoire de Génétique Cellulaire", + "type": "Child", + "id": "https://ror.org/05k317v03" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "Child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "Child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Ecologie Microbienne Lyon", + "type": "Child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Nutrition, Obésité et Risque Thrombotique", + "type": "Child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "PhysioPathologie des Adaptations Nutritionnelles", + "type": "Child", + "id": "https://ror.org/05vb5nm66" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "Child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Soil Agro and Hydrosystems Spatialization", + "type": "Child", + "id": "https://ror.org/03k4s1p46" + }, + { + "label": "Institut Cellule Souche et Cerveau", + "type": "Child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Stress Abiotiques et Différenciation des Végétaux Cultivés", + "type": "Child", + "id": "https://ror.org/03wzth680" + }, + { + "label": "TRANSFORM", + "type": "Child", + "id": "https://ror.org/00sxj6k90" + }, + { + "label": "UMR BIOdiversity, GEnes & Communities", + "type": "Child", + "id": "https://ror.org/033ebya06" + }, + { + "label": "UMR Territoires", + "type": "Child", + "id": "https://ror.org/026tc4g97" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "Child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité Mixte de Recherche sur les Herbivores", + "type": "Child", + "id": "https://ror.org/03yvemy54" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "Child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "Unité de Recherche Pluridisciplinaire Prairies et Plantes Fourragères", + "type": "Child", + "id": "https://ror.org/04247y265" + }, + { + "label": "Zone Atelier Moselle", + "type": "Child", + "id": "https://ror.org/016vxbe23" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "Child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "Child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Unité Mixte de Recherche sur les Fromages", + "type": "Child", + "id": "https://ror.org/01xbd2h58" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Agri Obtentions (France)", + "type": "Child", + "id": "https://ror.org/04db8q179" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Centre Alpin sur les Réseaux Trophiques et Ecosystèmes Lacustre", + "type": "Child", + "id": "https://ror.org/037vdeb02" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "Child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "Child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "PAnTher - Physiopathologie Animale et bioThérapie du muscle et du système nerveux", + "type": "Child", + "id": "https://ror.org/05vex5m10" + }, + { + "label": "Biomécanique et Pathologie Locomotrice du Cheval", + "type": "Child", + "id": "https://ror.org/001rmv394" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "Child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "Child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "EMMAH - Environnement Méditerranéen et Modélisation des Agro-Hydrosystèmes", + "type": "Child", + "id": "https://ror.org/048bnmc64" + }, + { + "label": "GESTE - Gestion Territoriale de l'Eau et de l'Environnement", + "type": "Child", + "id": "https://ror.org/00pz29t13" + }, + { + "label": "Laboratoire d'Ecophysiologie Végétale, Agronomie & nutritions N.C.S", + "type": "Child", + "id": "https://ror.org/01s4cye48" + }, + { + "label": "Laboratoire Agronomie et Environnement", + "type": "Child", + "id": "https://ror.org/01dg9a450" + }, + { + "label": "Virologie", + "type": "Child", + "id": "https://ror.org/0318tzh81" + }, + { + "label": "ITAP - Technologies et Méthodes pour les Agricultures de demain", + "type": "Child", + "id": "https://ror.org/00ftatp57" + }, + { + "label": "Ecologie Comportementale et Biologie des Populations de Poissons", + "type": "Child", + "id": "https://ror.org/02brsbg31" + }, + { + "label": "Dynamiques et écologie des paysages agriforestiers", + "type": "Child", + "id": "https://ror.org/04wa4se75" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Biologie Epidémiologie et Analyse de Risque en santé animale", + "type": "Child", + "id": "https://ror.org/059h64789" + }, + { + "label": "Structures et Marchés Agricoles, Ressources et Territoires", + "type": "Child", + "id": "https://ror.org/04fa3ke77" + }, + { + "label": "Observatoire de Recherche Montpelliérain de l'Environnement OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Centre de Recherche Épidémiologie et Statistique", + "type": "Child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "Child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "Épidémiologie des maladies Animales et zoonotiques", + "type": "Child", + "id": "https://ror.org/03e04sg66" + }, + { + "label": "Unité Mixte de Recherche sur l'Ecosystème Prairial", + "type": "Child", + "id": "https://ror.org/02c3c9255" + }, + { + "label": "Biodiversité, Agroécologie et Aménagement du Paysage", + "type": "Child", + "id": "https://ror.org/04byv8g40" + }, + { + "label": "Biologie intégrée pour la valorisation de la diversité des arbres et de la forêt", + "type": "Child", + "id": "https://ror.org/04f6qd925" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Innovations thérapeutiques et résistances", + "type": "Child", + "id": "https://ror.org/01shz5j60" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "Child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "Child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Unité de Recherche Agrosystèmes tropicaux", + "type": "Child", + "id": "https://ror.org/00vxck708" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Etude et Compréhension de la biodiversité", + "type": "Child", + "id": "https://ror.org/042w6m452" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "ABSys", + "type": "Child", + "id": "https://ror.org/00n2c0309" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "Child", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "Laboratoire EcoSystèmes et Sociétés En Montagne", + "type": "Child", + "id": "https://ror.org/01a0ez112" + }, + { + "label": "Groupe de Recherche en Management", + "type": "Child", + "id": "https://ror.org/023cs7p87" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Genetic Improvement and Adaptation of Mediterranean and Tropical Plants", + "type": "Child", + "id": "https://ror.org/02w4exq36" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inrae.fr/" + ], + "aliases": [], + "acronyms": [ + "INRAE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Research Institute for Agriculture, Food and Environment", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022077" + ], + "preferred": "501100022077" + }, + "GRID": { + "all": "grid.507621.7", + "preferred": "grid.507621.7" + }, + "Wikidata": { + "all": [ + "Q70571774" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0041qmd21.json b/v1.52/v1/0041qmd21.json new file mode 100644 index 000000000..63ae68929 --- /dev/null +++ b/v1.52/v1/0041qmd21.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/0041qmd21", + "name": "SUNY Downstate Health Sciences University", + "email_address": null, + "ip_addresses": [], + "established": 1860, + "types": [ + "Education", + "Healthcare" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Brookdale University Hospital and Medical Center", + "type": "Related", + "id": "https://ror.org/0065vkd37" + }, + { + "label": "Kingsbrook Jewish Medical Center", + "type": "Related", + "id": "https://ror.org/03dp8bn13" + } + ], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.downstate.edu" + ], + "aliases": [ + "Downstate Health Sciences", + "SUNY Downstate Medical Center", + "State University of New York Downstate Health Sciences University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/SUNY_Downstate_Medical_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100009740" + ], + "preferred": null + }, + "GRID": { + "all": "grid.262863.b", + "preferred": "grid.262863.b" + }, + "ISNI": { + "all": [ + "0000 0001 0693 2202" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3246712" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/004hyqr12.json b/v1.52/v1/004hyqr12.json new file mode 100644 index 000000000..d4b4af5ec --- /dev/null +++ b/v1.52/v1/004hyqr12.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/004hyqr12", + "name": "Suffolk County Community College", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 40.86649, + "lng": -73.03566, + "state": null, + "state_code": null, + "city": "Selden", + "geonames_city": { + "id": 5137600, + "city": "Selden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunysuffolk.edu" + ], + "aliases": [ + "SUNY Suffolk County Community College", + "State University of New York Suffolk County Community College" + ], + "acronyms": [ + "SCCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Suffolk_County_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.422669.d", + "preferred": "grid.422669.d" + }, + "ISNI": { + "all": [ + "0000 0000 9542 923X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7634547" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/004raaa70.json b/v1.52/v1/004raaa70.json new file mode 100644 index 000000000..4e1b08d3f --- /dev/null +++ b/v1.52/v1/004raaa70.json @@ -0,0 +1,193 @@ +{ + "id": "https://ror.org/004raaa70", + "name": "Université de Toulouse", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Toulouse-I-Capitole", + "type": "Child", + "id": "https://ror.org/0443n9e75" + }, + { + "label": "Université Toulouse - Jean Jaurès", + "type": "Child", + "id": "https://ror.org/04ezk3x31" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "Child", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "Institut National Polytechnique de Toulouse", + "type": "Child", + "id": "https://ror.org/033p9g875" + }, + { + "label": "Institut National des Sciences Appliquées de Toulouse", + "type": "Child", + "id": "https://ror.org/01h8pf755" + }, + { + "label": "Institut Superieur de l'Aeronautique et de l'Espace (ISAE-SUPAERO)", + "type": "Child", + "id": "https://ror.org/04gyj6s21" + }, + { + "label": "Centre Universitaire Jean-François-Champollion", + "type": "Child", + "id": "https://ror.org/03078mv10" + }, + { + "label": "École Nationale de l’Aviation Civile", + "type": "Child", + "id": "https://ror.org/022zdgq74" + }, + { + "label": "École Nationale d'Ingénieurs de Tarbes", + "type": "Child", + "id": "https://ror.org/01fdvj254" + }, + { + "label": "École Nationale Supérieure d'Architecture de Toulouse", + "type": "Child", + "id": "https://ror.org/019xp4858" + }, + { + "label": "École Nationale Vétérinaire de Toulouse", + "type": "Child", + "id": "https://ror.org/03m3gzv89" + }, + { + "label": "École Nationale Supérieure de Formation de l’Enseignement Agricole", + "type": "Child", + "id": "https://ror.org/03ac68784" + }, + { + "label": "Institut Catholique d'Arts et Métiers", + "type": "Child", + "id": "https://ror.org/04155vc40" + }, + { + "label": "IMT Mines Albi", + "type": "Child", + "id": "https://ror.org/00bq8vv83" + }, + { + "label": "École Supérieure de Commerce de Toulouse", + "type": "Child", + "id": "https://ror.org/0349y2q65" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "Child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "CALMIP", + "type": "Child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Développement Embryonnaire, Fertilité et Environnement", + "type": "Child", + "id": "https://ror.org/019v7sr25" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-toulouse.fr" + ], + "aliases": [ + "Federal University of Toulouse Midi-Pyrénées", + "Université Fédérale de Toulouse Midi-Pyrénées" + ], + "acronyms": [ + "UFTMP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_University_of_Toulouse_Midi-Pyr%C3%A9n%C3%A9es", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004718" + ], + "preferred": "501100004718" + }, + "GRID": { + "all": "grid.508721.9", + "preferred": "grid.508721.9" + }, + "ISNI": { + "all": [ + "0000 0001 2353 1689" + ], + "preferred": "0000 0001 2353 1689" + }, + "Wikidata": { + "all": [ + "Q20669873" + ], + "preferred": "Q20669873" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/004v39231.json b/v1.52/v1/004v39231.json new file mode 100644 index 000000000..75ca9ddb1 --- /dev/null +++ b/v1.52/v1/004v39231.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/004v39231", + "name": "Universidad Multitecnica Profesional", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.13333, + "lng": -103.9, + "state": null, + "state_code": null, + "city": "Colima", + "geonames_city": { + "id": 4013513, + "city": "Colima", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ump.edu.mx" + ], + "aliases": [], + "acronyms": [ + "UMP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/004zhad81.json b/v1.52/v1/004zhad81.json new file mode 100644 index 000000000..d63f51e3e --- /dev/null +++ b/v1.52/v1/004zhad81.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/004zhad81", + "name": "Know Center Research GmbH (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.06667, + "lng": 15.45, + "state": null, + "state_code": null, + "city": "Graz", + "geonames_city": { + "id": 2778067, + "city": "Graz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.know-center.at" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Know Center", + "iso639": "en" + }, + { + "label": "Know Center GmbH", + "iso639": "en" + }, + { + "label": "Know Center Research GmbH", + "iso639": "en" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "GRID": { + "all": "grid.425625.2", + "preferred": "grid.425625.2" + }, + "ISNI": { + "all": [ + "0000 0001 2177 4126" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0055acf80.json b/v1.52/v1/0055acf80.json new file mode 100644 index 000000000..8a939d297 --- /dev/null +++ b/v1.52/v1/0055acf80.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/0055acf80", + "name": "Blood Cancer UK", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bloodcancer.org.uk/" + ], + "aliases": [ + "Bloodwise", + "Leukaemia & Lymphoma Research", + "The Leukaemia Research Fund" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Blood_Cancer_UK", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007903", + "501100000651", + "100009378", + "501100015570", + "501100000328" + ], + "preferred": "501100000328" + }, + "GRID": { + "all": "grid.453095.e", + "preferred": "grid.453095.e" + }, + "ISNI": { + "all": [ + "0000 0004 0623 6671" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16996206" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/005bk2339.json b/v1.52/v1/005bk2339.json new file mode 100644 index 000000000..465f47ec7 --- /dev/null +++ b/v1.52/v1/005bk2339.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/005bk2339", + "name": "Max Planck Institute for Solid State Research", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Center for Integrated Quantum Science and Technology", + "type": "Child", + "id": "https://ror.org/01z25am55" + }, + { + "label": "Max Planck Institutes for Intelligent Systems & Solid State Research Library", + "type": "Child", + "id": "https://ror.org/010c2rf19" + }, + { + "label": "Max Planck Society", + "type": "Parent", + "id": "https://ror.org/01hhn8329" + } + ], + "addresses": [ + { + "lat": 48.78232, + "lng": 9.17702, + "state": null, + "state_code": null, + "city": "Stuttgart", + "geonames_city": { + "id": 2825297, + "city": "Stuttgart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.fkf.mpg.de/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Max_Planck_Institute_for_Solid_State_Research", + "labels": [ + { + "label": "Max-Planck-Institut für Festkörperforschung", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.419552.e", + "preferred": "grid.419552.e" + }, + "ISNI": { + "all": [ + "0000 0001 1015 6736" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q835529" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/005k7hp45.json b/v1.52/v1/005k7hp45.json new file mode 100644 index 000000000..456ad9e9a --- /dev/null +++ b/v1.52/v1/005k7hp45.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/005k7hp45", + "name": "Medical University of Silesia", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Górnośląskie Centrum Medyczne", + "type": "Related", + "id": "https://ror.org/0110em457" + }, + { + "label": "Kingsbrook Jewish Medical Center", + "type": "Related", + "id": "https://ror.org/03dp8bn13" + }, + { + "label": "Górnośląskie Centrum Zdrowia Dziecka w Katowicach", + "type": "Related", + "id": "https://ror.org/00f5hjx88" + } + ], + "addresses": [ + { + "lat": 50.25841, + "lng": 19.02754, + "state": null, + "state_code": null, + "city": "Katowice", + "geonames_city": { + "id": 3096472, + "city": "Katowice", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sum.edu.pl/" + ], + "aliases": [ + "Śląski Uniwersytet Medyczny" + ], + "acronyms": [ + "SUM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Medical_University_of_Silesia", + "labels": [ + { + "label": "Śląski Uniwersytet Medyczny w Katowicach", + "iso639": "pl" + } + ], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007771", + "501100010252" + ], + "preferred": "501100010252" + }, + "GRID": { + "all": "grid.411728.9", + "preferred": "grid.411728.9" + }, + "ISNI": { + "all": [ + "0000 0001 2198 0923" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2239217" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/005w2mm89.json b/v1.52/v1/005w2mm89.json new file mode 100644 index 000000000..c47a0621c --- /dev/null +++ b/v1.52/v1/005w2mm89.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/005w2mm89", + "name": "Laboratoire d'études de genre et de sexualité", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris Nanterre", + "type": "Parent", + "id": "https://ror.org/013bkhk48" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.81568, + "lng": 2.38487, + "state": null, + "state_code": null, + "city": "Ivry-sur-Seine", + "geonames_city": { + "id": 3012621, + "city": "Ivry-sur-Seine", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://legs.cnrs.fr" + ], + "aliases": [ + "Gender and Sexuality Studies Laboratory" + ], + "acronyms": [ + "LEGS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/00637yt37.json b/v1.52/v1/00637yt37.json new file mode 100644 index 000000000..bb61fdd69 --- /dev/null +++ b/v1.52/v1/00637yt37.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00637yt37", + "name": "Niagara County Community College", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 43.13672, + "lng": -78.88476, + "state": null, + "state_code": null, + "city": "Sanborn", + "geonames_city": { + "id": 5136177, + "city": "Sanborn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.niagaracc.suny.edu" + ], + "aliases": [ + "SUNY Niagara County Community College", + "State University of New York Niagara County Community College" + ], + "acronyms": [ + "NCCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Niagara_County_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.427164.2", + "preferred": "grid.427164.2" + }, + "ISNI": { + "all": [ + "0000 0000 8930 3497" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7023609" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0065vkd37.json b/v1.52/v1/0065vkd37.json new file mode 100644 index 000000000..ad72f8193 --- /dev/null +++ b/v1.52/v1/0065vkd37.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/0065vkd37", + "name": "Brookdale University Hospital and Medical Center", + "email_address": null, + "ip_addresses": [], + "established": 1921, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "New York Institute of Technology", + "type": "Related", + "id": "https://ror.org/01bghzb51" + }, + { + "label": "New York Medical College", + "type": "Related", + "id": "https://ror.org/03dkvy735" + }, + { + "label": "New York University", + "type": "Related", + "id": "https://ror.org/0190ak572" + }, + { + "label": "SUNY Downstate Health Sciences University", + "type": "Related", + "id": "https://ror.org/0041qmd21" + } + ], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.brookdalehospital.org/home.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Brookdale_University_Hospital_and_Medical_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.287625.c", + "preferred": "grid.287625.c" + }, + "ISNI": { + "all": [ + "0000 0004 0381 2434" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4974388" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0067dvq63.json b/v1.52/v1/0067dvq63.json new file mode 100644 index 000000000..c367c0222 --- /dev/null +++ b/v1.52/v1/0067dvq63.json @@ -0,0 +1,166 @@ +{ + "id": "https://ror.org/0067dvq63", + "name": "Government of New South Wales", + "email_address": null, + "ip_addresses": [], + "established": 1856, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "NSW Department of Communities and Justice", + "type": "Child", + "id": "https://ror.org/05dmpdy49" + }, + { + "label": "NSW Department of Education", + "type": "Child", + "id": "https://ror.org/05nne8c43" + }, + { + "label": "NSW Forestry Corporation", + "type": "Child", + "id": "https://ror.org/029r1ks56" + }, + { + "label": "Legal Aid New South Wales", + "type": "Child", + "id": "https://ror.org/0156h1p41" + }, + { + "label": "Nambucca Shire Council", + "type": "Child", + "id": "https://ror.org/026z8zb87" + }, + { + "label": "New South Wales Department of Health", + "type": "Child", + "id": "https://ror.org/03tb4gf50" + }, + { + "label": "New South Wales Department of Primary Industries", + "type": "Child", + "id": "https://ror.org/050khh066" + }, + { + "label": "NSW Roads and Maritime Services", + "type": "Child", + "id": "https://ror.org/01j72sa23" + }, + { + "label": "Sydney Local Health District", + "type": "Child", + "id": "https://ror.org/04w6y2z35" + }, + { + "label": "Sydney Water", + "type": "Child", + "id": "https://ror.org/04yhf7405" + }, + { + "label": "Tweed Shire Council", + "type": "Child", + "id": "https://ror.org/00b6zxk24" + }, + { + "label": "NSW Department of Climate Change, Energy, the Environment and Water", + "type": "Child", + "id": "https://ror.org/038pwz535" + }, + { + "label": "NSW Department of Planning, Housing and Infrastructure", + "type": "Child", + "id": "https://ror.org/00a7xgz80" + }, + { + "label": "Anzac Research Institute", + "type": "Child", + "id": "https://ror.org/05kf27764" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nsw.gov.au/" + ], + "aliases": [ + "NSW Government", + "New South Wales Government" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Government_of_New_South_Wales", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100021708" + ], + "preferred": "501100021708" + }, + "GRID": { + "all": "grid.484530.e", + "preferred": "grid.484530.e" + }, + "ISNI": { + "all": [ + "0000 0004 0606 2819" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3112564" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0068dme40.json b/v1.52/v1/0068dme40.json new file mode 100644 index 000000000..996fc0780 --- /dev/null +++ b/v1.52/v1/0068dme40.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0068dme40", + "name": "Jamestown Community College", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.097, + "lng": -79.23533, + "state": null, + "state_code": null, + "city": "Jamestown", + "geonames_city": { + "id": 5122534, + "city": "Jamestown", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunyjcc.edu" + ], + "aliases": [ + "SUNY Jamestown Community College", + "State University of New York Jamestown Community College" + ], + "acronyms": [ + "JCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Jamestown_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.507862.e", + "preferred": "grid.507862.e" + }, + "ISNI": { + "all": [ + "0000 0000 8683 249X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6146214" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/006xg2x43.json b/v1.52/v1/006xg2x43.json new file mode 100644 index 000000000..395628774 --- /dev/null +++ b/v1.52/v1/006xg2x43.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/006xg2x43", + "name": "Liceo scientifico statale Ulisse Dini", + "email_address": null, + "ip_addresses": [], + "established": 1924, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.70853, + "lng": 10.4036, + "state": null, + "state_code": null, + "city": "Pisa", + "geonames_city": { + "id": 3170647, + "city": "Pisa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.liceodini.it" + ], + "aliases": [ + "Liceo Dini", + "Liceo Scientifico \"Ulisse Dini\"", + "Liceo Scientifico 'Ulisse Dini' - Pisa", + "Liceo Scientifico Ulisse Dini", + "U. Dini" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://it.wikipedia.org/wiki/Liceo_scientifico_statale_Ulisse_Dini", + "labels": [ + { + "label": "Ulisse Dini Scientific High School", + "iso639": "en" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q30889474" + ], + "preferred": "Q30889474" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/006zfjs50.json b/v1.52/v1/006zfjs50.json new file mode 100644 index 000000000..892192f0f --- /dev/null +++ b/v1.52/v1/006zfjs50.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/006zfjs50", + "name": "Forschungsanstalt für Waldökologie und Forstwirtschaft Rheinland-Pfalz", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.35935, + "lng": 7.7748, + "state": null, + "state_code": null, + "city": "Trippstadt", + "geonames_city": { + "id": 2821099, + "city": "Trippstadt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fawf.wald.rlp.de" + ], + "aliases": [ + "Research Institute for Forest Ecology and Forestry Rhineland-Palatinate" + ], + "acronyms": [ + "FAWF" + ], + "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.52/v1/00721wn77.json b/v1.52/v1/00721wn77.json new file mode 100644 index 000000000..c4fadcbcb --- /dev/null +++ b/v1.52/v1/00721wn77.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/00721wn77", + "name": "Les Afriques dans le Monde", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Sciences Po Bordeaux", + "type": "Parent", + "id": "https://ror.org/01b5nw197" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Bordeaux Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + }, + { + "label": "Université de Pau et des Pays de l'Adour", + "type": "Parent", + "id": "https://ror.org/01frn9647" + } + ], + "addresses": [ + { + "lat": 44.80565, + "lng": -0.6324, + "state": null, + "state_code": null, + "city": "Pessac", + "geonames_city": { + "id": 2987805, + "city": "Pessac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lam.sciencespobordeaux.fr/en" + ], + "aliases": [], + "acronyms": [ + "LAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503361.2", + "preferred": "grid.503361.2" + }, + "ISNI": { + "all": [ + "0000 0001 2108 5419" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q20723027" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/007bw2y16.json b/v1.52/v1/007bw2y16.json new file mode 100644 index 000000000..d226b03d9 --- /dev/null +++ b/v1.52/v1/007bw2y16.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/007bw2y16", + "name": "Santé, Education et Situations de Handicap", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umontpellier.fr/recherche/unites-de-recherche/pole-sciences-sociales/sante-education-et-situations-de-handicap-santesih" + ], + "aliases": [ + "SantESiH", + "Santé Education Situations de Handicap" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/007dbrz84.json b/v1.52/v1/007dbrz84.json new file mode 100644 index 000000000..285aab029 --- /dev/null +++ b/v1.52/v1/007dbrz84.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/007dbrz84", + "name": "Geo-Ocean", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Bretagne Occidentale", + "type": "Parent", + "id": "https://ror.org/01b8h3982" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Ifremer", + "type": "Parent", + "id": "https://ror.org/044jxhp58" + } + ], + "addresses": [ + { + "lat": 48.38131, + "lng": -4.61805, + "state": null, + "state_code": null, + "city": "Plouzané", + "geonames_city": { + "id": 2986626, + "city": "Plouzané", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.geo-ocean.fr" + ], + "aliases": [ + "Laboratoire Géosciences Océan" + ], + "acronyms": [ + "LGO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782367" + ], + "preferred": "Q51782367" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/007dy3y92.json b/v1.52/v1/007dy3y92.json new file mode 100644 index 000000000..1040bc561 --- /dev/null +++ b/v1.52/v1/007dy3y92.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/007dy3y92", + "name": "Institut d'Asie Orientale", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Sciences Po Lyon", + "type": "Parent", + "id": "https://ror.org/02h3vcz70" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iao.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "IAO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Lyons Institute of East Asian Studies", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462343.4", + "preferred": "grid.462343.4" + }, + "ISNI": { + "all": [ + "0000 0001 2190 6600" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/007kf5222.json b/v1.52/v1/007kf5222.json new file mode 100644 index 000000000..58760bf80 --- /dev/null +++ b/v1.52/v1/007kf5222.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/007kf5222", + "name": "Centro Universitário FEI", + "email_address": null, + "ip_addresses": [], + "established": 1941, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -23.69389, + "lng": -46.565, + "state": null, + "state_code": null, + "city": "São Bernardo do Campo", + "geonames_city": { + "id": 3449344, + "city": "São Bernardo do Campo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://portal.fei.edu.br" + ], + "aliases": [ + "Centro Universitário da FEI", + "Faculty of Industrial Engineering", + "Faculty of Information Technology", + "Superior School of Business Administration" + ], + "acronyms": [ + "ESAN", + "FCI", + "FEI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Centro_Universit%C3%A1rio_da_FEI", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100017232" + ], + "preferred": "100017232" + }, + "GRID": { + "all": "grid.440589.4", + "preferred": "grid.440589.4" + }, + "ISNI": { + "all": [ + "0000 0000 8607 7447" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16836504" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/007ptm460.json b/v1.52/v1/007ptm460.json new file mode 100644 index 000000000..b43998e5f --- /dev/null +++ b/v1.52/v1/007ptm460.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/007ptm460", + "name": "Badan Strategi Kebijakan Dalam Negeri", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of Home Affairs", + "type": "Parent", + "id": "https://ror.org/047sfm294" + } + ], + "addresses": [ + { + "lat": -6.21462, + "lng": 106.84513, + "state": null, + "state_code": null, + "city": "Jakarta", + "geonames_city": { + "id": 1642911, + "city": "Jakarta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bskdn.kemendagri.go.id" + ], + "aliases": [ + "Badan Strategi Kebijakan Dalam Negeri Kementerian Dalam Negeri", + "Domestic Policy Strategy Agency", + "Domestic Policy Strategy Agency of the Ministry of Home Affairs of the Republic of Indonesia" + ], + "acronyms": [ + "BSKDN" + ], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Badan_Strategi_Kebijakan_Dalam_Negeri", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q126923270" + ], + "preferred": "Q126923270" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/008eg1b26.json b/v1.52/v1/008eg1b26.json new file mode 100644 index 000000000..f25df6d25 --- /dev/null +++ b/v1.52/v1/008eg1b26.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/008eg1b26", + "name": "Instituto Tecnológico Superior de Perote", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 19.54277, + "lng": -97.25833, + "state": null, + "state_code": null, + "city": "Perote", + "geonames_city": { + "id": 8583773, + "city": "Perote", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://perote.tecnm.mx" + ], + "aliases": [ + "Tec Perote", + "Tecnológico Nacional de México campus Perote" + ], + "acronyms": [ + "ITSPe" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 176X" + ], + "preferred": "0000 0004 1770 176X" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/008p7mq56.json b/v1.52/v1/008p7mq56.json new file mode 100644 index 000000000..464c672de --- /dev/null +++ b/v1.52/v1/008p7mq56.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/008p7mq56", + "name": "Équipe Monde Arabe Méditerranée", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "CItés, Territoires, Environnement et Sociétés", + "type": "Parent", + "id": "https://ror.org/04ahza989" + } + ], + "addresses": [ + { + "lat": 47.39484, + "lng": 0.70398, + "state": null, + "state_code": null, + "city": "Tours", + "geonames_city": { + "id": 2972191, + "city": "Tours", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://citeres.univ-tours.fr/emam/" + ], + "aliases": [], + "acronyms": [ + "EMAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463838.2", + "preferred": "grid.463838.2" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/008qs6838.json b/v1.52/v1/008qs6838.json new file mode 100644 index 000000000..db60f1f67 --- /dev/null +++ b/v1.52/v1/008qs6838.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/008qs6838", + "name": "Mécanismes moléculaires dans les démences neurodégénératives", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mmdn.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "MMDN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Molecular Mechanisms in Neurodegenerative Diseases", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780329" + ], + "preferred": "Q51780329" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/008stv805.json b/v1.52/v1/008stv805.json new file mode 100644 index 000000000..7df4d61e3 --- /dev/null +++ b/v1.52/v1/008stv805.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/008stv805", + "name": "University of the South Pacific", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of the South Pacific - Samoa Campus", + "type": "Child", + "id": "https://ror.org/03be9n013" + }, + { + "label": "University of the South Pacific - Solomon Islands Campus", + "type": "Child", + "id": "https://ror.org/001vq2a15" + }, + { + "label": "University of the South Pacific - Emalus Campus", + "type": "Child", + "id": "https://ror.org/01n0nt715" + } + ], + "addresses": [ + { + "lat": -18.13683, + "lng": 178.42531, + "state": null, + "state_code": null, + "city": "Suva", + "geonames_city": { + "id": 2198148, + "city": "Suva", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usp.ac.fj/" + ], + "aliases": [], + "acronyms": [ + "USP" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_the_South_Pacific", + "labels": [], + "country": { + "country_name": "Fiji", + "country_code": "FJ" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018226" + ], + "preferred": "100018226" + }, + "GRID": { + "all": "grid.33998.38", + "preferred": "grid.33998.38" + }, + "ISNI": { + "all": [ + "0000 0001 2171 4027" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1062121" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/008td3p62.json b/v1.52/v1/008td3p62.json new file mode 100644 index 000000000..2a6ea4056 --- /dev/null +++ b/v1.52/v1/008td3p62.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/008td3p62", + "name": "Institute for Cosmic Ray Research", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "KAGRA", + "type": "Child", + "id": "https://ror.org/033tx3651" + }, + { + "label": "The University of Tokyo", + "type": "Parent", + "id": "https://ror.org/057zh3y96" + }, + { + "label": "National Astronomical Observatory of Japan", + "type": "Parent", + "id": "https://ror.org/052rrw050" + }, + { + "label": "High Energy Accelerator Research Organization", + "type": "Parent", + "id": "https://ror.org/01g5y5k24" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.icrr.u-tokyo.ac.jp" + ], + "aliases": [], + "acronyms": [ + "ICRR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_for_Cosmic_Ray_Research", + "labels": [ + { + "label": "東京大学宇宙線研究所", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100013260" + ], + "preferred": "501100013260" + }, + "ISNI": { + "all": [ + "0000 0001 2202 0385" + ], + "preferred": "0000 0001 2202 0385" + }, + "Wikidata": { + "all": [ + "Q4966582" + ], + "preferred": "Q4966582" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/008tr1381.json b/v1.52/v1/008tr1381.json new file mode 100644 index 000000000..93e4a63a6 --- /dev/null +++ b/v1.52/v1/008tr1381.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/008tr1381", + "name": "Les Roches International School of Hotel Management", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Les Roches Marbella International School of Hotel Management", + "type": "Related", + "id": "https://ror.org/05n2vpf20" + } + ], + "addresses": [ + { + "lat": 46.31316, + "lng": 7.47914, + "state": null, + "state_code": null, + "city": "Crans-Montana", + "geonames_city": { + "id": 6559506, + "city": "Crans-Montana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lesroches.edu" + ], + "aliases": [ + "Les Roches Crans-Montana", + "Les Roches Switzerland" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0390 5606" + ], + "preferred": "0000 0004 0390 5606" + }, + "Wikidata": { + "all": [ + "Q6529933" + ], + "preferred": "Q6529933" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/008zr3m11.json b/v1.52/v1/008zr3m11.json new file mode 100644 index 000000000..f2a01a8dc --- /dev/null +++ b/v1.52/v1/008zr3m11.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/008zr3m11", + "name": "SUNY Morrisville", + "email_address": null, + "ip_addresses": [], + "established": 1908, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.89868, + "lng": -75.64018, + "state": null, + "state_code": null, + "city": "Morrisville", + "geonames_city": { + "id": 5127561, + "city": "Morrisville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.morrisville.edu" + ], + "aliases": [ + "Morrisville State College", + "SUNY Morrisville", + "State University of New York at Morrisville" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Morrisville_State_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.441248.f", + "preferred": "grid.441248.f" + }, + "ISNI": { + "all": [ + "0000 0000 9144 5822" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6914146" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00965mv68.json b/v1.52/v1/00965mv68.json new file mode 100644 index 000000000..3265262df --- /dev/null +++ b/v1.52/v1/00965mv68.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/00965mv68", + "name": "Tecnológico Nacional de México Campus San Juan de los Ríos", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 17.82644, + "lng": -91.37517, + "state": null, + "state_code": null, + "city": "Balancán Municipality", + "geonames_city": { + "id": 8583436, + "city": "Balancán Municipality", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rios.tecnm.mx/rios/" + ], + "aliases": [ + "TecNM Campus San Juan de los Ríos" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/009gmrj52.json b/v1.52/v1/009gmrj52.json new file mode 100644 index 000000000..6e0803b98 --- /dev/null +++ b/v1.52/v1/009gmrj52.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/009gmrj52", + "name": "École de management de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 1872, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "type": "Child", + "id": "https://ror.org/042fmc481" + } + ], + "addresses": [ + { + "lat": 45.77437, + "lng": 4.77758, + "state": null, + "state_code": null, + "city": "Écully", + "geonames_city": { + "id": 3020392, + "city": "Écully", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.em-lyon.com/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/EMLYON_Business_School", + "labels": [ + { + "label": "EMLYON Business School", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462218.b", + "preferred": "grid.462218.b" + }, + "ISNI": { + "all": [ + "0000 0004 1795 4169" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1795504" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/009gyvm78.json b/v1.52/v1/009gyvm78.json new file mode 100644 index 000000000..7fcf42d54 --- /dev/null +++ b/v1.52/v1/009gyvm78.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/009gyvm78", + "name": "The Abdus Salam International Centre for Theoretical Physics (ICTP)", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institute for Geometry and Physics", + "type": "Child", + "id": "https://ror.org/04ys00n93" + }, + { + "label": "UNESCO", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + } + ], + "addresses": [ + { + "lat": 45.64953, + "lng": 13.77678, + "state": null, + "state_code": null, + "city": "Trieste", + "geonames_city": { + "id": 3165185, + "city": "Trieste", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ictp.it" + ], + "aliases": [ + "Abdus Salam International Centre for Theoretical Physics", + "International Centre for Theoretical Physics" + ], + "acronyms": [ + "ICTP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_Centre_for_Theoretical_Physics", + "labels": [ + { + "label": "Centro Internazionale di Fisica Teorica Abdus Salam", + "iso639": "it" + }, + { + "label": "Mednarodno središče Abdusa Salama za teoretično fiziko", + "iso639": "sl" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001681" + ], + "preferred": null + }, + "GRID": { + "all": "grid.419330.c", + "preferred": "grid.419330.c" + }, + "ISNI": { + "all": [ + "0000 0001 2184 9917" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1190606" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/009ps2x93.json b/v1.52/v1/009ps2x93.json new file mode 100644 index 000000000..de074fd61 --- /dev/null +++ b/v1.52/v1/009ps2x93.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/009ps2x93", + "name": "Département des Systèmes Basses Températures", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.d-sbt.fr" + ], + "aliases": [ + "Low Temperature Systems Department" + ], + "acronyms": [ + "DSBT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/00a1gne75.json b/v1.52/v1/00a1gne75.json new file mode 100644 index 000000000..025c81158 --- /dev/null +++ b/v1.52/v1/00a1gne75.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/00a1gne75", + "name": "Teledyne Technologies (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Teledyne Technologies (Australia)", + "type": "Child", + "id": "https://ror.org/00ma0s885" + }, + { + "label": "Teledyne Technologies (Canada)", + "type": "Child", + "id": "https://ror.org/0335wvc55" + }, + { + "label": "Teledyne Technologies (Denmark)", + "type": "Child", + "id": "https://ror.org/01h5zkn46" + }, + { + "label": "Teledyne Technologies (France)", + "type": "Child", + "id": "https://ror.org/049b5zq94" + }, + { + "label": "Teledyne e2v (United Kingdom)", + "type": "Child", + "id": "https://ror.org/00e1g8a02" + }, + { + "label": "Teledyne FLIR (United States)", + "type": "Child", + "id": "https://ror.org/01j1gwp17" + } + ], + "addresses": [ + { + "lat": 34.17056, + "lng": -118.83759, + "state": null, + "state_code": null, + "city": "Thousand Oaks", + "geonames_city": { + "id": 5402405, + "city": "Thousand Oaks", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.teledyne.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Teledyne_Technologies", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.421352.3", + "preferred": "grid.421352.3" + }, + "ISNI": { + "all": [ + "0000 0004 0634 4795" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7696127" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00a9eka65.json b/v1.52/v1/00a9eka65.json new file mode 100644 index 000000000..a1296a496 --- /dev/null +++ b/v1.52/v1/00a9eka65.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/00a9eka65", + "name": "University of Science and Technologies", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.26465, + "lng": 69.21627, + "state": null, + "state_code": null, + "city": "Tashkent", + "geonames_city": { + "id": 1512569, + "city": "Tashkent", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://usat.uz" + ], + "aliases": [ + "Fan va texnologiyalar universiteti Toshkent", + "University of Science and Technologies Tashkent" + ], + "acronyms": [ + "USAT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fan va Texnologiyalar universiteti", + "iso639": "uz" + } + ], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/00ad27c73.json b/v1.52/v1/00ad27c73.json new file mode 100644 index 000000000..d4ec911b7 --- /dev/null +++ b/v1.52/v1/00ad27c73.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/00ad27c73", + "name": "A. Alikhanyan National Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 1944, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Yerevan State University", + "type": "Related", + "id": "https://ror.org/00s8vne50" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aanl.am" + ], + "aliases": [ + "Alikhanyan National Laboratory", + "YerPhI", + "Yerevan Physics Institute", + "Երևանի ֆիզիկայի ինստիտուտ" + ], + "acronyms": [ + "AANL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Yerevan_Physics_Institute", + "labels": [ + { + "label": "Ա. Ի. Ալիխանյանի անվան ազգային գիտական լաբորատորիա", + "iso639": "hy" + } + ], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "GRID": { + "all": "grid.48507.3e", + "preferred": "grid.48507.3e" + }, + "ISNI": { + "all": [ + "0000 0004 0482 7128" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4176238" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00b1zwh50.json b/v1.52/v1/00b1zwh50.json new file mode 100644 index 000000000..343b75544 --- /dev/null +++ b/v1.52/v1/00b1zwh50.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00b1zwh50", + "name": "Society of British Neurological Surgeons", + "email_address": null, + "ip_addresses": [], + "established": 1926, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sbns.org.uk/" + ], + "aliases": [], + "acronyms": [ + "SBNS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Society_of_British_Neurological_Surgeons", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023916" + ], + "preferred": "501100023916" + }, + "GRID": { + "all": "grid.499504.5", + "preferred": "grid.499504.5" + }, + "ISNI": { + "all": [ + "0000 0001 0127 7317" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7552402" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00b8mh310.json b/v1.52/v1/00b8mh310.json new file mode 100644 index 000000000..2866442ae --- /dev/null +++ b/v1.52/v1/00b8mh310.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00b8mh310", + "name": "Institute for Regenerative Medicine & Biotherapy", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Centre Hospitalier Universitaire de Montpellier", + "type": "Parent", + "id": "https://ror.org/00mthsf17" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://irmb-montpellier.fr" + ], + "aliases": [], + "acronyms": [ + "IRMB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462469.b", + "preferred": "grid.462469.b" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00bj04t22.json b/v1.52/v1/00bj04t22.json new file mode 100644 index 000000000..0dc1fe9df --- /dev/null +++ b/v1.52/v1/00bj04t22.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00bj04t22", + "name": "Sciences, Philosophie, Humanités", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Bordeaux Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + } + ], + "addresses": [ + { + "lat": 44.80565, + "lng": -0.6324, + "state": null, + "state_code": null, + "city": "Pessac", + "geonames_city": { + "id": 2987805, + "city": "Pessac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sph.u-bordeaux.fr" + ], + "aliases": [], + "acronyms": [ + "SPH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780660" + ], + "preferred": "Q51780660" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00bkaqj51.json b/v1.52/v1/00bkaqj51.json new file mode 100644 index 000000000..1bb97842e --- /dev/null +++ b/v1.52/v1/00bkaqj51.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00bkaqj51", + "name": "North Atlantic Treaty Organization", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "North Atlantic Treaty Organization", + "type": "Successor", + "id": "https://ror.org/05xagc088" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://nato.int/" + ], + "aliases": [ + "North Atlantic Alliance" + ], + "acronyms": [ + "NATO", + "OTAN" + ], + "status": "withdrawn", + "wikipedia_url": "https://en.wikipedia.org/wiki/NATO", + "labels": [ + { + "label": "Organisation du traité de l'Atlantique Nord", + "iso639": "fr" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.472591.c", + "preferred": "grid.472591.c" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00bm1k740.json b/v1.52/v1/00bm1k740.json new file mode 100644 index 000000000..04337a0b0 --- /dev/null +++ b/v1.52/v1/00bm1k740.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00bm1k740", + "name": "Dechra Pharmaceuticals (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.25882, + "lng": -2.52025, + "state": null, + "state_code": null, + "city": "Northwich", + "geonames_city": { + "id": 2641224, + "city": "Northwich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.dechra.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Dechra_Pharmaceuticals", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009451" + ], + "preferred": "501100009451" + }, + "GRID": { + "all": "grid.502860.9", + "preferred": "grid.502860.9" + }, + "Wikidata": { + "all": [ + "Q5249133" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00bw3sa48.json b/v1.52/v1/00bw3sa48.json new file mode 100644 index 000000000..22886d662 --- /dev/null +++ b/v1.52/v1/00bw3sa48.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00bw3sa48", + "name": "Sands", + "email_address": null, + "ip_addresses": [], + "established": 1978, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sands.org.uk" + ], + "aliases": [ + "Stillbirth Association", + "Stillbirth and Perinatal Death Association" + ], + "acronyms": [ + "SPDA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100011243" + ], + "preferred": "100011243" + }, + "GRID": { + "all": "grid.495740.b", + "preferred": "grid.495740.b" + }, + "ISNI": { + "all": [ + "0000 0001 0688 516X" + ], + "preferred": "0000 0001 0688 516X" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00bxmqe50.json b/v1.52/v1/00bxmqe50.json new file mode 100644 index 000000000..ff6303e1b --- /dev/null +++ b/v1.52/v1/00bxmqe50.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/00bxmqe50", + "name": "National Institute of Academic Anaesthesia", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.niaa.org.uk/" + ], + "aliases": [], + "acronyms": [ + "NIAA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100000349", + "100012373" + ], + "preferred": "100012373" + }, + "GRID": { + "all": "grid.453470.1", + "preferred": "grid.453470.1" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00byxdz40.json b/v1.52/v1/00byxdz40.json new file mode 100644 index 000000000..9541cc595 --- /dev/null +++ b/v1.52/v1/00byxdz40.json @@ -0,0 +1,133 @@ +{ + "id": "https://ror.org/00byxdz40", + "name": "Institut de Recherche Interdisciplinaire de Grenoble", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Laboratoire Biosciences et bioingénierie pour la Santé", + "type": "Child", + "id": "https://ror.org/039j4x695" + }, + { + "label": "Département des Systèmes Basses Températures", + "type": "Child", + "id": "https://ror.org/009ps2x93" + }, + { + "label": "Laboratoire Biologie et Biotechnologie pour la Santé", + "type": "Child", + "id": "https://ror.org/0557vhy43" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "Child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "Child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "type": "Child", + "id": "https://ror.org/0535cbn94" + }, + { + "label": "Institut de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://irig.cea.fr" + ], + "aliases": [], + "acronyms": [ + "IRIG" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.512394.8", + "preferred": "grid.512394.8" + }, + "ISNI": { + "all": [ + "0000 0004 7665 414X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00cd48p72.json b/v1.52/v1/00cd48p72.json new file mode 100644 index 000000000..c4f55b6e6 --- /dev/null +++ b/v1.52/v1/00cd48p72.json @@ -0,0 +1,143 @@ +{ + "id": "https://ror.org/00cd48p72", + "name": "Campus Condorcet", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Huma-Num", + "type": "Child", + "id": "https://ror.org/04ces3204" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Related", + "id": "https://ror.org/02feahw73" + }, + { + "label": "École des hautes études en sciences sociales", + "type": "Related", + "id": "https://ror.org/02d9dg697" + }, + { + "label": "École Nationale des Chartes", + "type": "Related", + "id": "https://ror.org/013xvg556" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Related", + "id": "https://ror.org/046b3cj80" + }, + { + "label": "Fondation Maison des Sciences de l'Homme", + "type": "Related", + "id": "https://ror.org/0581esp57" + }, + { + "label": "Institut national d'études démographiques", + "type": "Related", + "id": "https://ror.org/02cnsac56" + }, + { + "label": "Université Paris 1 Panthéon-Sorbonne", + "type": "Related", + "id": "https://ror.org/002t25c44" + }, + { + "label": "Université Sorbonne Nouvelle", + "type": "Related", + "id": "https://ror.org/03z6jp965" + }, + { + "label": "Université Paris 8", + "type": "Related", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "Université Paris Nanterre", + "type": "Related", + "id": "https://ror.org/013bkhk48" + }, + { + "label": "Université Sorbonne Paris Nord", + "type": "Related", + "id": "https://ror.org/0199hds37" + } + ], + "addresses": [ + { + "lat": 48.91667, + "lng": 2.38333, + "state": null, + "state_code": null, + "city": "Aubervilliers", + "geonames_city": { + "id": 3036386, + "city": "Aubervilliers", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.campus-condorcet.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6457 5102" + ], + "preferred": "0000 0004 6457 5102" + }, + "Wikidata": { + "all": [ + "Q2935605" + ], + "preferred": "Q2935605" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00cesps27.json b/v1.52/v1/00cesps27.json new file mode 100644 index 000000000..d36e4545f --- /dev/null +++ b/v1.52/v1/00cesps27.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/00cesps27", + "name": "Observatoire de Recherche Montpelliérain de l'Environnement OREME", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://oreme.org" + ], + "aliases": [ + "Observatoire de Recherche Montpelliérain de l'Environnement", + "Observatoire de Recherche Méditerranéen de l'Environnement" + ], + "acronyms": [ + "OREME" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Observatoire des Sciences de l'Univers OREME", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785020" + ], + "preferred": "Q51785020" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00cfam450.json b/v1.52/v1/00cfam450.json new file mode 100644 index 000000000..e87bcddb3 --- /dev/null +++ b/v1.52/v1/00cfam450.json @@ -0,0 +1,134 @@ +{ + "id": "https://ror.org/00cfam450", + "name": "Helmholtz Zentrum München", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Helmholtz Alliance Imaging and Curing Environmental Metabolic Diseases", + "type": "Child", + "id": "https://ror.org/04s64z252" + }, + { + "label": "Institute of Bioinformatics and Systems Biology", + "type": "Child", + "id": "https://ror.org/0127fwn18" + }, + { + "label": "Paul Langerhans Institute Dresden", + "type": "Child", + "id": "https://ror.org/05ke5hb07" + }, + { + "label": "Institute of Biological and Medical Imaging", + "type": "Child", + "id": "https://ror.org/05g95eg64" + }, + { + "label": "Institute of Diabetes Research", + "type": "Child", + "id": "https://ror.org/0278hns33" + }, + { + "label": "Helmholtz Association of German Research Centres", + "type": "Parent", + "id": "https://ror.org/0281dp749" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.helmholtz-muenchen.de" + ], + "aliases": [ + "GSF - Gesellschaft für Strahlen- und Umweltforschung", + "German Research Center for Environmental Health" + ], + "acronyms": [ + "HMGU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Helmholtz_Zentrum_M%C3%BCnchen", + "labels": [ + { + "label": "Helmholtz Zentrum München - Deutsches Forschungszentrum für Gesundheit und Umwelt", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100013295", + "501100013294" + ], + "preferred": "501100013294" + }, + "GRID": { + "all": "grid.4567.0", + "preferred": "grid.4567.0" + }, + "ISNI": { + "all": [ + "0000 0004 0483 2525" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q878592" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00d0nc645.json b/v1.52/v1/00d0nc645.json new file mode 100644 index 000000000..0f8a3461e --- /dev/null +++ b/v1.52/v1/00d0nc645.json @@ -0,0 +1,212 @@ +{ + "id": "https://ror.org/00d0nc645", + "name": "Microsoft (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "LinkedIn (United States)", + "type": "Child", + "id": "https://ror.org/02fyxhe35" + }, + { + "label": "Microsoft (Belgium)", + "type": "Child", + "id": "https://ror.org/05168yk81" + }, + { + "label": "Microsoft (Brazil)", + "type": "Child", + "id": "https://ror.org/00hc2mf91" + }, + { + "label": "Microsoft (Canada)", + "type": "Child", + "id": "https://ror.org/04xhxg104" + }, + { + "label": "Microsoft (Denmark)", + "type": "Child", + "id": "https://ror.org/015drfm81" + }, + { + "label": "Microsoft (Finland)", + "type": "Child", + "id": "https://ror.org/01nehjf29" + }, + { + "label": "Microsoft (France)", + "type": "Child", + "id": "https://ror.org/0521n7n83" + }, + { + "label": "Microsoft (Germany)", + "type": "Child", + "id": "https://ror.org/001dd4s60" + }, + { + "label": "Microsoft (India)", + "type": "Child", + "id": "https://ror.org/04ww0w091" + }, + { + "label": "Microsoft (Ireland)", + "type": "Child", + "id": "https://ror.org/017fqk185" + }, + { + "label": "Microsoft (Israel)", + "type": "Child", + "id": "https://ror.org/03819cc96" + }, + { + "label": "Microsoft (Netherlands)", + "type": "Child", + "id": "https://ror.org/01x21tj82" + }, + { + "label": "Microsoft (Norway)", + "type": "Child", + "id": "https://ror.org/03jtz4s80" + }, + { + "label": "Microsoft (Portugal)", + "type": "Child", + "id": "https://ror.org/00eqfbw40" + }, + { + "label": "Microsoft (Switzerland)", + "type": "Child", + "id": "https://ror.org/03zryq964" + }, + { + "label": "Microsoft (United Kingdom)", + "type": "Child", + "id": "https://ror.org/01rw27z95" + }, + { + "label": "Microsoft Research (India)", + "type": "Child", + "id": "https://ror.org/02w7f3w92" + }, + { + "label": "Microsoft Research (United Kingdom)", + "type": "Child", + "id": "https://ror.org/05k87vq12" + }, + { + "label": "Microsoft Research Asia (China)", + "type": "Child", + "id": "https://ror.org/0300m5276" + }, + { + "label": "Ninja Theory (United Kingdom)", + "type": "Child", + "id": "https://ror.org/04xrsn650" + }, + { + "label": "Microsoft Research New England (United States)", + "type": "Child", + "id": "https://ror.org/010wkqn50" + }, + { + "label": "Microsoft Research New York City (United States)", + "type": "Child", + "id": "https://ror.org/056zprp28" + }, + { + "label": "Microsoft Research Montréal (Canada)", + "type": "Child", + "id": "https://ror.org/05xdft911" + } + ], + "addresses": [ + { + "lat": 47.67399, + "lng": -122.12151, + "state": null, + "state_code": null, + "city": "Redmond", + "geonames_city": { + "id": 5808079, + "city": "Redmond", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.microsoft.com/en-us" + ], + "aliases": [ + "Microsoft Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Microsoft", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100004318", + "100006112" + ], + "preferred": "100004318" + }, + "GRID": { + "all": "grid.419815.0", + "preferred": "grid.419815.0" + }, + "ISNI": { + "all": [ + "0000 0001 2181 3404" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2283", + "Q47462228" + ], + "preferred": "Q2283" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00d81yb34.json b/v1.52/v1/00d81yb34.json new file mode 100644 index 000000000..301ba1c27 --- /dev/null +++ b/v1.52/v1/00d81yb34.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00d81yb34", + "name": "Victimology Society of Serbia", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://vds.rs" + ], + "aliases": [ + "Victimology Society of Serbia and Prometej-Beograd" + ], + "acronyms": [ + "VDS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Viktimološko Društvo Srbije", + "iso639": "sr" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": { + "GRID": { + "all": "grid.502378.b", + "preferred": "grid.502378.b" + }, + "ISNI": { + "all": [ + "0000 0004 5376 0978" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q52659618" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00davry38.json b/v1.52/v1/00davry38.json new file mode 100644 index 000000000..ae70074dc --- /dev/null +++ b/v1.52/v1/00davry38.json @@ -0,0 +1,249 @@ +{ + "id": "https://ror.org/00davry38", + "name": "Tecnológico Nacional de México", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Instituto Tecnológico de Boca del Río", + "type": "Child", + "id": "https://ror.org/0302jbz39" + }, + { + "label": "Instituto Tecnológico Superior de Los Reyes", + "type": "Child", + "id": "https://ror.org/05p299b07" + }, + { + "label": "Instituto Tecnológico de La Paz", + "type": "Child", + "id": "https://ror.org/0460tzy11" + }, + { + "label": "Instituto Tecnológico de San Luis Potosí", + "type": "Child", + "id": "https://ror.org/04w0a0617" + }, + { + "label": "Instituto Tecnólogico de La Laguna", + "type": "Child", + "id": "https://ror.org/00xbw4a70" + }, + { + "label": "Instituto Tecnológico Superior Zacatecas Norte", + "type": "Child", + "id": "https://ror.org/01nq33970" + }, + { + "label": "Instituto Tecnológico Superior de Loreto", + "type": "Child", + "id": "https://ror.org/03dgrff29" + }, + { + "label": "Instituto Tecnológico Superior de Atlixco", + "type": "Child", + "id": "https://ror.org/01brjce02" + }, + { + "label": "Instituto Tecnologico Superior de Misantla", + "type": "Child", + "id": "https://ror.org/03t5a9538" + }, + { + "label": "Instituto Tecnológico Superior de Acatlán de Osorio", + "type": "Child", + "id": "https://ror.org/04zjhw235" + }, + { + "label": "Instituto Tecnológico de Ciudad Guzmán", + "type": "Child", + "id": "https://ror.org/01d6p8r58" + }, + { + "label": "Secretariat of Public Education", + "type": "Parent", + "id": "https://ror.org/02e1c4h55" + }, + { + "label": "Instituto Tecnológico Superior de Centla", + "type": "Child", + "id": "https://ror.org/02sftkh09" + }, + { + "label": "Instituto Tecnológico Superior de Irapuato", + "type": "Child", + "id": "https://ror.org/01da06998" + }, + { + "label": "Tecnológico de Estudios Superiores de Cuautitlán Izcalli", + "type": "Child", + "id": "https://ror.org/01hjh7h09" + }, + { + "label": "Instituto Tecnológico de Tuxtepec", + "type": "Child", + "id": "https://ror.org/01w8zj169" + }, + { + "label": "Tecnológico Nacional de México Campus Cancún", + "type": "Child", + "id": "https://ror.org/0336f3190" + }, + { + "label": "Instituto Tecnológico Superior de Cananea", + "type": "Child", + "id": "https://ror.org/00dds0202" + }, + { + "label": "Tecnológico Nacional de México, Campus Pachuca", + "type": "Child", + "id": "https://ror.org/0248dkz36" + }, + { + "label": "Tecnológico Nacional de México de Ciudad Jiménez", + "type": "Child", + "id": "https://ror.org/03bmwyk24" + }, + { + "label": "Tecnológico Nacional de México Campus Ciudad Valles", + "type": "Child", + "id": "https://ror.org/033xr5946" + }, + { + "label": "Tecnológico de Estudios Superiores de Valle de Bravo", + "type": "Child", + "id": "https://ror.org/02zv2b697" + }, + { + "label": "Tecnológico Nacional de México Campus Ciudad Serdán", + "type": "Child", + "id": "https://ror.org/02kj53224" + }, + { + "label": "Tecnológico Nacional de México Campus San Juan de los Ríos", + "type": "Child", + "id": "https://ror.org/00965mv68" + }, + { + "label": "Instituto Tecnológico Superior del Occidente del Estado de Hidalgo", + "type": "Child", + "id": "https://ror.org/05qqb8y62" + }, + { + "label": "Instituto Tecnológico Superior de Calkiní", + "type": "Child", + "id": "https://ror.org/019kjfs29" + }, + { + "label": "Instituto Tecnológico Superior de Naranjos", + "type": "Child", + "id": "https://ror.org/00e59cf80" + }, + { + "label": "Tecnológico Nacional de México Campus San Martín Texmelucan", + "type": "Child", + "id": "https://ror.org/03k3t2d52" + }, + { + "label": "Instituto Tecnologico de Delicias", + "type": "Child", + "id": "https://ror.org/046ee4w71" + }, + { + "label": "Instituto Tecnológico Superior de Perote", + "type": "Child", + "id": "https://ror.org/008eg1b26" + }, + { + "label": "Instituto Tecnológico Superior de Lerdo", + "type": "Child", + "id": "https://ror.org/04bjtbt12" + } + ], + "addresses": [ + { + "lat": 19.42847, + "lng": -99.12766, + "state": null, + "state_code": null, + "city": "Mexico City", + "geonames_city": { + "id": 3530597, + "city": "Mexico City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tecnm.mx" + ], + "aliases": [], + "acronyms": [ + "TecNM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Technological Institute of Mexico", + "iso639": "en" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012725" + ], + "preferred": "100012725" + }, + "GRID": { + "all": "grid.484694.3", + "preferred": "grid.484694.3" + }, + "ISNI": { + "all": [ + "0000 0004 5988 7021" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00dds0202.json b/v1.52/v1/00dds0202.json new file mode 100644 index 000000000..46a68bda8 --- /dev/null +++ b/v1.52/v1/00dds0202.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00dds0202", + "name": "Instituto Tecnológico Superior de Cananea", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 30.98699, + "lng": -110.29062, + "state": null, + "state_code": null, + "city": "Cananea", + "geonames_city": { + "id": 4015700, + "city": "Cananea", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.teccan.edu.mx" + ], + "aliases": [ + "TecNM Campus Cananea", + "TecNM Instituto Tecnológico Superior de Cananea", + "Tecnológico Nacional de México Campus Cananea", + "Tecnológico Nacional de México Instituto Tecnológico Superior de Cananea" + ], + "acronyms": [ + "ITSC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/00e59cf80.json b/v1.52/v1/00e59cf80.json new file mode 100644 index 000000000..7b3b40f67 --- /dev/null +++ b/v1.52/v1/00e59cf80.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/00e59cf80", + "name": "Instituto Tecnológico Superior de Naranjos", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 21.35087, + "lng": -97.68656, + "state": null, + "state_code": null, + "city": "Naranjos", + "geonames_city": { + "id": 3522804, + "city": "Naranjos", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.itsna.edu.mx" + ], + "aliases": [ + "TecNM Campus Instituto Tecnológico de Naranjos", + "Tecnologico Nacional de Mexico Campus de Naranjos" + ], + "acronyms": [ + "ITSNa" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4679 4758" + ], + "preferred": "0000 0004 4679 4758" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00enhv193.json b/v1.52/v1/00enhv193.json new file mode 100644 index 000000000..6cf5ced53 --- /dev/null +++ b/v1.52/v1/00enhv193.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00enhv193", + "name": "NFDI4Ing", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 50.77664, + "lng": 6.08342, + "state": null, + "state_code": null, + "city": "Aachen", + "geonames_city": { + "id": 3247449, + "city": "Aachen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nfdi4ing.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/NFDI4Ing", + "labels": [ + { + "label": "National Research Data Infrastructure for Engineering Sciences", + "iso639": "en" + }, + { + "label": "Nationale Forschungsdateninfrastruktur für die Ingenieurwissenschaften", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q98380344" + ], + "preferred": "Q98380344" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00f54p054.json b/v1.52/v1/00f54p054.json new file mode 100644 index 000000000..2a56259a5 --- /dev/null +++ b/v1.52/v1/00f54p054.json @@ -0,0 +1,191 @@ +{ + "id": "https://ror.org/00f54p054", + "name": "Stanford University", + "email_address": null, + "ip_addresses": [], + "established": 1891, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Brown Institute for Media Innovation", + "type": "Child", + "id": "https://ror.org/02awzbn54" + }, + { + "label": "Center for Effective Global Action", + "type": "Child", + "id": "https://ror.org/03djjyk45" + }, + { + "label": "Eterna Massive Open Laboratory", + "type": "Child", + "id": "https://ror.org/05j5wde68" + }, + { + "label": "Kavli Institute for Particle Astrophysics and Cosmology", + "type": "Child", + "id": "https://ror.org/00pwqz914" + }, + { + "label": "Max Planck Center for Visual Computing and Communication", + "type": "Child", + "id": "https://ror.org/03hj69t32" + }, + { + "label": "Chan Zuckerberg Biohub San Francisco", + "type": "Child", + "id": "https://ror.org/00knt4f32" + }, + { + "label": "Stanford Medicine", + "type": "Child", + "id": "https://ror.org/03mtd9a03" + }, + { + "label": "Children's Hospital Central California", + "type": "Child", + "id": "https://ror.org/01s3y9g58" + }, + { + "label": "SLAC National Accelerator Laboratory", + "type": "Child", + "id": "https://ror.org/05gzmn429" + }, + { + "label": "Stanford Synchrotron Radiation Lightsource", + "type": "Child", + "id": "https://ror.org/02vzbm991" + }, + { + "label": "Facility for Advanced Accelerator Experimental Tests-II", + "type": "Child", + "id": "https://ror.org/023py8175" + }, + { + "label": "Stanford SystemX Alliance", + "type": "Child", + "id": "https://ror.org/0551gkb08" + }, + { + "label": "Good Samaritan Hospital", + "type": "Related", + "id": "https://ror.org/03zms7281" + }, + { + "label": "Santa Clara Valley Medical Center", + "type": "Related", + "id": "https://ror.org/02v7qv571" + }, + { + "label": "VA Palo Alto Health Care System", + "type": "Related", + "id": "https://ror.org/00nr17z89" + } + ], + "addresses": [ + { + "lat": 37.42411, + "lng": -122.16608, + "state": null, + "state_code": null, + "city": "Stanford", + "geonames_city": { + "id": 5398563, + "city": "Stanford", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.stanford.edu" + ], + "aliases": [ + "Leland Stanford Junior University" + ], + "acronyms": [ + "SU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Stanford_University", + "labels": [ + { + "label": "Universidad Stanford", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100005492", + "100006521", + "100008643", + "100006100", + "100010866", + "100011098", + "100006598", + "100006057", + "100005575", + "100005541", + "100006382", + "100016959", + "100010864", + "100010869" + ], + "preferred": "100010869" + }, + "GRID": { + "all": "grid.168010.e", + "preferred": "grid.168010.e" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8956" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q41506", + "Q1754977" + ], + "preferred": "Q41506" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00f7yqx35.json b/v1.52/v1/00f7yqx35.json new file mode 100644 index 000000000..06fbe12c4 --- /dev/null +++ b/v1.52/v1/00f7yqx35.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00f7yqx35", + "name": "Federal Polytechnic, Mubi", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.26858, + "lng": 13.26701, + "state": null, + "state_code": null, + "city": "Mubi", + "geonames_city": { + "id": 2329821, + "city": "Mubi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fpmubieportal.edu.ng" + ], + "aliases": [], + "acronyms": [ + "FPM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_Polytechnic%2C_Mubi", + "labels": [ + { + "label": "Kwalejin Kimiyya da Fasaha ta Tarayya, Mubi", + "iso639": "ha" + } + ], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4912 0337" + ], + "preferred": "0000 0004 4912 0337" + }, + "Wikidata": { + "all": [ + "Q17929174" + ], + "preferred": "Q17929174" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00fbnyb24.json b/v1.52/v1/00fbnyb24.json new file mode 100644 index 000000000..c613d9114 --- /dev/null +++ b/v1.52/v1/00fbnyb24.json @@ -0,0 +1,136 @@ +{ + "id": "https://ror.org/00fbnyb24", + "name": "University of Würzburg", + "email_address": null, + "ip_addresses": [], + "established": 1402, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Bavarian Polymer Institute", + "type": "Child", + "id": "https://ror.org/054zwas39" + }, + { + "label": "Complexity and Topology in Quantum Matter", + "type": "Child", + "id": "https://ror.org/00kkpv737" + }, + { + "label": "Comprehensive Cancer Center Mainfranken", + "type": "Child", + "id": "https://ror.org/013tmk464" + }, + { + "label": "Klinikum Coburg", + "type": "Related", + "id": "https://ror.org/02d1rkr63" + }, + { + "label": "Universitätsklinikum Würzburg", + "type": "Related", + "id": "https://ror.org/03pvr2g57" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 49.79391, + "lng": 9.95121, + "state": null, + "state_code": null, + "city": "Würzburg", + "geonames_city": { + "id": 2805615, + "city": "Würzburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uni-wuerzburg.de/en/ueber/university/" + ], + "aliases": [ + "Julius Maximilian University of Würzburg" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_W%C3%BCrzburg", + "labels": [ + { + "label": "Julius-Maximilians-Universität Würzburg", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008769", + "501100009379" + ], + "preferred": "501100008769" + }, + "GRID": { + "all": "grid.8379.5", + "preferred": "grid.8379.5" + }, + "ISNI": { + "all": [ + "0000 0001 1958 8658" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q161976" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00fe1xp94.json b/v1.52/v1/00fe1xp94.json new file mode 100644 index 000000000..5771d2527 --- /dev/null +++ b/v1.52/v1/00fe1xp94.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00fe1xp94", + "name": "Alfred State College", + "email_address": null, + "ip_addresses": [], + "established": 1908, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.25424, + "lng": -77.79055, + "state": null, + "state_code": null, + "city": "Alfred", + "geonames_city": { + "id": 5106955, + "city": "Alfred", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.alfredstate.edu" + ], + "aliases": [ + "Alfred State College of Technology", + "SUNY Alfred", + "SUNY College of Technology at Alfred", + "State University of New York College of Technology at Alfred" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Alfred_State_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.422692.9", + "preferred": "grid.422692.9" + }, + "ISNI": { + "all": [ + "0000 0004 0387 677X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4723471" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00fqyhf62.json b/v1.52/v1/00fqyhf62.json new file mode 100644 index 000000000..28e8b1d42 --- /dev/null +++ b/v1.52/v1/00fqyhf62.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00fqyhf62", + "name": "Harris–Stowe State University", + "email_address": null, + "ip_addresses": [], + "established": 1857, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Taylor Geospatial Institute", + "type": "Related", + "id": "https://ror.org/0573j3j10" + } + ], + "addresses": [ + { + "lat": 38.62727, + "lng": -90.19789, + "state": null, + "state_code": null, + "city": "St Louis", + "geonames_city": { + "id": 4407066, + "city": "St Louis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.hssu.edu/" + ], + "aliases": [], + "acronyms": [ + "HSSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Harris%E2%80%93Stowe_State_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.420605.5", + "preferred": "grid.420605.5" + }, + "ISNI": { + "all": [ + "0000 0000 9425 9064" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5666316" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00fvwqz75.json b/v1.52/v1/00fvwqz75.json new file mode 100644 index 000000000..c63cfcd8d --- /dev/null +++ b/v1.52/v1/00fvwqz75.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00fvwqz75", + "name": "Baranavichy State University", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.13253, + "lng": 26.00774, + "state": null, + "state_code": null, + "city": "Baranovichi", + "geonames_city": { + "id": 630429, + "city": "Baranovichi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://barsu.by" + ], + "aliases": [ + "Baranovichi State University" + ], + "acronyms": [ + "BarSU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Belarus", + "country_code": "BY" + }, + "external_ids": { + "GRID": { + "all": "grid.444991.5", + "preferred": "grid.444991.5" + }, + "ISNI": { + "all": [ + "0000 0004 0392 2414" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q946573" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00g1d7b60.json b/v1.52/v1/00g1d7b60.json new file mode 100644 index 000000000..7846332eb --- /dev/null +++ b/v1.52/v1/00g1d7b60.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00g1d7b60", + "name": "Indiana University Melvin and Bren Simon Comprehensive Cancer Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Indiana University", + "type": "Parent", + "id": "https://ror.org/01kg8sb98" + } + ], + "addresses": [ + { + "lat": 39.76838, + "lng": -86.15804, + "state": null, + "state_code": null, + "city": "Indianapolis", + "geonames_city": { + "id": 4259418, + "city": "Indianapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cancer.iu.edu" + ], + "aliases": [ + "IU Cancer Center", + "IU Melvin and Bren Simon Comprehensive Cancer Center", + "IU Simon Cancer Center", + "IU Simon Comprehensive Cancer Center", + "Indiana University Cancer Center", + "Melvin and Bren Simon Comprehensive Cancer Center", + "Simon Comprehensive Cancer Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100011749" + ], + "preferred": "100011749" + }, + "ISNI": { + "all": [ + "0000 0004 0440 0167" + ], + "preferred": "0000 0004 0440 0167" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00g7a7c91.json b/v1.52/v1/00g7a7c91.json new file mode 100644 index 000000000..2ed8881de --- /dev/null +++ b/v1.52/v1/00g7a7c91.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/00g7a7c91", + "name": "SUNY Orange", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 41.44593, + "lng": -74.42293, + "state": null, + "state_code": null, + "city": "Middletown", + "geonames_city": { + "id": 5126842, + "city": "Middletown", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sunyorange.edu/" + ], + "aliases": [ + "Orange County Community College", + "State University of New York Orange County Community College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/SUNY_Orange", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010966" + ], + "preferred": "100010966" + }, + "GRID": { + "all": "grid.487762.8", + "preferred": "grid.487762.8" + }, + "ISNI": { + "all": [ + "0000 0004 0388 3064" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7099552" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00gg5zj35.json b/v1.52/v1/00gg5zj35.json new file mode 100644 index 000000000..f0b6df85a --- /dev/null +++ b/v1.52/v1/00gg5zj35.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00gg5zj35", + "name": "PLA Rocket Force University of Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.25833, + "lng": 108.92861, + "state": null, + "state_code": null, + "city": "Xi'an", + "geonames_city": { + "id": 1790630, + "city": "Xi'an", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.epgc.net/" + ], + "aliases": [ + "PLA Second Artillery Engineering University", + "Rocket Force University of Engineering", + "Zhōngguó Rénmín Jiěfàngjūn Dìèrpàobīng Gōngchéng Dàxué" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/PLA_Rocket_Force_University_of_Engineering", + "labels": [ + { + "label": "中国人民解放军火箭军工程大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.469623.c", + "preferred": "grid.469623.c" + }, + "ISNI": { + "all": [ + "0000 0004 1759 8272" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10873092" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00ggqtz82.json b/v1.52/v1/00ggqtz82.json new file mode 100644 index 000000000..0b3292570 --- /dev/null +++ b/v1.52/v1/00ggqtz82.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/00ggqtz82", + "name": "Institut Français de la Mer", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ifmer.org/" + ], + "aliases": [], + "acronyms": [ + "l’IFM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Oceanographic Institute", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.425222.1", + "preferred": "grid.425222.1" + }, + "ISNI": { + "all": [ + "0000 0001 2171 6081" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00gj7r351.json b/v1.52/v1/00gj7r351.json new file mode 100644 index 000000000..8fd73fd0c --- /dev/null +++ b/v1.52/v1/00gj7r351.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00gj7r351", + "name": "Laboratoire écologie, évolution, interactions des systèmes amazoniens", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "University of French Guiana", + "type": "Parent", + "id": "https://ror.org/00nb39k71" + }, + { + "label": "Ifremer", + "type": "Parent", + "id": "https://ror.org/044jxhp58" + } + ], + "addresses": [ + { + "lat": 4.93333, + "lng": -52.33333, + "state": null, + "state_code": null, + "city": "Cayenne", + "geonames_city": { + "id": 3382160, + "city": "Cayenne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.leeisa.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "LEEISA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "French Guiana", + "country_code": "GF" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780915" + ], + "preferred": "Q51780915" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00gtjrz72.json b/v1.52/v1/00gtjrz72.json new file mode 100644 index 000000000..743f2be29 --- /dev/null +++ b/v1.52/v1/00gtjrz72.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00gtjrz72", + "name": "Fondazione Roma", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.fondazioneroma.it/it/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Fondazione_Roma", + "labels": [ + { + "label": "Fondazione Cassa di Risparmio di Roma", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100015822" + ], + "preferred": "501100015822" + }, + "GRID": { + "all": "grid.484147.a", + "preferred": "grid.484147.a" + }, + "ISNI": { + "all": [ + "0000 0000 9900 9494" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00h5hvq79.json b/v1.52/v1/00h5hvq79.json new file mode 100644 index 000000000..580eef7c5 --- /dev/null +++ b/v1.52/v1/00h5hvq79.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00h5hvq79", + "name": "INESPASA (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.38283, + "lng": -5.97317, + "state": null, + "state_code": null, + "city": "Seville", + "geonames_city": { + "id": 2510911, + "city": "Seville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inespasa.com" + ], + "aliases": [ + "Industria Especializada en Aeronautica" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "INESPASA", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/00h6set76.json b/v1.52/v1/00h6set76.json new file mode 100644 index 000000000..4ebaef6c6 --- /dev/null +++ b/v1.52/v1/00h6set76.json @@ -0,0 +1,126 @@ +{ + "id": "https://ror.org/00h6set76", + "name": "Utah State University", + "email_address": null, + "ip_addresses": [], + "established": 1888, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Utah State University Space Dynamics Laboratory", + "type": "Child", + "id": "https://ror.org/02w403h65" + }, + { + "label": "Utah System of Higher Education", + "type": "Parent", + "id": "https://ror.org/02mv6r745" + }, + { + "label": "Arctic Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/04pk7zz41" + }, + { + "label": "Utah Agricultural Experiment Station", + "type": "Child", + "id": "https://ror.org/02d5zdh33" + } + ], + "addresses": [ + { + "lat": 41.73549, + "lng": -111.83439, + "state": null, + "state_code": null, + "city": "Logan", + "geonames_city": { + "id": 5777544, + "city": "Logan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.usu.edu/" + ], + "aliases": [], + "acronyms": [ + "USU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Utah_State_University", + "labels": [ + { + "label": "Universidad Estatal de Utah", + "iso639": "es" + }, + { + "label": "Université d'État de l'utah", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006630", + "100007201", + "100007200" + ], + "preferred": "100006630" + }, + "GRID": { + "all": "grid.53857.3c", + "preferred": "grid.53857.3c" + }, + "ISNI": { + "all": [ + "0000 0001 2185 8768" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1052614" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00hdhxd58.json b/v1.52/v1/00hdhxd58.json new file mode 100644 index 000000000..e2d6340e3 --- /dev/null +++ b/v1.52/v1/00hdhxd58.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00hdhxd58", + "name": "European Astronaut Centre", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "European Space Agency", + "type": "Parent", + "id": "https://ror.org/03wd9za21" + } + ], + "addresses": [ + { + "lat": 50.93333, + "lng": 6.95, + "state": null, + "state_code": null, + "city": "Cologne", + "geonames_city": { + "id": 2886242, + "city": "Cologne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.esa.int/About_Us/EAC" + ], + "aliases": [], + "acronyms": [ + "EAC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_Astronaut_Centre", + "labels": [ + { + "label": "Europäisches Astronautenzentrum", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.507239.a", + "preferred": "grid.507239.a" + }, + "ISNI": { + "all": [ + "0000 0004 0623 7092" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q314203" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00j387684.json b/v1.52/v1/00j387684.json new file mode 100644 index 000000000..b6ecdda47 --- /dev/null +++ b/v1.52/v1/00j387684.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00j387684", + "name": "Jefferson Community College", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 43.97478, + "lng": -75.91076, + "state": null, + "state_code": null, + "city": "Watertown", + "geonames_city": { + "id": 5143396, + "city": "Watertown", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunyjefferson.edu" + ], + "aliases": [ + "SUNY Jefferson", + "State University of New York Jefferson" + ], + "acronyms": [ + "JCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Jefferson_Community_College_(New_York)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.436076.0", + "preferred": "grid.436076.0" + }, + "ISNI": { + "all": [ + "0000 0004 0388 1173" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6175407" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00j52pq61.json b/v1.52/v1/00j52pq61.json new file mode 100644 index 000000000..a5e8cc67b --- /dev/null +++ b/v1.52/v1/00j52pq61.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/00j52pq61", + "name": "New York State College of Agriculture & Life Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1874, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cornell University", + "type": "Parent", + "id": "https://ror.org/05bnh6r87" + }, + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.44063, + "lng": -76.49661, + "state": null, + "state_code": null, + "city": "Ithaca", + "geonames_city": { + "id": 5122432, + "city": "Ithaca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cals.cornell.edu/#" + ], + "aliases": [ + "Cornell University College of Agriculture and Life Sciences" + ], + "acronyms": [ + "CALS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cornell_University_College_of_Agriculture_and_Life_Sciences", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.507860.c", + "preferred": "grid.507860.c" + }, + "ISNI": { + "all": [ + "0000 0004 0614 0717" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5171560" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00j8x3x80.json b/v1.52/v1/00j8x3x80.json new file mode 100644 index 000000000..c308b4b82 --- /dev/null +++ b/v1.52/v1/00j8x3x80.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00j8x3x80", + "name": "FSU Coastal and Marine Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Florida State University", + "type": "Parent", + "id": "https://ror.org/05g3dte14" + } + ], + "addresses": [ + { + "lat": 29.93262, + "lng": -84.45555, + "state": null, + "state_code": null, + "city": "Saint Teresa", + "geonames_city": { + "id": 4171613, + "city": "Saint Teresa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://marinelab.fsu.edu" + ], + "aliases": [ + "FSU Coastal & Marine Lab", + "FSU Coastal & Marine Laboratory", + "FSU Coastal Marine Lab", + "FSU Edward Ball Marine Laboratory", + "FSU Marine Lab", + "FSU Oceanic Institute", + "FSU Oceanographic Institute", + "Florida State University Coastal and Marine Laboratory", + "Florida State University Marine Laboratory" + ], + "acronyms": [ + "CML", + "FSUCML" + ], + "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.52/v1/00jga9g46.json b/v1.52/v1/00jga9g46.json new file mode 100644 index 000000000..3baf85b5b --- /dev/null +++ b/v1.52/v1/00jga9g46.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00jga9g46", + "name": "Mi̇lli̇ Eği̇ti̇m Bakanliği", + "email_address": null, + "ip_addresses": [], + "established": 1920, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.meb.gov.tr" + ], + "aliases": [ + "Milli Egitim Bakanligi", + "Ministry of National Education", + "T.C. Milli Egitim Bakanligi", + "T.C. Millî Eğitim Bakanlığı", + "Turkish Ministry of National Education", + "Türkiye Cumhuriyeti Millî Eğitim Bakanlığı" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_National_Education_(Turkey)", + "labels": [], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100013898" + ], + "preferred": "501100013898" + }, + "GRID": { + "all": "grid.436380.a", + "preferred": "grid.436380.a" + }, + "ISNI": { + "all": [ + "0000 0001 2179 4856" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1359675" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00jjx8s55.json b/v1.52/v1/00jjx8s55.json new file mode 100644 index 000000000..5287e5dba --- /dev/null +++ b/v1.52/v1/00jjx8s55.json @@ -0,0 +1,415 @@ +{ + "id": "https://ror.org/00jjx8s55", + "name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire AstroParticule et Cosmologie", + "type": "Child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "CEA Cadarache", + "type": "Child", + "id": "https://ror.org/01rs1gy10" + }, + { + "label": "CEA DAM Île-de-France", + "type": "Child", + "id": "https://ror.org/00kn4eb29" + }, + { + "label": "CEA Grenoble", + "type": "Child", + "id": "https://ror.org/02mg6n827" + }, + { + "label": "Centre Lasers Intenses et Applications", + "type": "Child", + "id": "https://ror.org/02910d597" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "Child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherche sur les Ions, les Matériaux et la Photonique", + "type": "Child", + "id": "https://ror.org/02y0gk295" + }, + { + "label": "Laboratoire Chrono-Environnement", + "type": "Child", + "id": "https://ror.org/028cef883" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "Child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Direction des énergies", + "type": "Child", + "id": "https://ror.org/03cwzta72" + }, + { + "label": "Direction de la Recherche Fondamentale", + "type": "Child", + "id": "https://ror.org/01yvj5k91" + }, + { + "label": "Direction de la Recherche Technologique", + "type": "Child", + "id": "https://ror.org/02ggzyd20" + }, + { + "label": "Frédéric Joliot Institute for Life Sciences", + "type": "Child", + "id": "https://ror.org/016pnwd02" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "Child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Institut National de l'Énergie Solaire", + "type": "Child", + "id": "https://ror.org/00qk0vr83" + }, + { + "label": "Institut de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Institut de Radiobiologie Cellulaire et Moléculaire", + "type": "Child", + "id": "https://ror.org/04ef91678" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "Child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Institut de Chimie Séparative de Marcoule", + "type": "Child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institut de Biologie Intégrative de la Cellule", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Institut de Chimie Organique et Analytique", + "type": "Child", + "id": "https://ror.org/03ywn7d79" + }, + { + "label": "Laboratoire des Solides Irradiés", + "type": "Child", + "id": "https://ror.org/015x8rz21" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "Child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire Léon Brillouin", + "type": "Child", + "id": "https://ror.org/029rmm934" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "Child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire des Composites Thermo Structuraux", + "type": "Child", + "id": "https://ror.org/02n2h9t24" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Nanosciences et Innovation pour les Matériaux, la Biomédecine et l'Énergie", + "type": "Child", + "id": "https://ror.org/04vg26t07" + }, + { + "label": "Centre National de Recherche en Génomique Humaine", + "type": "Child", + "id": "https://ror.org/004yvsb77" + }, + { + "label": "Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux", + "type": "Child", + "id": "https://ror.org/00enct420" + }, + { + "label": "Service de Physique de l'État Condensé", + "type": "Child", + "id": "https://ror.org/0247p4w70" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Institut de Recherche Interdisciplinaire de Grenoble", + "type": "Child", + "id": "https://ror.org/00byxdz40" + }, + { + "label": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "type": "Child", + "id": "https://ror.org/005yfhm28" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "Child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Laboratoire Modélisation et Exploration des Matériaux", + "type": "Child", + "id": "https://ror.org/00ndvqf03" + }, + { + "label": "Transporteurs, Imagerie et Radiothérapie en Oncologie - Mécanismes Biologiques des Altérations du Tissu Osseux", + "type": "Child", + "id": "https://ror.org/051c1vb08" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "Child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "Child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire Biologie et Biotechnologie pour la Santé", + "type": "Child", + "id": "https://ror.org/0557vhy43" + }, + { + "label": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "type": "Child", + "id": "https://ror.org/0535cbn94" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "CEA Paris-Saclay", + "type": "Child", + "id": "https://ror.org/03n15ch10" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cea.fr/" + ], + "aliases": [], + "acronyms": [ + "CEA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/French_Alternative_Energies_and_Atomic_Energy_Commission", + "labels": [ + { + "label": "Atomic Energy and Alternative Energies Commission", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006489" + ], + "preferred": null + }, + "GRID": { + "all": "grid.5583.b", + "preferred": "grid.5583.b" + }, + "ISNI": { + "all": [ + "0000 0001 2299 8025" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q868550" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00jmfr291.json b/v1.52/v1/00jmfr291.json new file mode 100644 index 000000000..363a268ca --- /dev/null +++ b/v1.52/v1/00jmfr291.json @@ -0,0 +1,179 @@ +{ + "id": "https://ror.org/00jmfr291", + "name": "University of Michigan–Ann Arbor", + "email_address": null, + "ip_addresses": [], + "established": 1817, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Michigan Sea Grant", + "type": "Child", + "id": "https://ror.org/015tnsz82" + }, + { + "label": "Michigan Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/057mgcy61" + }, + { + "label": "University of Michigan–Dearborn", + "type": "Child", + "id": "https://ror.org/035wtm547" + }, + { + "label": "University of Michigan–Flint", + "type": "Child", + "id": "https://ror.org/01c3xc117" + }, + { + "label": "Inter-university Consortium for Political and Social Research", + "type": "Child", + "id": "https://ror.org/02q7mkh03" + }, + { + "label": "University of Michigan Press", + "type": "Child", + "id": "https://ror.org/00rx1p510" + }, + { + "label": "University of Michigan Biological Station", + "type": "Child", + "id": "https://ror.org/02hhndj92" + }, + { + "label": "Hurley Medical Center", + "type": "Related", + "id": "https://ror.org/034npj057" + }, + { + "label": "Michigan Medicine", + "type": "Related", + "id": "https://ror.org/01zcpa714" + }, + { + "label": "Arctic Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/04pk7zz41" + }, + { + "label": "Cooperative Institute for Great Lakes Research", + "type": "Child", + "id": "https://ror.org/04xgzv028" + } + ], + "addresses": [ + { + "lat": 42.27756, + "lng": -83.74088, + "state": null, + "state_code": null, + "city": "Ann Arbor", + "geonames_city": { + "id": 4984247, + "city": "Ann Arbor", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umich.edu" + ], + "aliases": [ + "UMich" + ], + "acronyms": [ + "UM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Michigan", + "labels": [ + { + "label": "University of Michigan", + "iso639": "en" + }, + { + "label": "Université du Michigan", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007270", + "100008192", + "100006790", + "100006801", + "100008269", + "100005953", + "100008455", + "100008456", + "100006652", + "100008115", + "100005993", + "100009539", + "100005543", + "100005949", + "100008557", + "100006416", + "100005476", + "100011232" + ], + "preferred": "100007270" + }, + "GRID": { + "all": "grid.214458.e", + "preferred": "grid.214458.e" + }, + "ISNI": { + "all": [ + "0000 0000 8683 7370", + "0000 0004 1936 7347" + ], + "preferred": "0000 0004 1936 7347" + }, + "Wikidata": { + "all": [ + "Q230492" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00jvxk918.json b/v1.52/v1/00jvxk918.json new file mode 100644 index 000000000..b3e58fcd7 --- /dev/null +++ b/v1.52/v1/00jvxk918.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00jvxk918", + "name": "Quantum Motion Technologies (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.75222, + "lng": -1.25596, + "state": null, + "state_code": null, + "city": "Oxford", + "geonames_city": { + "id": 2640729, + "city": "Oxford", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://quantummotion.tech" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.510746.1", + "preferred": "grid.510746.1" + }, + "Wikidata": { + "all": [ + "Q97065158" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00jxe7243.json b/v1.52/v1/00jxe7243.json new file mode 100644 index 000000000..836372bb6 --- /dev/null +++ b/v1.52/v1/00jxe7243.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/00jxe7243", + "name": "Laboratoire Physiologie Cellulaire & Végétale", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Institut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lpcv.fr" + ], + "aliases": [], + "acronyms": [ + "LPCV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratoire de Physiologie Cellulaire Végétale", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462518.c", + "preferred": "grid.462518.c" + }, + "ISNI": { + "all": [ + "0000 0004 0613 5141" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261479" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00k9hfk65.json b/v1.52/v1/00k9hfk65.json new file mode 100644 index 000000000..862721dd0 --- /dev/null +++ b/v1.52/v1/00k9hfk65.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00k9hfk65", + "name": "American Society of Neuroradiology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.83281, + "lng": -87.92895, + "state": null, + "state_code": null, + "city": "Oak Brook", + "geonames_city": { + "id": 4904277, + "city": "Oak Brook", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.asnr.org/" + ], + "aliases": [], + "acronyms": [ + "ASNR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100003193", + "100011975" + ], + "preferred": "100011975" + }, + "GRID": { + "all": "grid.479017.c", + "preferred": "grid.479017.c" + }, + "ISNI": { + "all": [ + "0000 0000 8564 4913" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00ka0b792.json b/v1.52/v1/00ka0b792.json new file mode 100644 index 000000000..a0bff5de0 --- /dev/null +++ b/v1.52/v1/00ka0b792.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/00ka0b792", + "name": "Universidad del Chubut", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -43.30016, + "lng": -65.10228, + "state": null, + "state_code": null, + "city": "Rawson", + "geonames_city": { + "id": 3839307, + "city": "Rawson", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://udc.edu.ar" + ], + "aliases": [], + "acronyms": [ + "UDC" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_del_Chubut", + "labels": [ + { + "label": "University of Chubut", + "iso639": "en" + } + ], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q6156842" + ], + "preferred": "Q6156842" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00kdfr768.json b/v1.52/v1/00kdfr768.json new file mode 100644 index 000000000..a91fc643a --- /dev/null +++ b/v1.52/v1/00kdfr768.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00kdfr768", + "name": "Sekolah Tinggi Ilmu Hukum Sumpah Pemuda", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -2.91673, + "lng": 104.7458, + "state": null, + "state_code": null, + "city": "Palembang", + "geonames_city": { + "id": 1633070, + "city": "Palembang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://stihpada.ac.id" + ], + "aliases": [ + "School of Law Sumpah Pemuda", + "Youth Pledge School of Law" + ], + "acronyms": [ + "STIHPADA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Sumpah Pemuda School of Law", + "iso639": "en" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9895 3686" + ], + "preferred": "0000 0000 9895 3686" + }, + "Wikidata": { + "all": [ + "Q19747794" + ], + "preferred": "Q19747794" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00knds749.json b/v1.52/v1/00knds749.json new file mode 100644 index 000000000..00b9ee7c2 --- /dev/null +++ b/v1.52/v1/00knds749.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00knds749", + "name": "Himachal Pradesh National Law University, Shimla", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.10442, + "lng": 77.16662, + "state": null, + "state_code": null, + "city": "Shimla", + "geonames_city": { + "id": 1256237, + "city": "Shimla", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hpnlu.ac.in" + ], + "aliases": [ + "HPNLU, Shimla", + "Himachal Pradesh National Law University", + "हिमाचल प्रदेश नेशनल लॉ यूनिवर्सिटी, शिमला" + ], + "acronyms": [ + "HPNLU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Himachal_Pradesh_National_Law_University", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8021 6484" + ], + "preferred": "0000 0004 8021 6484" + }, + "Wikidata": { + "all": [ + "Q27963971" + ], + "preferred": "Q27963971" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00kt5kp12.json b/v1.52/v1/00kt5kp12.json new file mode 100644 index 000000000..1ba8eba9b --- /dev/null +++ b/v1.52/v1/00kt5kp12.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/00kt5kp12", + "name": "MSD (France)", + "email_address": null, + "ip_addresses": [], + "established": 1891, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "MSD (United States)", + "type": "Parent", + "id": "https://ror.org/02891sr49" + } + ], + "addresses": [ + { + "lat": 48.89672, + "lng": 2.25666, + "state": null, + "state_code": null, + "city": "Courbevoie", + "geonames_city": { + "id": 3023141, + "city": "Courbevoie", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.msd-france.com/Pages/home.aspx" + ], + "aliases": [ + "Merck Sharp & Dohme" + ], + "acronyms": [ + "MSD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Merck_%26_Co.", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016912" + ], + "preferred": "100016912" + }, + "GRID": { + "all": "grid.473499.4", + "preferred": "grid.473499.4" + }, + "ISNI": { + "all": [ + "0000 0001 0658 704X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30266967" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00kw1sm04.json b/v1.52/v1/00kw1sm04.json new file mode 100644 index 000000000..b93e8d880 --- /dev/null +++ b/v1.52/v1/00kw1sm04.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/00kw1sm04", + "name": "European Space Astronomy Centre", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "European Space Agency", + "type": "Parent", + "id": "https://ror.org/03wd9za21" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.esa.int/About_Us/ESAC" + ], + "aliases": [], + "acronyms": [ + "ESAC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_Space_Astronomy_Centre", + "labels": [ + { + "label": "Agence Spatiale Européenne", + "iso639": "fr" + }, + { + "label": "Agencia Espacial Europea", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.450273.7", + "preferred": "grid.450273.7" + }, + "ISNI": { + "all": [ + "0000 0004 0623 7009" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1378216" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00kx55e87.json b/v1.52/v1/00kx55e87.json new file mode 100644 index 000000000..58ca0030d --- /dev/null +++ b/v1.52/v1/00kx55e87.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00kx55e87", + "name": "Poltava State Medical University", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ukrainian Medical Stomatological Academy", + "type": "Related", + "id": "https://ror.org/05cczs510" + } + ], + "addresses": [ + { + "lat": 49.58925, + "lng": 34.55367, + "state": null, + "state_code": null, + "city": "Poltava", + "geonames_city": { + "id": 696643, + "city": "Poltava", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pdmu.edu.ua" + ], + "aliases": [], + "acronyms": [ + "PSMU", + "ПДМУ" + ], + "status": "active", + "wikipedia_url": "https://uk.wikipedia.org/wiki/%D0%9F%D0%BE%D0%BB%D1%82%D0%B0%D0%B2%D1%81%D1%8C%D0%BA%D0%B8%D0%B9_%D0%B4%D0%B5%D1%80%D0%B6%D0%B0%D0%B2%D0%BD%D0%B8%D0%B9_%D0%BC%D0%B5%D0%B4%D0%B8%D1%87%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", + "labels": [ + { + "label": "Полтавський державний медичний університет", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q19972112" + ], + "preferred": "Q19972112" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00m0asz87.json b/v1.52/v1/00m0asz87.json new file mode 100644 index 000000000..056f906b8 --- /dev/null +++ b/v1.52/v1/00m0asz87.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00m0asz87", + "name": "Politeknik Negeri Batam", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 1.14937, + "lng": 104.02491, + "state": null, + "state_code": null, + "city": "Batam", + "geonames_city": { + "id": 6295587, + "city": "Batam", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://polibatam.ac.id" + ], + "aliases": [ + "Polibatam", + "State Polytechnic of Batam" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Politeknik_Negeri_Batam", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018572" + ], + "preferred": "100018572" + }, + "ISNI": { + "all": [ + "0000 0004 0491 7932" + ], + "preferred": "0000 0004 0491 7932" + }, + "Wikidata": { + "all": [ + "Q12506025" + ], + "preferred": "Q12506025" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00m2zh467.json b/v1.52/v1/00m2zh467.json new file mode 100644 index 000000000..f16b40203 --- /dev/null +++ b/v1.52/v1/00m2zh467.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00m2zh467", + "name": "arXiv", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Cornell University", + "type": "Parent", + "id": "https://ror.org/05bnh6r87" + } + ], + "addresses": [ + { + "lat": 42.44063, + "lng": -76.49661, + "state": null, + "state_code": null, + "city": "Ithaca", + "geonames_city": { + "id": 5122432, + "city": "Ithaca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://arxiv.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ArXiv", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q118398" + ], + "preferred": "Q118398" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00m31ft63.json b/v1.52/v1/00m31ft63.json new file mode 100644 index 000000000..e522197af --- /dev/null +++ b/v1.52/v1/00m31ft63.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/00m31ft63", + "name": "University of Split", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Klinički Bolnički Centar Split", + "type": "Related", + "id": "https://ror.org/0462dsc42" + }, + { + "label": "Klinikum Coburg", + "type": "Related", + "id": "https://ror.org/02d1rkr63" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 43.50891, + "lng": 16.43915, + "state": null, + "state_code": null, + "city": "Split", + "geonames_city": { + "id": 3190261, + "city": "Split", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unist.hr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Split", + "labels": [ + { + "label": "Sveučilište u Splitu", + "iso639": "hr" + }, + { + "label": "Свеучилиште у Сплиту", + "iso639": "sr" + } + ], + "country": { + "country_name": "Croatia", + "country_code": "HR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100015391" + ], + "preferred": "501100015391" + }, + "GRID": { + "all": "grid.38603.3e", + "preferred": "grid.38603.3e" + }, + "ISNI": { + "all": [ + "0000 0004 0644 1675" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q609301" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00ma0mg56.json b/v1.52/v1/00ma0mg56.json new file mode 100644 index 000000000..1b434b3a9 --- /dev/null +++ b/v1.52/v1/00ma0mg56.json @@ -0,0 +1,198 @@ +{ + "id": "https://ror.org/00ma0mg56", + "name": "NHS Grampian", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Aberdeen Maternity Hospital", + "type": "Child", + "id": "https://ror.org/0020hse07" + }, + { + "label": "Aberdeen Royal Infirmary", + "type": "Child", + "id": "https://ror.org/02q49af68" + }, + { + "label": "Campbell Hospital", + "type": "Child", + "id": "https://ror.org/013b2a427" + }, + { + "label": "Dr Gray's Hospital", + "type": "Child", + "id": "https://ror.org/0382m3r69" + }, + { + "label": "Fleming Cottage Hospital", + "type": "Child", + "id": "https://ror.org/043qb7f72" + }, + { + "label": "Glen O'Dee Hospital", + "type": "Child", + "id": "https://ror.org/05t8tj069" + }, + { + "label": "Insch War Memorial Hospital", + "type": "Child", + "id": "https://ror.org/04zympr28" + }, + { + "label": "Inverurie Hospital", + "type": "Child", + "id": "https://ror.org/036g8b848" + }, + { + "label": "Jubilee Hospital", + "type": "Child", + "id": "https://ror.org/04dp8fd47" + }, + { + "label": "Kincardine Community Hospital", + "type": "Child", + "id": "https://ror.org/02pktej77" + }, + { + "label": "Leanchoil Hospital", + "type": "Child", + "id": "https://ror.org/012m63179" + }, + { + "label": "Peterhead Community Hospital", + "type": "Child", + "id": "https://ror.org/03vxaxy97" + }, + { + "label": "Royal Aberdeen Children's Hospital", + "type": "Child", + "id": "https://ror.org/0264d9934" + }, + { + "label": "Royal Cornhill Hospital", + "type": "Child", + "id": "https://ror.org/02gaqn537" + }, + { + "label": "Seafield Hospital", + "type": "Child", + "id": "https://ror.org/05mg1ma72" + }, + { + "label": "Stephen Cottage Hospital", + "type": "Child", + "id": "https://ror.org/0560ehd58" + }, + { + "label": "Turner Memorial Hospital", + "type": "Child", + "id": "https://ror.org/041dnc326" + }, + { + "label": "Turriff Cottage Hospital", + "type": "Child", + "id": "https://ror.org/01p3c2g14" + }, + { + "label": "Ugie Hospital", + "type": "Child", + "id": "https://ror.org/02j3f7p78" + }, + { + "label": "Woodend Hospital", + "type": "Child", + "id": "https://ror.org/02j8r0p47" + }, + { + "label": "Woolmanhill Hospital", + "type": "Child", + "id": "https://ror.org/00ggs5315" + } + ], + "addresses": [ + { + "lat": 57.14369, + "lng": -2.09814, + "state": null, + "state_code": null, + "city": "Aberdeen", + "geonames_city": { + "id": 2657832, + "city": "Aberdeen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nhsgrampian.org/nhsgrampian/gra_display_home_2015.jsp?p_applic=CCC&p_service=Content.show&pContentID=9298&" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023968" + ], + "preferred": "501100023968" + }, + "GRID": { + "all": "grid.411800.c", + "preferred": "grid.411800.c" + }, + "ISNI": { + "all": [ + "0000 0001 0237 3845" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6954137" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00mas2304.json b/v1.52/v1/00mas2304.json new file mode 100644 index 000000000..95ea82da7 --- /dev/null +++ b/v1.52/v1/00mas2304.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/00mas2304", + "name": "Guangxi Logistics Vocational and Technical College", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11603, + "lng": 109.59472, + "state": null, + "state_code": null, + "city": "Guigang", + "geonames_city": { + "id": 1809532, + "city": "Guigang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gxlvtc.edu.cn" + ], + "aliases": [], + "acronyms": [ + "GXLVTC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "广西物流职业技术学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q112677049" + ], + "preferred": "Q112677049" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00mgd1d10.json b/v1.52/v1/00mgd1d10.json new file mode 100644 index 000000000..12c7ca7c3 --- /dev/null +++ b/v1.52/v1/00mgd1d10.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00mgd1d10", + "name": "Laboratoire Paragraphe", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "CY Cergy Paris Université", + "type": "Parent", + "id": "https://ror.org/043htjv09" + } + ], + "addresses": [ + { + "lat": -20.88231, + "lng": 55.4504, + "state": null, + "state_code": null, + "city": "Saint-Denis", + "geonames_city": { + "id": 935264, + "city": "Saint-Denis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://laboratoire-paragraphe.univ-paris8.fr" + ], + "aliases": [ + "CRAC-Laboratoire Paragraphe" + ], + "acronyms": [ + "PARAGRAPHE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Réunion", + "country_code": "RE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785017" + ], + "preferred": "Q51785017" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00mgfk810.json b/v1.52/v1/00mgfk810.json new file mode 100644 index 000000000..d8b183b76 --- /dev/null +++ b/v1.52/v1/00mgfk810.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/00mgfk810", + "name": "The Navigation Fund", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.87159, + "lng": -122.27275, + "state": null, + "state_code": null, + "city": "Berkeley", + "geonames_city": { + "id": 5327684, + "city": "Berkeley", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://navigation.org" + ], + "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.52/v1/00mmgvh45.json b/v1.52/v1/00mmgvh45.json new file mode 100644 index 000000000..7728c8abd --- /dev/null +++ b/v1.52/v1/00mmgvh45.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00mmgvh45", + "name": "Institut de Droit Européen des Droits de l'Homme", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://idedh.edu.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "IDEDH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2156 7143" + ], + "preferred": "0000 0001 2156 7143" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00mpnj452.json b/v1.52/v1/00mpnj452.json new file mode 100644 index 000000000..e5e1529e0 --- /dev/null +++ b/v1.52/v1/00mpnj452.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00mpnj452", + "name": "Freedom's Wings International", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.68066, + "lng": -74.64544, + "state": null, + "state_code": null, + "city": "Bedminster", + "geonames_city": { + "id": 5095528, + "city": "Bedminster", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://freedomswings.org/" + ], + "aliases": [], + "acronyms": [ + "FWI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.428612.b", + "preferred": "grid.428612.b" + }, + "Wikidata": { + "all": [ + "Q30287252" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00mskh452.json b/v1.52/v1/00mskh452.json new file mode 100644 index 000000000..1e73b538b --- /dev/null +++ b/v1.52/v1/00mskh452.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00mskh452", + "name": "ÅForsk", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.32938, + "lng": 18.06871, + "state": null, + "state_code": null, + "city": "Stockholm", + "geonames_city": { + "id": 2673730, + "city": "Stockholm", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://aforsk.com" + ], + "aliases": [ + "Stiftelsen ÅForsk", + "ÅForsk Foundation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://sv.wikipedia.org/wiki/Stiftelsen_%C3%85Forsk", + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009789", + "501100009733" + ], + "preferred": "501100009733" + }, + "ISNI": { + "all": [ + "0000 0004 7478 790X" + ], + "preferred": "0000 0004 7478 790X" + }, + "Wikidata": { + "all": [ + "Q31897784" + ], + "preferred": "Q31897784" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00nrbzg90.json b/v1.52/v1/00nrbzg90.json new file mode 100644 index 000000000..63bccbf3e --- /dev/null +++ b/v1.52/v1/00nrbzg90.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00nrbzg90", + "name": "Laboratoire Univers et Particules de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Parent", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lupm.in2p3.fr" + ], + "aliases": [], + "acronyms": [ + "LUPM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Montpellier Universe and Particles Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464184.b", + "preferred": "grid.464184.b" + }, + "ISNI": { + "all": [ + "0000 0004 0382 470X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00nrven85.json b/v1.52/v1/00nrven85.json new file mode 100644 index 000000000..202cff795 --- /dev/null +++ b/v1.52/v1/00nrven85.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00nrven85", + "name": "Structures Formelles du Langage", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + } + ], + "addresses": [ + { + "lat": 48.93564, + "lng": 2.35387, + "state": null, + "state_code": null, + "city": "Saint-Denis", + "geonames_city": { + "id": 2980916, + "city": "Saint-Denis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umr7023.cnrs.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503400.2", + "preferred": "grid.503400.2" + }, + "ISNI": { + "all": [ + "0000 0004 0452 6851" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51781389" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00nx0vn86.json b/v1.52/v1/00nx0vn86.json new file mode 100644 index 000000000..402cbbf09 --- /dev/null +++ b/v1.52/v1/00nx0vn86.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/00nx0vn86", + "name": "Macao University of Tourism", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.20056, + "lng": 113.54611, + "state": null, + "state_code": null, + "city": "Macao", + "geonames_city": { + "id": 1821274, + "city": "Macao", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utm.edu.mo" + ], + "aliases": [ + "Institute for Tourism Studies", + "Instituto de Formação Turística", + "旅遊學院" + ], + "acronyms": [ + "IFT", + "IFTM", + "UTM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_for_Tourism_Studies", + "labels": [ + { + "label": "Universidade de Turismo de Macau", + "iso639": "pt" + }, + { + "label": "澳門旅遊大學", + "iso639": "zh" + } + ], + "country": { + "country_name": "Macao", + "country_code": "MO" + }, + "external_ids": { + "GRID": { + "all": "grid.445016.2", + "preferred": "grid.445016.2" + }, + "ISNI": { + "all": [ + "0000 0004 0605 0308" + ], + "preferred": "0000 0004 0605 0308" + }, + "Wikidata": { + "all": [ + "Q9289400" + ], + "preferred": "Q9289400" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00nyrjc53.json b/v1.52/v1/00nyrjc53.json new file mode 100644 index 000000000..5adbb7ef4 --- /dev/null +++ b/v1.52/v1/00nyrjc53.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00nyrjc53", + "name": "Departament de Salut", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of Catalonia", + "type": "Parent", + "id": "https://ror.org/01bg62x04" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://salutweb.gencat.cat" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Departamento de Salud", + "iso639": "es" + }, + { + "label": "Department of Health", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010552" + ], + "preferred": "501100010552" + }, + "GRID": { + "all": "grid.425910.b", + "preferred": "grid.425910.b" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00pdj1108.json b/v1.52/v1/00pdj1108.json new file mode 100644 index 000000000..9ef78104f --- /dev/null +++ b/v1.52/v1/00pdj1108.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/00pdj1108", + "name": "RFF-CMCC European Institute on Economics and the Environment", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "CMCC Foundation - Euro-Mediterranean Center on Climate Change", + "type": "Parent", + "id": "https://ror.org/01tf11a61" + }, + { + "label": "Resources For The Future", + "type": "Parent", + "id": "https://ror.org/04qpegs24" + } + ], + "addresses": [ + { + "lat": 45.46427, + "lng": 9.18951, + "state": null, + "state_code": null, + "city": "Milan", + "geonames_city": { + "id": 3173435, + "city": "Milan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.eiee.org/" + ], + "aliases": [], + "acronyms": [ + "EIEE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.511456.2", + "preferred": "grid.511456.2" + }, + "ISNI": { + "all": [ + "0000 0004 9291 3260" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00pe0tf51.json b/v1.52/v1/00pe0tf51.json new file mode 100644 index 000000000..7007a6da3 --- /dev/null +++ b/v1.52/v1/00pe0tf51.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/00pe0tf51", + "name": "Food and Agriculture Organization of the United Nations", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "FAO/IAEA Agriculture and Biotechnology Laboratories", + "type": "Child", + "id": "https://ror.org/02zty9d43" + }, + { + "label": "Somalia Water and Land Information", + "type": "Child", + "id": "https://ror.org/008zzz711" + }, + { + "label": "United Nations", + "type": "Parent", + "id": "https://ror.org/006kxhp52" + }, + { + "label": "Benefit-sharing Fund of the International Treaty on Plant Genetic Resources for Food and Agriculture", + "type": "Child", + "id": "https://ror.org/02b1bbq66" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.fao.org/home/en/" + ], + "aliases": [], + "acronyms": [ + "FAO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Food_and_Agriculture_Organization", + "labels": [ + { + "label": "Organisation des Nations Unies pour l'Alimentation et l'Agriculture", + "iso639": "fr" + }, + { + "label": "Organizzazione delle Nazioni Unite per l'Alimentazione e l'Agricoltura", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.420153.1", + "preferred": "grid.420153.1" + }, + "ISNI": { + "all": [ + "0000 0004 1937 0300" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q82151" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00pg5jh14.json b/v1.52/v1/00pg5jh14.json new file mode 100644 index 000000000..50c0e614c --- /dev/null +++ b/v1.52/v1/00pg5jh14.json @@ -0,0 +1,306 @@ +{ + "id": "https://ror.org/00pg5jh14", + "name": "Assistance Publique – Hôpitaux de Paris", + "email_address": null, + "ip_addresses": [], + "established": 1849, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpital Beaujon", + "type": "Child", + "id": "https://ror.org/03jyzk483" + }, + { + "label": "Bicêtre Hospital", + "type": "Child", + "id": "https://ror.org/05c9p1x46" + }, + { + "label": "Bretonneau Hospital", + "type": "Child", + "id": "https://ror.org/0146pps37" + }, + { + "label": "Groupe Hospitalier Cochin - Port-Royal, Hôtel-Dieu, Broca - La Collégiale", + "type": "Child", + "id": "https://ror.org/02v5bgz72" + }, + { + "label": "Hôpital Adélaïde-Hautval", + "type": "Child", + "id": "https://ror.org/01bcqbv56" + }, + { + "label": "Hôpital Albert-Chenevier", + "type": "Child", + "id": "https://ror.org/0511th722" + }, + { + "label": "Hôpital Ambroise-Paré", + "type": "Child", + "id": "https://ror.org/03j6rvb05" + }, + { + "label": "Hôpital Antoine-Béclère", + "type": "Child", + "id": "https://ror.org/04sb8a726" + }, + { + "label": "Hôpital Armand-Trousseau", + "type": "Child", + "id": "https://ror.org/00yfbr841" + }, + { + "label": "Hôpital Avicenne", + "type": "Child", + "id": "https://ror.org/03n6vs369" + }, + { + "label": "Hôpital Bichat-Claude-Bernard", + "type": "Child", + "id": "https://ror.org/03fdnmv92" + }, + { + "label": "Hôpital Charles-Foix", + "type": "Child", + "id": "https://ror.org/04v3xcy66" + }, + { + "label": "Hôpital Fernand-Widal", + "type": "Child", + "id": "https://ror.org/01zkyzz15" + }, + { + "label": "Hôpital Jean-Verdier", + "type": "Child", + "id": "https://ror.org/04pag4b70" + }, + { + "label": "Hôpital Lariboisière", + "type": "Child", + "id": "https://ror.org/02mqtne57" + }, + { + "label": "Hôpital Louis-Mourier", + "type": "Child", + "id": "https://ror.org/004nnf780" + }, + { + "label": "Hôpital Marin de Hendaye", + "type": "Child", + "id": "https://ror.org/02xhgtj20" + }, + { + "label": "Hôpital Maritime de Berck", + "type": "Child", + "id": "https://ror.org/0355tjr07" + }, + { + "label": "Hôpital Paul-Brousse", + "type": "Child", + "id": "https://ror.org/05n7yzd13" + }, + { + "label": "Hôpital Paul-Doumer", + "type": "Child", + "id": "https://ror.org/036b75x65" + }, + { + "label": "Hôpital René-Muret", + "type": "Child", + "id": "https://ror.org/03e04x797" + }, + { + "label": "Hôpital Robert-Debré", + "type": "Child", + "id": "https://ror.org/02dcqy320" + }, + { + "label": "Hôpital Rothschild", + "type": "Child", + "id": "https://ror.org/009kb8w74" + }, + { + "label": "Hôpital Saint-Antoine", + "type": "Child", + "id": "https://ror.org/01875pg84" + }, + { + "label": "Hôpital Saint-Louis", + "type": "Child", + "id": "https://ror.org/049am9t04" + }, + { + "label": "Hôpital Saint-Vincent-de-Paul", + "type": "Child", + "id": "https://ror.org/03vw2zn10" + }, + { + "label": "Hôpital Sainte-Périne", + "type": "Child", + "id": "https://ror.org/03h9w0610" + }, + { + "label": "Hôpital San Salvadour", + "type": "Child", + "id": "https://ror.org/05cmw3824" + }, + { + "label": "Hôpital de la Roche-Guyon", + "type": "Child", + "id": "https://ror.org/02t1zz428" + }, + { + "label": "Hôpitaux Universitaires Henri-Mondor", + "type": "Child", + "id": "https://ror.org/033yb0967" + }, + { + "label": "Hôpitaux Universitaires Paris-Ouest", + "type": "Child", + "id": "https://ror.org/01v676463" + }, + { + "label": "Pitié-Salpêtrière Hospital", + "type": "Child", + "id": "https://ror.org/02mh9a093" + }, + { + "label": "Hôpital Raymond-Poincaré", + "type": "Child", + "id": "https://ror.org/03pef0w96" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "Child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Plateforme d'information et de services pour les maladies rares et les médicaments orphelins", + "type": "Child", + "id": "https://ror.org/05thj7870" + }, + { + "label": "UMS-Autonomie", + "type": "Child", + "id": "https://ror.org/01ms54x07" + }, + { + "label": "Fondation Voir & Entendre", + "type": "Child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "PremUP", + "type": "Child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "Child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Centre de Recherche Saint-Antoine", + "type": "Child", + "id": "https://ror.org/03wxndv36" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "Child", + "id": "https://ror.org/01ed4t417" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.aphp.fr/" + ], + "aliases": [], + "acronyms": [ + "AP-HP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Assistance_Publique_%E2%80%93_H%C3%B4pitaux_de_Paris", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002738", + "501100009820" + ], + "preferred": null + }, + "GRID": { + "all": "grid.50550.35", + "preferred": "grid.50550.35" + }, + "ISNI": { + "all": [ + "0000 0001 2175 4109" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2867205" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00q1dg558.json b/v1.52/v1/00q1dg558.json new file mode 100644 index 000000000..2068f04c9 --- /dev/null +++ b/v1.52/v1/00q1dg558.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/00q1dg558", + "name": "Instituto Educativo Dolores Del Rio Extensión Santiago Papasquiaro Durango", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 25.04389, + "lng": -105.41917, + "state": null, + "state_code": null, + "city": "Santiago Papasquiaro", + "geonames_city": { + "id": 3983631, + "city": "Santiago Papasquiaro", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "IEDR Santiago Papasquiaro", + "Instituto Dolores del Rio", + "Instituto Educativo Dolores del Río, A. C.", + "Instituto Educativo Dolores del Río, extensión Santiago Papasquiaro, Dgo." + ], + "acronyms": [ + "IEDR AC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/00qhdy563.json b/v1.52/v1/00qhdy563.json new file mode 100644 index 000000000..dcecddf8b --- /dev/null +++ b/v1.52/v1/00qhdy563.json @@ -0,0 +1,166 @@ +{ + "id": "https://ror.org/00qhdy563", + "name": "Université Paul-Valéry Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Gouvernance, Risque, Environnement, Développement", + "type": "Child", + "id": "https://ror.org/01h4rra97" + }, + { + "label": "Institut de Recherche sur la Renaissance l'Age Classique et les Lumières", + "type": "Child", + "id": "https://ror.org/02sz8cn84" + }, + { + "label": "Laboratoire d'Informatique, de Robotique et de Microélectronique de Montpellier", + "type": "Child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Laboratoire d'Études et de Recherches Appliquées en Sciences Sociales", + "type": "Child", + "id": "https://ror.org/01bxfc994" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "Child", + "id": "https://ror.org/03kbarg82" + }, + { + "label": "Archéologie des Sociétés Méditerranéennes", + "type": "Child", + "id": "https://ror.org/04n9eyw42" + }, + { + "label": "Praxiling", + "type": "Child", + "id": "https://ror.org/03ym2w748" + }, + { + "label": "Centre de Recherche et d'Études Germaniques", + "type": "Child", + "id": "https://ror.org/021hb4c69" + }, + { + "label": "Dynamique des Capacités Humaines et des Conduites de Santé", + "type": "Child", + "id": "https://ror.org/057trhh06" + }, + { + "label": "Laboratoire de Géographie et d'Aménagement de Montpellier", + "type": "Child", + "id": "https://ror.org/00vazrw17" + }, + { + "label": "Savoirs, Environnement, Sociétés", + "type": "Child", + "id": "https://ror.org/04gpe6h67" + }, + { + "label": "Maison des Sciences de l'Homme SUD", + "type": "Child", + "id": "https://ror.org/05s6hm275" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-montp3.fr/" + ], + "aliases": [ + "Université Paul Valéry Montpellier 3" + ], + "acronyms": [ + "UPVM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Paul_Val%C3%A9ry_University,_Montpellier_III", + "labels": [ + { + "label": "Université Paul-Valéry Montpellier III", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.440910.8", + "preferred": "grid.440910.8" + }, + "ISNI": { + "all": [ + "0000 0001 2196 152X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2912244" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00qv0tw17.json b/v1.52/v1/00qv0tw17.json new file mode 100644 index 000000000..03b9d61e1 --- /dev/null +++ b/v1.52/v1/00qv0tw17.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/00qv0tw17", + "name": "SUNY College of Environmental Science and Forestry", + "email_address": null, + "ip_addresses": [], + "established": 1911, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Edna Bailey Sussman Foundation", + "type": "Child", + "id": "https://ror.org/024tqtx80" + }, + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 43.04812, + "lng": -76.14742, + "state": null, + "state_code": null, + "city": "Syracuse", + "geonames_city": { + "id": 5140405, + "city": "Syracuse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.esf.edu" + ], + "aliases": [ + "State University of New York College of Environmental Science and Forestry" + ], + "acronyms": [ + "ESF", + "SUNY ESF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_College_of_Environmental_Science_and_Forestry", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100011961" + ], + "preferred": "100011961" + }, + "GRID": { + "all": "grid.264257.0", + "preferred": "grid.264257.0" + }, + "ISNI": { + "all": [ + "0000 0004 0387 8708" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7603610" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00qxr8t08.json b/v1.52/v1/00qxr8t08.json new file mode 100644 index 000000000..66008b7cf --- /dev/null +++ b/v1.52/v1/00qxr8t08.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00qxr8t08", + "name": "Canadian Food Inspection Agency", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://inspection.canada.ca" + ], + "aliases": [], + "acronyms": [ + "CFIA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Canadian_Food_Inspection_Agency", + "labels": [ + { + "label": "Agence Canadienne d'Inspection des Aliments", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "100009837" + ], + "preferred": null + }, + "GRID": { + "all": "grid.418040.9", + "preferred": "grid.418040.9" + }, + "ISNI": { + "all": [ + "0000 0001 2177 1232" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2826578" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00qzypv28.json b/v1.52/v1/00qzypv28.json new file mode 100644 index 000000000..33d4c8821 --- /dev/null +++ b/v1.52/v1/00qzypv28.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/00qzypv28", + "name": "Vellore Institute of Technology University", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Caledonian College of Engineering", + "type": "Related", + "id": "https://ror.org/01hhnmk90" + } + ], + "addresses": [ + { + "lat": 12.9184, + "lng": 79.13255, + "state": null, + "state_code": null, + "city": "Vellore", + "geonames_city": { + "id": 1253286, + "city": "Vellore", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.vit.ac.in/" + ], + "aliases": [ + "Vellore Engineering College" + ], + "acronyms": [ + "VIT" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/VIT_University", + "labels": [ + { + "label": "வேலூர் தொழில்நுட்ப பல்கலைக்கழகம்", + "iso639": "ta" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004728", + "100019904" + ], + "preferred": "100019904" + }, + "GRID": { + "all": "grid.412813.d", + "preferred": "grid.412813.d" + }, + "ISNI": { + "all": [ + "0000 0001 0687 4946" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3298919" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00r0qs524.json b/v1.52/v1/00r0qs524.json new file mode 100644 index 000000000..ece9534e5 --- /dev/null +++ b/v1.52/v1/00r0qs524.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00r0qs524", + "name": "FAIRAgro", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 52.50704, + "lng": 14.13716, + "state": null, + "state_code": null, + "city": "Müncheberg", + "geonames_city": { + "id": 2867723, + "city": "Müncheberg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fairagro.net" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "FAIR Data Infrastructure for Agrosystems", + "iso639": "en" + }, + { + "label": "FAIRe Dateninfrastruktur für die Agrosystemforschung", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q113486316" + ], + "preferred": "Q113486316" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00r6gdp61.json b/v1.52/v1/00r6gdp61.json new file mode 100644 index 000000000..78041f1de --- /dev/null +++ b/v1.52/v1/00r6gdp61.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00r6gdp61", + "name": "Instituto Nacional de Investigaciones Forestales Agrícolas y Pecuarias", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.3467, + "lng": -99.16174, + "state": null, + "state_code": null, + "city": "Coyoacán", + "geonames_city": { + "id": 3530139, + "city": "Coyoacán", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.inifap.gob.mx/" + ], + "aliases": [], + "acronyms": [ + "INIFAP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100011893" + ], + "preferred": "501100011893" + }, + "GRID": { + "all": "grid.473273.6", + "preferred": "grid.473273.6" + }, + "ISNI": { + "all": [ + "0000 0001 2170 5278" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00rt27171.json b/v1.52/v1/00rt27171.json new file mode 100644 index 000000000..3b41f69d9 --- /dev/null +++ b/v1.52/v1/00rt27171.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/00rt27171", + "name": "Laboratory of Pathogens and Host Immunity", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lphi.umontpellier.fr" + ], + "aliases": [ + "Dynamique des Interactions Membranaires Normales et Pathologiques", + "Laboratory of Pathogen-Host Interactions" + ], + "acronyms": [ + "LPHI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratoire des pathogènes et de l'immunité de l'hôte", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464150.2", + "preferred": "grid.464150.2" + }, + "ISNI": { + "all": [ + "0000 0004 0383 9805" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00rydyx93.json b/v1.52/v1/00rydyx93.json new file mode 100644 index 000000000..2d93f9583 --- /dev/null +++ b/v1.52/v1/00rydyx93.json @@ -0,0 +1,684 @@ +{ + "id": "https://ror.org/00rydyx93", + "name": "Institut des Sciences Biologiques", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "Child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Laboratoire de Biochimie", + "type": "Child", + "id": "https://ror.org/01c6vgf77" + }, + { + "label": "Institut des Sciences des Plantes de Montpellier", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Intégrative des Organismes Marins", + "type": "Child", + "id": "https://ror.org/03wg93s13" + }, + { + "label": "Biologie Tissulaire et Ingénierie Thérapeutique", + "type": "Child", + "id": "https://ror.org/04fqvqs63" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bioénergétique et Ingénierie des Protéines", + "type": "Child", + "id": "https://ror.org/0060xzr04" + }, + { + "label": "Laboratoire Plasticité du Cerveau", + "type": "Child", + "id": "https://ror.org/03padqz24" + }, + { + "label": "Centre de recherche cerveau et cognition", + "type": "Child", + "id": "https://ror.org/04fhrs205" + }, + { + "label": "Centre de Recherche en Cancérologie de Lyon", + "type": "Child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Center for Infection and Immunity of Lille", + "type": "Child", + "id": "https://ror.org/00dyt5s15" + }, + { + "label": "Centre Interdisciplinaire de Recherche en Biologie", + "type": "Child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Centre de Recherche sur l'Inflammation", + "type": "Child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "Child", + "id": "https://ror.org/02dpqcy73" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "Child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "Child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Résonance Magnétique des Systèmes Biologiques", + "type": "Child", + "id": "https://ror.org/01mts2g59" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "Child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "Child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Centre de Recherche en Biologie cellulaire de Montpellier", + "type": "Child", + "id": "https://ror.org/01xpc6869" + }, + { + "label": "Institut des Sciences Cognitives Marc Jeannerod", + "type": "Child", + "id": "https://ror.org/02he5dz58" + }, + { + "label": "Contrôle de la Réponse Immune B et Lymphoproliférations", + "type": "Child", + "id": "https://ror.org/02zh2vx86" + }, + { + "label": "Department of Genomes & Genetics", + "type": "Child", + "id": "https://ror.org/05etkex69" + }, + { + "label": "Department of Virology", + "type": "Child", + "id": "https://ror.org/01xx2ne27" + }, + { + "label": "Institut de Biologie du Développement Marseille", + "type": "Child", + "id": "https://ror.org/02me5cy06" + }, + { + "label": "Gènes, synapses et cognition", + "type": "Child", + "id": "https://ror.org/027atwb90" + }, + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "Child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Epigénétique et Destin Cellulaire", + "type": "Child", + "id": "https://ror.org/03dbsav41" + }, + { + "label": "Evolution des Régulations Endocriniennes", + "type": "Child", + "id": "https://ror.org/03bpcga21" + }, + { + "label": "Expression Génétique Microbienne", + "type": "Child", + "id": "https://ror.org/05t5n2z26" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "Child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Immunologie et Neurogénétique Expérimentales et Moléculaires", + "type": "Child", + "id": "https://ror.org/01mhd9b84" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Cochin", + "type": "Child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Jacques Monod", + "type": "Child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "Child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "Child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "Child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Biochimie et Génétique Cellulaires", + "type": "Child", + "id": "https://ror.org/048xwe611" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "Child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie Physico-Chimique", + "type": "Child", + "id": "https://ror.org/01na0pb61" + }, + { + "label": "Institut de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Biologie et de Chimie des Protéines", + "type": "Child", + "id": "https://ror.org/0019x5d05" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut de Génétique Moléculaire de Montpellier", + "type": "Child", + "id": "https://ror.org/02785qs39" + }, + { + "label": "Institut de Microbiologie de la Méditerranée", + "type": "Child", + "id": "https://ror.org/012t91r40" + }, + { + "label": "Institut de Neurophysiopathologie", + "type": "Child", + "id": "https://ror.org/00w2q5j98" + }, + { + "label": "Institut de Neurosciences Cognitives et Intégratives d’Aquitaine", + "type": "Child", + "id": "https://ror.org/01a6zh966" + }, + { + "label": "Institut de Neurosciences de la Timone", + "type": "Child", + "id": "https://ror.org/043hw6336" + }, + { + "label": "Institut de Pharmacologie Moléculaire et Cellulaire", + "type": "Child", + "id": "https://ror.org/05k4ema52" + }, + { + "label": "Institut des Sciences du Mouvement Etienne-Jules Marey", + "type": "Child", + "id": "https://ror.org/03tncyc93" + }, + { + "label": "Institut des Sciences du Végétal", + "type": "Child", + "id": "https://ror.org/03aqj2f62" + }, + { + "label": "Institut du Cerveau", + "type": "Child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Thorax", + "type": "Child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut de Biologie Valrose", + "type": "Child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institut des Neurosciences Cellulaires et Intégratives", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institut de génétique et de développement de Rennes", + "type": "Child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Institut de génétique et de biologie moléculaire et cellulaire", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institut de Génétique Humaine", + "type": "Child", + "id": "https://ror.org/05ee10k25" + }, + { + "label": "Institut de Myologie", + "type": "Child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institut de Pharmacologie et de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/016zvc994" + }, + { + "label": "Institut de Recherche sur le Cancer et le Vieillissement de Nice", + "type": "Child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "Integrated Genomics and Metabolic Diseases Modeling", + "type": "Child", + "id": "https://ror.org/0300mzg60" + }, + { + "label": "Institut Interdisciplinaire de Neuroscience", + "type": "Child", + "id": "https://ror.org/032j53342" + }, + { + "label": "Centre International de Recherche en Infectiologie", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Enzymologie et Biochimie Structurales", + "type": "Child", + "id": "https://ror.org/00j1y9t40" + }, + { + "label": "Laboratoire de Biogenèse Membranaire", + "type": "Child", + "id": "https://ror.org/02nthwg11" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "Child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "Child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire de Biologie du Développement de Villefranche-sur-Mer", + "type": "Child", + "id": "https://ror.org/04hke8425" + }, + { + "label": "Laboratoire de Biologie et Pharmacologie Appliquée", + "type": "Child", + "id": "https://ror.org/03njrcx45" + }, + { + "label": "Laboratoire de Chimie Bactérienne", + "type": "Child", + "id": "https://ror.org/057zme681" + }, + { + "label": "Laboratoire de Microbiologie et Génétique Moléculaires", + "type": "Child", + "id": "https://ror.org/04rrj3a80" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire de PhysioMédecine Moléculaire", + "type": "Child", + "id": "https://ror.org/00c3ktd57" + }, + { + "label": "Laboratoire de Psychologie Cognitive", + "type": "Child", + "id": "https://ror.org/01rf5x574" + }, + { + "label": "Laboratoire de Psychologie Sociale et Cognitive", + "type": "Child", + "id": "https://ror.org/01t4k8953" + }, + { + "label": "Laboratoire de Recherche en Sciences Végétales", + "type": "Child", + "id": "https://ror.org/047z5as19" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire de Sciences Cognitives et Psycholinguistique", + "type": "Child", + "id": "https://ror.org/05fvhm231" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "Child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire des Systèmes Macromoléculaires et Signalisation", + "type": "Child", + "id": "https://ror.org/053qdb191" + }, + { + "label": "Laboratoire des Systèmes Perceptifs", + "type": "Child", + "id": "https://ror.org/030za3c40" + }, + { + "label": "Laboratoire d'étude de l'apprentissage et du développement", + "type": "Child", + "id": "https://ror.org/04mp4zc06" + }, + { + "label": "Laboratoire de Biologie Computationnelle et Quantitative", + "type": "Child", + "id": "https://ror.org/00pcqj134" + }, + { + "label": "Laboratoire de Biologie Intégrative des Modèles Marins", + "type": "Child", + "id": "https://ror.org/001c8pb03" + }, + { + "label": "Laboratoire de Biologie Moléculaire et Cellulaire des Eucaryotes", + "type": "Child", + "id": "https://ror.org/05mx55f96" + }, + { + "label": "Laboratoire de Biologie Physico-Chimique des Protéines Membranaires", + "type": "Child", + "id": "https://ror.org/03nr8xh07" + }, + { + "label": "Centre de Recherche en Neurosciences de Lyon", + "type": "Child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Laboratoire de Microbiologie, Adaptation et Pathogénie", + "type": "Child", + "id": "https://ror.org/03p3f6k20" + }, + { + "label": "Modélisation et Ingénierie des Systèmes Complexes Biologiques pour le Diagnostic", + "type": "Child", + "id": "https://ror.org/056mmjd70" + }, + { + "label": "Institut des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/001695n52" + }, + { + "label": "Dynamique du noyau", + "type": "Child", + "id": "https://ror.org/04team556" + }, + { + "label": "Génomes, biologie cellulaire et thérapeutiques", + "type": "Child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Physique des Cellules et Cancers", + "type": "Child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "Biologie du chloroplaste et perception de la lumière chez les micro-algues", + "type": "Child", + "id": "https://ror.org/001r32c80" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "Child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Physiologie et Médecine Expérimentale du Coeur et des Muscles", + "type": "Child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Laboratoire Génome et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/038207k30" + }, + { + "label": "Centre de Recherches sur la Cognition Animale", + "type": "Child", + "id": "https://ror.org/0111s2360" + }, + { + "label": "Centre de Recherches sur la Cognition et l'Apprentissage", + "type": "Child", + "id": "https://ror.org/01sdp1y98" + }, + { + "label": "Structural and Molecular Basis of Infectious Systems", + "type": "Child", + "id": "https://ror.org/00jv0wy06" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "Child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "Child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "Child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "Child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "UMS BioCore", + "type": "Child", + "id": "https://ror.org/04r5nwv94" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.81568, + "lng": 2.38487, + "state": null, + "state_code": null, + "city": "Ivry-sur-Seine", + "geonames_city": { + "id": 3012621, + "city": "Ivry-sur-Seine", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnrs.fr/insb/" + ], + "aliases": [], + "acronyms": [ + "INSB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Biological Sciences", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.456999.e", + "preferred": "grid.456999.e" + }, + "ISNI": { + "all": [ + "0000 0004 0387 060X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q24935881" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00s40r567.json b/v1.52/v1/00s40r567.json new file mode 100644 index 000000000..c90c79e83 --- /dev/null +++ b/v1.52/v1/00s40r567.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00s40r567", + "name": "Passages", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Bordeaux Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "École Nationale Supérieure d'Architecture et de Paysage de Bordeaux", + "type": "Parent", + "id": "https://ror.org/05576mm83" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + } + ], + "addresses": [ + { + "lat": 44.80565, + "lng": -0.6324, + "state": null, + "state_code": null, + "city": "Pessac", + "geonames_city": { + "id": 2987805, + "city": "Pessac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.passages.cnr.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780452" + ], + "preferred": "Q51780452" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00s4rmz74.json b/v1.52/v1/00s4rmz74.json new file mode 100644 index 000000000..5c47ce604 --- /dev/null +++ b/v1.52/v1/00s4rmz74.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/00s4rmz74", + "name": "University of Applied Sciences Ravensburg-Weingarten", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.81009, + "lng": 9.63863, + "state": null, + "state_code": null, + "city": "Weingarten", + "geonames_city": { + "id": 2812204, + "city": "Weingarten", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rwu.de" + ], + "aliases": [ + "Ravensburg-Weingarten University of Applied Sciences" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Applied_Sciences_Ravensburg-Weingarten", + "labels": [ + { + "label": "Hochschule Ravensburg-Weingarten", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.449767.f", + "preferred": "grid.449767.f" + }, + "ISNI": { + "all": [ + "0000 0004 0550 5657" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2718933" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00s5kmw74.json b/v1.52/v1/00s5kmw74.json new file mode 100644 index 000000000..3982221fb --- /dev/null +++ b/v1.52/v1/00s5kmw74.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00s5kmw74", + "name": "Canadian Research Knowledge Network", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.crkn-rcdr.ca" + ], + "aliases": [], + "acronyms": [ + "CRKN", + "RCDR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Réseau canadien de documentation pour la recherche", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9811 1307" + ], + "preferred": "0000 0000 9811 1307" + }, + "Wikidata": { + "all": [ + "Q76609347" + ], + "preferred": "Q76609347" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00s8vne50.json b/v1.52/v1/00s8vne50.json new file mode 100644 index 000000000..0037a9f4a --- /dev/null +++ b/v1.52/v1/00s8vne50.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00s8vne50", + "name": "Yerevan State University", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "A. Alikhanyan National Laboratory", + "type": "Related", + "id": "https://ror.org/00ad27c73" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ysu.am/main/en" + ], + "aliases": [], + "acronyms": [ + "YSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Yerevan_State_University", + "labels": [ + { + "label": "Երևանի պետական համալսարան", + "iso639": "hy" + } + ], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "GRID": { + "all": "grid.21072.36", + "preferred": "grid.21072.36" + }, + "ISNI": { + "all": [ + "0000 0004 0640 687X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1474624" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00saywf64.json b/v1.52/v1/00saywf64.json new file mode 100644 index 000000000..4a0ab78a9 --- /dev/null +++ b/v1.52/v1/00saywf64.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/00saywf64", + "name": "Gyeongsang National University", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Gyeongsang National University Hospital", + "type": "Related", + "id": "https://ror.org/00gbcc509" + } + ], + "addresses": [ + { + "lat": 35.20445, + "lng": 128.12408, + "state": null, + "state_code": null, + "city": "Jinju-si", + "geonames_city": { + "id": 1846050, + "city": "Jinju-si", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://eng.gnu.ac.kr/main/" + ], + "aliases": [], + "acronyms": [ + "GNU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Gyeongsang_National_University", + "labels": [ + { + "label": "경상대학교", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002583" + ], + "preferred": null + }, + "GRID": { + "all": "grid.256681.e", + "preferred": "grid.256681.e" + }, + "ISNI": { + "all": [ + "0000 0001 0661 1492" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q487836" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00scwqd12.json b/v1.52/v1/00scwqd12.json new file mode 100644 index 000000000..dcac8e789 --- /dev/null +++ b/v1.52/v1/00scwqd12.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/00scwqd12", + "name": "Missouri University of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 1870, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Missouri System", + "type": "Parent", + "id": "https://ror.org/032va1j59" + }, + { + "label": "Taylor Geospatial Institute", + "type": "Related", + "id": "https://ror.org/0573j3j10" + } + ], + "addresses": [ + { + "lat": 37.95143, + "lng": -91.77127, + "state": null, + "state_code": null, + "city": "Rolla", + "geonames_city": { + "id": 4406282, + "city": "Rolla", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.mst.edu/" + ], + "aliases": [ + "Missouri S&T", + "University of Missouri–Rolla" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Missouri_University_of_Science_and_Technology", + "labels": [ + { + "label": "Université du missouri-columbia de science et technologie", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006531", + "100011535" + ], + "preferred": "100011535" + }, + "GRID": { + "all": "grid.260128.f", + "preferred": "grid.260128.f" + }, + "ISNI": { + "all": [ + "0000 0000 9364 6281" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4380853" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00se82r08.json b/v1.52/v1/00se82r08.json new file mode 100644 index 000000000..9550510ad --- /dev/null +++ b/v1.52/v1/00se82r08.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00se82r08", + "name": "Central Institute for Arid Horticulture", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility", + "Government" + ], + "relationships": [ + { + "label": "Indian Council of Agricultural Research", + "type": "Parent", + "id": "https://ror.org/04fw54a43" + } + ], + "addresses": [ + { + "lat": 28.01762, + "lng": 73.31495, + "state": null, + "state_code": null, + "city": "Bikaner", + "geonames_city": { + "id": 1275665, + "city": "Bikaner", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ciah.icar.gov.in" + ], + "aliases": [ + "ICAR-Central Institute for Arid Horticulture" + ], + "acronyms": [ + "CIAH", + "ICAR CIAH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q111487004" + ], + "preferred": "Q111487004" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00sepad12.json b/v1.52/v1/00sepad12.json new file mode 100644 index 000000000..cd67577f0 --- /dev/null +++ b/v1.52/v1/00sepad12.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00sepad12", + "name": "SUNY Corning Community College", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.14285, + "lng": -77.05469, + "state": null, + "state_code": null, + "city": "Corning", + "geonames_city": { + "id": 5113760, + "city": "Corning", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.corning-cc.edu" + ], + "aliases": [ + "Corning Community College", + "State University of New York Corning Community College" + ], + "acronyms": [ + "CCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Corning_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.433425.7", + "preferred": "grid.433425.7" + }, + "ISNI": { + "all": [ + "0000 0004 0387 896X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5171775" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00ss0a232.json b/v1.52/v1/00ss0a232.json new file mode 100644 index 000000000..9851796b8 --- /dev/null +++ b/v1.52/v1/00ss0a232.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00ss0a232", + "name": "AMURE - Centre de droit et d'économie de la mer", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Bretagne Occidentale", + "type": "Parent", + "id": "https://ror.org/01b8h3982" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Ifremer", + "type": "Parent", + "id": "https://ror.org/044jxhp58" + } + ], + "addresses": [ + { + "lat": 48.38131, + "lng": -4.61805, + "state": null, + "state_code": null, + "city": "Plouzané", + "geonames_city": { + "id": 2986626, + "city": "Plouzané", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umr-amure.fr" + ], + "aliases": [ + "AMénagement des Usages des Ressources et des Espaces marins et littoraux", + "Aménagement des Usages des Ressources et des Espaces marins et littoraux - Centre de droit et d'économie de la mer" + ], + "acronyms": [ + "AMURE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784285" + ], + "preferred": "Q51784285" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00t09mq63.json b/v1.52/v1/00t09mq63.json new file mode 100644 index 000000000..10b46744b --- /dev/null +++ b/v1.52/v1/00t09mq63.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/00t09mq63", + "name": "AbbVie (Australia)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "AbbVie (United States)", + "type": "Parent", + "id": "https://ror.org/02g5p4n58" + } + ], + "addresses": [ + { + "lat": -33.92598, + "lng": 151.19347, + "state": null, + "state_code": null, + "city": "Mascot", + "geonames_city": { + "id": 2158538, + "city": "Mascot", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.abbvie.com.au" + ], + "aliases": [ + "AbbVie Australia" + ], + "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.52/v1/00tdmgj61.json b/v1.52/v1/00tdmgj61.json new file mode 100644 index 000000000..f5673bf4c --- /dev/null +++ b/v1.52/v1/00tdmgj61.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/00tdmgj61", + "name": "SUNY Canton", + "email_address": null, + "ip_addresses": [], + "established": 1906, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 44.59562, + "lng": -75.16909, + "state": null, + "state_code": null, + "city": "Canton", + "geonames_city": { + "id": 5111484, + "city": "Canton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.canton.edu" + ], + "aliases": [ + "State University of New York at Canton" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Canton", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010960" + ], + "preferred": "100010960" + }, + "GRID": { + "all": "grid.430477.3", + "preferred": "grid.430477.3" + }, + "ISNI": { + "all": [ + "0000 0004 0387 7959" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7603620" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00tqjtg68.json b/v1.52/v1/00tqjtg68.json new file mode 100644 index 000000000..a728d08f6 --- /dev/null +++ b/v1.52/v1/00tqjtg68.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00tqjtg68", + "name": "SUNY Erie", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.96395, + "lng": -78.73781, + "state": null, + "state_code": null, + "city": "Williamsville", + "geonames_city": { + "id": 5144588, + "city": "Williamsville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ecc.edu/" + ], + "aliases": [ + "Erie Community College", + "Erie County Technical Institute", + "New York State Institute of Applied Arts and Sciences", + "State University of New York Erie" + ], + "acronyms": [ + "ECC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Erie_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.468887.d", + "preferred": "grid.468887.d" + }, + "ISNI": { + "all": [ + "0000 0004 0447 5070" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5388284" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00v4yb702.json b/v1.52/v1/00v4yb702.json new file mode 100644 index 000000000..931e860f3 --- /dev/null +++ b/v1.52/v1/00v4yb702.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/00v4yb702", + "name": "Rochester Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1829, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rochester Institute of Technology Croatia", + "type": "Related", + "id": "https://ror.org/03jgxzm03" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 43.15478, + "lng": -77.61556, + "state": null, + "state_code": null, + "city": "Rochester", + "geonames_city": { + "id": 5134086, + "city": "Rochester", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.rit.edu/" + ], + "aliases": [ + "Rochester Athenaeum and Mechanics Institute" + ], + "acronyms": [ + "RIT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rochester_Institute_of_Technology", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015853" + ], + "preferred": "100015853" + }, + "GRID": { + "all": "grid.262613.2", + "preferred": "grid.262613.2" + }, + "ISNI": { + "all": [ + "0000 0001 2323 3518" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2140778" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00vqxjy61.json b/v1.52/v1/00vqxjy61.json new file mode 100644 index 000000000..fca289a94 --- /dev/null +++ b/v1.52/v1/00vqxjy61.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00vqxjy61", + "name": "Breakthrough T1D", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.breakthrought1d.org" + ], + "aliases": [ + "Juvenile Diabetes Research Foundation" + ], + "acronyms": [ + "JDRF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/JDRF", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008871", + "100000901" + ], + "preferred": null + }, + "GRID": { + "all": "grid.429307.b", + "preferred": "grid.429307.b" + }, + "ISNI": { + "all": [ + "0000 0004 0575 6413" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6107958" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00vtxwp63.json b/v1.52/v1/00vtxwp63.json new file mode 100644 index 000000000..ba754f683 --- /dev/null +++ b/v1.52/v1/00vtxwp63.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/00vtxwp63", + "name": "Aisin (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Aisin (United States)", + "type": "Child", + "id": "https://ror.org/05wdedb75" + }, + { + "label": "IMRA America (United States)", + "type": "Child", + "id": "https://ror.org/014t9mt17" + }, + { + "label": "IMRA Europe", + "type": "Child", + "id": "https://ror.org/054d78x30" + } + ], + "addresses": [ + { + "lat": 34.98333, + "lng": 136.98333, + "state": null, + "state_code": null, + "city": "Kariya", + "geonames_city": { + "id": 1860034, + "city": "Kariya", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.aisinworld.com/" + ], + "aliases": [ + "Aishin Seiki Kabushiki Kaisha" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Aisin_Seiki", + "labels": [ + { + "label": "アイシン精機株式会社", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.459361.c", + "preferred": "grid.459361.c" + }, + "ISNI": { + "all": [ + "0000 0004 1790 0398" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q409907" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00w3swb66.json b/v1.52/v1/00w3swb66.json new file mode 100644 index 000000000..ee911b3e8 --- /dev/null +++ b/v1.52/v1/00w3swb66.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00w3swb66", + "name": "European Centre for Space Applications and Telecommunications", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "European Space Agency", + "type": "Parent", + "id": "https://ror.org/03wd9za21" + } + ], + "addresses": [ + { + "lat": 51.60928, + "lng": -1.24214, + "state": null, + "state_code": null, + "city": "Didcot", + "geonames_city": { + "id": 2651269, + "city": "Didcot", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.esa.int/ESA_in_your_country/United_Kingdom" + ], + "aliases": [], + "acronyms": [ + "ECSAT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_Centre_for_Space_Applications_and_Telecommunications", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.434160.4", + "preferred": "grid.434160.4" + }, + "ISNI": { + "all": [ + "0000 0004 6043 947X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q19829505" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00x0ma614.json b/v1.52/v1/00x0ma614.json new file mode 100644 index 000000000..206db326e --- /dev/null +++ b/v1.52/v1/00x0ma614.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/00x0ma614", + "name": "Coordenação de Aperfeicoamento de Pessoal de Nível Superior", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of Education", + "type": "Parent", + "id": "https://ror.org/04d0xx942" + } + ], + "addresses": [ + { + "lat": -15.77972, + "lng": -47.92972, + "state": null, + "state_code": null, + "city": "Brasília", + "geonames_city": { + "id": 3469058, + "city": "Brasília", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gov.br/capes/" + ], + "aliases": [], + "acronyms": [ + "CAPES" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Coordena%C3%A7%C3%A3o_de_Aperfeicoamento_de_Pessoal_de_N%C3%ADvel_Superior", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002322" + ], + "preferred": null + }, + "GRID": { + "all": "grid.452295.d", + "preferred": "grid.452295.d" + }, + "ISNI": { + "all": [ + "0000 0000 9738 4872" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16944548", + "Q5167991" + ], + "preferred": "Q16944548" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00xffm983.json b/v1.52/v1/00xffm983.json new file mode 100644 index 000000000..aa428a417 --- /dev/null +++ b/v1.52/v1/00xffm983.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00xffm983", + "name": "Dynamique Musculaire et Métabolisme", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dmem.montpellier.hub.inrae.fr" + ], + "aliases": [], + "acronyms": [ + "DMEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51783648" + ], + "preferred": "Q51783648" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00xmwgm53.json b/v1.52/v1/00xmwgm53.json new file mode 100644 index 000000000..bde7b7cbd --- /dev/null +++ b/v1.52/v1/00xmwgm53.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00xmwgm53", + "name": "Telecom Italia (Italy)", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Telecom Italia Lab", + "type": "Child", + "id": "https://ror.org/01rt74q71" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.telecomitalia.com/tit/en.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Telecom_Italia", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007396" + ], + "preferred": null + }, + "GRID": { + "all": "grid.14587.3f", + "preferred": "grid.14587.3f" + }, + "ISNI": { + "all": [ + "0000 0000 8589 0583" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q144617" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00xy44n04.json b/v1.52/v1/00xy44n04.json new file mode 100644 index 000000000..f6ba517f9 --- /dev/null +++ b/v1.52/v1/00xy44n04.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/00xy44n04", + "name": "Yamagata University", + "email_address": null, + "ip_addresses": [], + "established": 1878, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Yamagata University Hospital", + "type": "Related", + "id": "https://ror.org/05gg4qm19" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 38.23333, + "lng": 140.36667, + "state": null, + "state_code": null, + "city": "Yamagata", + "geonames_city": { + "id": 2110556, + "city": "Yamagata", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.yamagata-u.ac.jp/" + ], + "aliases": [ + "Yamagata daigaku" + ], + "acronyms": [ + "YU " + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Yamagata_University", + "labels": [ + { + "label": "山形大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016982" + ], + "preferred": "100016982" + }, + "GRID": { + "all": "grid.268394.2", + "preferred": "grid.268394.2" + }, + "ISNI": { + "all": [ + "0000 0001 0674 7277" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1196888" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00yf0rv20.json b/v1.52/v1/00yf0rv20.json new file mode 100644 index 000000000..ceba03dd1 --- /dev/null +++ b/v1.52/v1/00yf0rv20.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/00yf0rv20", + "name": "Centre de Recherche en Technologies Agro-Alimentaires", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Directorate General for Scientific Research and Technological Development", + "type": "Parent", + "id": "https://ror.org/04jpfrv51" + } + ], + "addresses": [ + { + "lat": 36.75587, + "lng": 5.08433, + "state": null, + "state_code": null, + "city": "Béjaïa", + "geonames_city": { + "id": 2505329, + "city": "Béjaïa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crtaa.dz" + ], + "aliases": [ + "مركز البحث في التكنولوجيات التغذية الزراعية" + ], + "acronyms": [ + "CRTAA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/00yh11w37.json b/v1.52/v1/00yh11w37.json new file mode 100644 index 000000000..61066eb06 --- /dev/null +++ b/v1.52/v1/00yh11w37.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/00yh11w37", + "name": "Newlife the Charity for Disabled Children", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.69045, + "lng": -2.03085, + "state": null, + "state_code": null, + "city": "Cannock", + "geonames_city": { + "id": 2653883, + "city": "Cannock", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.newlifecharity.co.uk/" + ], + "aliases": [ + "Newlife Foundation for Disabled Children" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100000871", + "100016187" + ], + "preferred": "100016187" + }, + "GRID": { + "all": "grid.453616.3", + "preferred": "grid.453616.3" + }, + "ISNI": { + "all": [ + "0000 0004 0623 6743" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00yzkzh74.json b/v1.52/v1/00yzkzh74.json new file mode 100644 index 000000000..f71ab74df --- /dev/null +++ b/v1.52/v1/00yzkzh74.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00yzkzh74", + "name": "River Lane Research", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Riverlane (United Kingdom)", + "type": "Successor", + "id": "https://ror.org/001377z89" + } + ], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://riverlane.io/" + ], + "aliases": [], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.499342.1", + "preferred": "grid.499342.1" + }, + "Wikidata": { + "all": [ + "Q55829791" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00z0vcr53.json b/v1.52/v1/00z0vcr53.json new file mode 100644 index 000000000..fb334cffe --- /dev/null +++ b/v1.52/v1/00z0vcr53.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00z0vcr53", + "name": "Columbia-Greene Community College", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.25286, + "lng": -73.79096, + "state": null, + "state_code": null, + "city": "Hudson", + "geonames_city": { + "id": 5121509, + "city": "Hudson", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunycgcc.edu/" + ], + "aliases": [ + "Co-Greene", + "SUNY Columbia-Greene Community College", + "State University of New York Columbia-Greene Community College" + ], + "acronyms": [ + "C-GCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Columbia%E2%80%93Greene_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.487756.f", + "preferred": "grid.487756.f" + }, + "ISNI": { + "all": [ + "0000 0004 0387 8775" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5149957" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00z34yn88.json b/v1.52/v1/00z34yn88.json new file mode 100644 index 000000000..3a725a19c --- /dev/null +++ b/v1.52/v1/00z34yn88.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/00z34yn88", + "name": "INFN Sezione di Padova", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "University of Padua", + "type": "Related", + "id": "https://ror.org/00240q980" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 45.40797, + "lng": 11.88586, + "state": null, + "state_code": null, + "city": "Padua", + "geonames_city": { + "id": 3171728, + "city": "Padua", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pd.infn.it/eng/" + ], + "aliases": [ + "Istituto Nazionale di Fisica Nucleare Sezione di Padova" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015972" + ], + "preferred": "100015972" + }, + "GRID": { + "all": "grid.470212.2", + "preferred": "grid.470212.2" + }, + "Wikidata": { + "all": [ + "Q30265293" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00z8erc20.json b/v1.52/v1/00z8erc20.json new file mode 100644 index 000000000..7d76f83c0 --- /dev/null +++ b/v1.52/v1/00z8erc20.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/00z8erc20", + "name": "Institut für soziale Gegenwartsfragen, Stuttgart, e.V.", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.78232, + "lng": 9.17702, + "state": null, + "state_code": null, + "city": "Stuttgart", + "geonames_city": { + "id": 2825297, + "city": "Stuttgart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sozialimpulse.de/institut-fuer-soziale-gegenwartsfragen-stuttgart" + ], + "aliases": [ + "Institut für soziale Gegenwartsfragen, Stuttgart", + "Institute for Social Present-Day Questions, Stuttgart" + ], + "acronyms": [ + "IfsG" + ], + "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.52/v1/00za10597.json b/v1.52/v1/00za10597.json new file mode 100644 index 000000000..b09f389f6 --- /dev/null +++ b/v1.52/v1/00za10597.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00za10597", + "name": "Hospital Pharmacy of North Norway Trust", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 69.64961, + "lng": 18.95702, + "state": null, + "state_code": null, + "city": "Tromsø", + "geonames_city": { + "id": 6453316, + "city": "Tromsø", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sykehusapotek-nord.no" + ], + "aliases": [ + "Northern Norway Pharmaceutical Trust" + ], + "acronyms": [ + "SANO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Northern_Norway_Pharmaceutical_Trust", + "labels": [ + { + "label": "Sykehusapotek Nord HF", + "iso639": "no" + } + ], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8394 6909" + ], + "preferred": "0000 0004 8394 6909" + }, + "Wikidata": { + "all": [ + "Q7058796" + ], + "preferred": "Q7058796" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00zg6dt46.json b/v1.52/v1/00zg6dt46.json new file mode 100644 index 000000000..787fa0f89 --- /dev/null +++ b/v1.52/v1/00zg6dt46.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/00zg6dt46", + "name": "New York State School of Industrial and Labor Relations", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cornell University", + "type": "Parent", + "id": "https://ror.org/05bnh6r87" + }, + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.44063, + "lng": -76.49661, + "state": null, + "state_code": null, + "city": "Ithaca", + "geonames_city": { + "id": 5122432, + "city": "Ithaca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ilr.cornell.edu/" + ], + "aliases": [ + "Cornell University School of Industrial and Labor Relations" + ], + "acronyms": [ + "ILR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cornell_University_School_of_Industrial_and_Labor_Relations", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.507863.f", + "preferred": "grid.507863.f" + }, + "ISNI": { + "all": [ + "0000 0001 2188 4528" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5171574" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00zn13224.json b/v1.52/v1/00zn13224.json new file mode 100644 index 000000000..813771dc0 --- /dev/null +++ b/v1.52/v1/00zn13224.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00zn13224", + "name": "Interactions Hôtes-Pathogènes-Environnements", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Ifremer", + "type": "Parent", + "id": "https://ror.org/044jxhp58" + } + ], + "addresses": [ + { + "lat": 42.69764, + "lng": 2.89541, + "state": null, + "state_code": null, + "city": "Perpignan", + "geonames_city": { + "id": 2987914, + "city": "Perpignan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ihpe.univ-perp.fr" + ], + "aliases": [], + "acronyms": [ + "IHPE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52606249" + ], + "preferred": "Q52606249" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/00zy6vr46.json b/v1.52/v1/00zy6vr46.json new file mode 100644 index 000000000..990290038 --- /dev/null +++ b/v1.52/v1/00zy6vr46.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00zy6vr46", + "name": "Real Academia de Bellas Artes de San Fernando", + "email_address": null, + "ip_addresses": [], + "established": 1752, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Instituto de España", + "type": "Parent", + "id": "https://ror.org/052qegn86" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.realacademiabellasartessanfernando.com" + ], + "aliases": [ + "Academia de Bellas Artes" + ], + "acronyms": [ + "RABASF" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Real_Academia_de_Bellas_Artes_de_San_Fernando", + "labels": [ + { + "label": "Royal Academy of Fine Arts of San Fernando", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/0100zmm86.json b/v1.52/v1/0100zmm86.json new file mode 100644 index 000000000..b75ab297d --- /dev/null +++ b/v1.52/v1/0100zmm86.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/0100zmm86", + "name": "Montpellier Recherche en Economie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mre.edu.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "MRE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/0102dvb40.json b/v1.52/v1/0102dvb40.json new file mode 100644 index 000000000..d5fcc3653 --- /dev/null +++ b/v1.52/v1/0102dvb40.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/0102dvb40", + "name": "Fujian Provincial Department of Ecology and Environment", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Fujian Academy of Environmental Sciences", + "type": "Child", + "id": "https://ror.org/03agg3g06" + }, + { + "label": "Pingtan Environmental Monitoring Center of Fujian", + "type": "Child", + "id": "https://ror.org/02heqqj04" + } + ], + "addresses": [ + { + "lat": 26.06139, + "lng": 119.30611, + "state": null, + "state_code": null, + "city": "Fuzhou", + "geonames_city": { + "id": 1810821, + "city": "Fuzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sthjt.fujian.gov.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "福建省生态环境厅", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/010bvr713.json b/v1.52/v1/010bvr713.json new file mode 100644 index 000000000..6130daa2a --- /dev/null +++ b/v1.52/v1/010bvr713.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/010bvr713", + "name": "Instituto Colombiano del Petróleo y Energías de la Transición - Icpet", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Ecopetrol (Colombia)", + "type": "Parent", + "id": "https://ror.org/05gsrh908" + } + ], + "addresses": [ + { + "lat": 6.97443, + "lng": -73.02284, + "state": null, + "state_code": null, + "city": "Piedecuesta", + "geonames_city": { + "id": 3672331, + "city": "Piedecuesta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ecopetrol.com.co" + ], + "aliases": [ + "Instituto Colombiano del Petróleo", + "Instituto Colombiano del Petróleo y Energías de la Transición" + ], + "acronyms": [ + "ICP", + "ICPET" + ], + "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.52/v1/010c2rf19.json b/v1.52/v1/010c2rf19.json new file mode 100644 index 000000000..a16358f9e --- /dev/null +++ b/v1.52/v1/010c2rf19.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/010c2rf19", + "name": "Max Planck Institutes for Intelligent Systems & Solid State Research Library", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Institute for Solid State Research", + "type": "Parent", + "id": "https://ror.org/005bk2339" + }, + { + "label": "Max Planck Institute for Intelligent Systems", + "type": "Parent", + "id": "https://ror.org/04fq9j139" + } + ], + "addresses": [ + { + "lat": 48.78232, + "lng": 9.17702, + "state": null, + "state_code": null, + "city": "Stuttgart", + "geonames_city": { + "id": 2825297, + "city": "Stuttgart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://is.mpg.de/en/bibliothek" + ], + "aliases": [ + "Max Planck Institutes Stuttgart Library" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Max-Planck-Institute für Intelligente Systeme & Festkörperforschung Bibliothek", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.494632.e", + "preferred": "grid.494632.e" + }, + "Wikidata": { + "all": [ + "Q28720152" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/010j2gw05.json b/v1.52/v1/010j2gw05.json new file mode 100644 index 000000000..7345696ba --- /dev/null +++ b/v1.52/v1/010j2gw05.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/010j2gw05", + "name": "CEA Paris-Saclay - Etablissement de Fontenay-aux-roses", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "CEA Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03n15ch10" + } + ], + "addresses": [ + { + "lat": 48.79325, + "lng": 2.29275, + "state": null, + "state_code": null, + "city": "Fontenay-aux-Roses", + "geonames_city": { + "id": 3017924, + "city": "Fontenay-aux-Roses", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fontenay-aux-roses.cea.fr/far" + ], + "aliases": [ + "CEA Fontenay-aux-Roses" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457349.8", + "preferred": "grid.457349.8" + }, + "ISNI": { + "all": [ + "0000 0004 0623 0579" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q17066599" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/010mf0m52.json b/v1.52/v1/010mf0m52.json new file mode 100644 index 000000000..f34538a60 --- /dev/null +++ b/v1.52/v1/010mf0m52.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/010mf0m52", + "name": "Department for Transport", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Driver and Vehicle Licensing Agency", + "type": "Child", + "id": "https://ror.org/003vwv291" + }, + { + "label": "Highways England", + "type": "Child", + "id": "https://ror.org/015e5sp16" + }, + { + "label": "Maritime and Coastguard Agency", + "type": "Child", + "id": "https://ror.org/05kw2hj64" + }, + { + "label": "Government of the United Kingdom", + "type": "Parent", + "id": "https://ror.org/05wnh3t63" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gov.uk/government/organisations/department-for-transport" + ], + "aliases": [], + "acronyms": [ + "DfT" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Department_for_Transport", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012356" + ], + "preferred": "100012356" + }, + "GRID": { + "all": "grid.420385.8", + "preferred": "grid.420385.8" + }, + "ISNI": { + "all": [ + "0000 0001 2286 3665" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2982287" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/011aa4g29.json b/v1.52/v1/011aa4g29.json new file mode 100644 index 000000000..dddc094fd --- /dev/null +++ b/v1.52/v1/011aa4g29.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/011aa4g29", + "name": "Sami Shamoon College of Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.25181, + "lng": 34.7913, + "state": null, + "state_code": null, + "city": "Beersheba", + "geonames_city": { + "id": 295530, + "city": "Beersheba", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sce.ac.il/" + ], + "aliases": [ + "Negev Academic College of Engineering" + ], + "acronyms": [ + "SCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Sami_Shamoon_College_of_Engineering", + "labels": [ + { + "label": "המכללה האקדמית להנדסה ע\"ש סָמִי שַמְעוּן", + "iso639": "he" + } + ], + "country": { + "country_name": "Israel", + "country_code": "IL" + }, + "external_ids": { + "GRID": { + "all": "grid.437709.e", + "preferred": "grid.437709.e" + }, + "ISNI": { + "all": [ + "0000 0004 0604 9884" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16128755" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/011hja523.json b/v1.52/v1/011hja523.json new file mode 100644 index 000000000..434b988c8 --- /dev/null +++ b/v1.52/v1/011hja523.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/011hja523", + "name": "Rome et ses renaissances", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Linguistique et lexicographie latines et romanes", + "type": "Predecessor", + "id": "https://ror.org/02689mz67" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://romerenaissances.hypotheses.org" + ], + "aliases": [ + "EA 4081", + "Rome et ses renaisances : arts, archéologie, littérature et philosophie", + "UR 4081" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695069" + ], + "preferred": "Q123695069" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/011kg8p14.json b/v1.52/v1/011kg8p14.json new file mode 100644 index 000000000..0b7f27679 --- /dev/null +++ b/v1.52/v1/011kg8p14.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/011kg8p14", + "name": "Finger Lakes Community College", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.87423, + "lng": -77.28804, + "state": null, + "state_code": null, + "city": "Canandaigua", + "geonames_city": { + "id": 5111405, + "city": "Canandaigua", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.flcc.edu/" + ], + "aliases": [ + "SUNY Finger Lakes Community College", + "State University of New York Finger Lakes Community College" + ], + "acronyms": [ + "FLCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Finger_Lakes_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.507865.9", + "preferred": "grid.507865.9" + }, + "ISNI": { + "all": [ + "0000 0004 0388 0074" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5450199" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0127n6542.json b/v1.52/v1/0127n6542.json new file mode 100644 index 000000000..c293a54c9 --- /dev/null +++ b/v1.52/v1/0127n6542.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0127n6542", + "name": "Laboratoire Interuniversitaire Expérience, Ressources culturelles, Education", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Pau et des Pays de l'Adour", + "type": "Parent", + "id": "https://ror.org/01frn9647" + }, + { + "label": "Université Sorbonne Paris Nord", + "type": "Parent", + "id": "https://ror.org/0199hds37" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + } + ], + "addresses": [ + { + "lat": 48.95833, + "lng": 2.34167, + "state": null, + "state_code": null, + "city": "Villetaneuse", + "geonames_city": { + "id": 2968275, + "city": "Villetaneuse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-paris8.fr/UR-Laboratoire-Interuniversitaire-Experience-Ressources-culturelles-Education" + ], + "aliases": [], + "acronyms": [ + "EXPERICE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51785317" + ], + "preferred": "Q51785317" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/012f7tj07.json b/v1.52/v1/012f7tj07.json new file mode 100644 index 000000000..d946d0cc0 --- /dev/null +++ b/v1.52/v1/012f7tj07.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/012f7tj07", + "name": "Telefónica (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1924, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Telefonica (Germany)", + "type": "Child", + "id": "https://ror.org/00xfdbb04" + }, + { + "label": "Telefónica (United Kingdom)", + "type": "Child", + "id": "https://ror.org/00v9tt762" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.telefonica.com/es/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Telef%C3%B3nica", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.426313.1", + "preferred": "grid.426313.1" + }, + "ISNI": { + "all": [ + "0000 0004 0630 219X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q160229" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/012h8gy04.json b/v1.52/v1/012h8gy04.json new file mode 100644 index 000000000..5b488ff1f --- /dev/null +++ b/v1.52/v1/012h8gy04.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/012h8gy04", + "name": "Chirurgie et extrémité céphalique, caractérisation morphologique et fonctionnelle", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Picardie Jules Verne", + "type": "Parent", + "id": "https://ror.org/01gyxrk03" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://chimere.u-picardie.fr" + ], + "aliases": [], + "acronyms": [ + "CHIMERE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/013cjyk83.json b/v1.52/v1/013cjyk83.json new file mode 100644 index 000000000..bd093e85c --- /dev/null +++ b/v1.52/v1/013cjyk83.json @@ -0,0 +1,335 @@ +{ + "id": "https://ror.org/013cjyk83", + "name": "Université Paris Sciences et Lettres", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ESPCI Paris", + "type": "Child", + "id": "https://ror.org/03zx86w41" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "Child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "La Fémis", + "type": "Child", + "id": "https://ror.org/032q0qd45" + }, + { + "label": "Musée Curie", + "type": "Child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "Child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "Child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "Child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "Child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "Child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "Child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Laboratoire d'Immunologie et d'Immunothérapie des Cancers", + "type": "Child", + "id": "https://ror.org/01ds1xe75" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie Biologie Innovation", + "type": "Child", + "id": "https://ror.org/04bgzse17" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "Child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "Child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Neuropsychologie et Imagerie de la Mémoire Humaine", + "type": "Child", + "id": "https://ror.org/04f6tkx67" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "Child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "Child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "École Nationale Supérieure des Mines de Paris", + "type": "Child", + "id": "https://ror.org/04y8cs423" + }, + { + "label": "Observatoire de Paris", + "type": "Child", + "id": "https://ror.org/029nkcm90" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "Child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "Chimie Moléculaire, Macromoléculaire, Matériaux", + "type": "Related", + "id": "https://ror.org/007sc9r91" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Université Paris Dauphine-PSL", + "type": "Child", + "id": "https://ror.org/052bz7812" + }, + { + "label": "École Normale Supérieure - PSL", + "type": "Child", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "École Nationale des Chartes", + "type": "Child", + "id": "https://ror.org/013xvg556" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Child", + "id": "https://ror.org/046b3cj80" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://psl.eu" + ], + "aliases": [ + "PSL Research University", + "Université PSL", + "Université PSL (Paris Sciences & Lettres)", + "Université de recherche Paris Sciences et Lettres" + ], + "acronyms": [ + "PSL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/PSL_Research_University", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009517" + ], + "preferred": "501100009517" + }, + "GRID": { + "all": "grid.440907.e", + "preferred": "grid.440907.e" + }, + "ISNI": { + "all": [ + "0000 0004 1784 3645" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1163431" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/013hjnc74.json b/v1.52/v1/013hjnc74.json new file mode 100644 index 000000000..c11eac659 --- /dev/null +++ b/v1.52/v1/013hjnc74.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/013hjnc74", + "name": "Energi Simulation", + "email_address": null, + "ip_addresses": [], + "established": 1978, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.05011, + "lng": -114.08529, + "state": null, + "state_code": null, + "city": "Calgary", + "geonames_city": { + "id": 5913490, + "city": "Calgary", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://energisimulation.com" + ], + "aliases": [ + "Foundation CMG" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "100011480", + "100015875" + ], + "preferred": "100015875" + }, + "GRID": { + "all": "grid.450624.1", + "preferred": "grid.450624.1" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/013ps2585.json b/v1.52/v1/013ps2585.json new file mode 100644 index 000000000..0d23e225c --- /dev/null +++ b/v1.52/v1/013ps2585.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/013ps2585", + "name": "medica mondiale e.V.", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.93333, + "lng": 6.95, + "state": null, + "state_code": null, + "city": "Cologne", + "geonames_city": { + "id": 2886242, + "city": "Cologne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://medicamondiale.org" + ], + "aliases": [ + "medica mondiale" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Medica_mondiale", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q152153" + ], + "preferred": "Q152153" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/013r8c450.json b/v1.52/v1/013r8c450.json new file mode 100644 index 000000000..af95077cc --- /dev/null +++ b/v1.52/v1/013r8c450.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/013r8c450", + "name": "Centre du Droit de l'Entreprise", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cde-montpellier.com" + ], + "aliases": [ + "CDE - Centre du Droit de l'Entreprise - Montpellier", + "Centre du Droit de l'Entreprise Montpellier", + "Montpellier Corporate Law Center" + ], + "acronyms": [ + "CDE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/013xvg556.json b/v1.52/v1/013xvg556.json new file mode 100644 index 000000000..531ccd100 --- /dev/null +++ b/v1.52/v1/013xvg556.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/013xvg556", + "name": "École Nationale des Chartes", + "email_address": null, + "ip_addresses": [], + "established": 1821, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Campus Condorcet", + "type": "Related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.enc-sorbonne.fr/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_Nationale_des_Chartes", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462175.3", + "preferred": "grid.462175.3" + }, + "ISNI": { + "all": [ + "0000 0001 2289 3514" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273570" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/013yean28.json b/v1.52/v1/013yean28.json new file mode 100644 index 000000000..8932134dc --- /dev/null +++ b/v1.52/v1/013yean28.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/013yean28", + "name": "Laboratoire d'Informatique, de Robotique et de Microélectronique de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut national de recherche en informatique et en automatique", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "Parent", + "id": "https://ror.org/00qhdy563" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lirmm.fr" + ], + "aliases": [], + "acronyms": [ + "LIRMM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Laboratoire_d%27Informatique,_de_Robotique_et_de_Micro%C3%A9lectronique_de_Montpellier", + "labels": [ + { + "label": "Laboratory of Computer Science, Robotics and Microelectronics of Montpellier", + "iso639": "en" + }, + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464638.b", + "preferred": "grid.464638.b" + }, + "ISNI": { + "all": [ + "0000 0004 0599 0488" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3214420" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01411sx56.json b/v1.52/v1/01411sx56.json new file mode 100644 index 000000000..a8303b70a --- /dev/null +++ b/v1.52/v1/01411sx56.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/01411sx56", + "name": "Johnson Matthey (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1817, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Johnson Matthey (France)", + "type": "Child", + "id": "https://ror.org/029ve2p44" + }, + { + "label": "Johnson Matthey (Germany)", + "type": "Child", + "id": "https://ror.org/0131hr478" + }, + { + "label": "Johnson Matthey (United States)", + "type": "Child", + "id": "https://ror.org/00wbcgc67" + }, + { + "label": "Johnson Matthey Battery Systems (United Kingdom)", + "type": "Child", + "id": "https://ror.org/01rkf4y25" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.matthey.com/" + ], + "aliases": [], + "acronyms": [ + "JM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Johnson_Matthey", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023964" + ], + "preferred": "501100023964" + }, + "GRID": { + "all": "grid.13515.33", + "preferred": "grid.13515.33" + }, + "ISNI": { + "all": [ + "0000 0001 0679 3687" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q502470" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0145w8333.json b/v1.52/v1/0145w8333.json new file mode 100644 index 000000000..aa4e0bb42 --- /dev/null +++ b/v1.52/v1/0145w8333.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0145w8333", + "name": "Altınbaş University", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.01384, + "lng": 28.94966, + "state": null, + "state_code": null, + "city": "Istanbul", + "geonames_city": { + "id": 745044, + "city": "Istanbul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.altinbas.edu.tr" + ], + "aliases": [ + "Altinbas University", + "Istanbul Kemerburgaz University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Istanbul_Kemerburgaz_University", + "labels": [ + { + "label": "Altınbaş Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "GRID": { + "all": "grid.449305.f", + "preferred": "grid.449305.f" + }, + "ISNI": { + "all": [ + "0000 0004 0399 5023" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2756518" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0146qxv70.json b/v1.52/v1/0146qxv70.json new file mode 100644 index 000000000..0428fc566 --- /dev/null +++ b/v1.52/v1/0146qxv70.json @@ -0,0 +1,69 @@ +{ + "id": "https://ror.org/0146qxv70", + "name": "Fundación Naturaleza El Salvador", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 13.68935, + "lng": -89.18718, + "state": null, + "state_code": null, + "city": "San Salvador", + "geonames_city": { + "id": 3583361, + "city": "San Salvador", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fundacionaturalezaelsalvador.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "El Salvador", + "country_code": "SV" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/014ft4k69.json b/v1.52/v1/014ft4k69.json new file mode 100644 index 000000000..79f50470c --- /dev/null +++ b/v1.52/v1/014ft4k69.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/014ft4k69", + "name": "Bangabandhu Sheikh Mujibur Rahman Aviation and Aerospace University", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 25.91719, + "lng": 89.44595, + "state": null, + "state_code": null, + "city": "Lalmonirhat", + "geonames_city": { + "id": 1185181, + "city": "Lalmonirhat", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bsmraau.gov.bd" + ], + "aliases": [], + "acronyms": [ + "BSMRAAU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bangabandhu_Sheikh_Mujibur_Rahman_Aviation_and_Aerospace_University", + "labels": [ + { + "label": "বঙ্গবন্ধু শেখ মুজিবুর রহমান অ্যাভিয়েশন অ্যান্ড অ্যারোস্পেস বিশ্ববিদ্যালয়", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0597 4178" + ], + "preferred": "0000 0005 0597 4178" + }, + "Wikidata": { + "all": [ + "Q67654472" + ], + "preferred": "Q67654472" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/014h2x849.json b/v1.52/v1/014h2x849.json new file mode 100644 index 000000000..b683faec3 --- /dev/null +++ b/v1.52/v1/014h2x849.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/014h2x849", + "name": "Anahuac Mayab University", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Anahuac University Network", + "type": "Parent", + "id": "https://ror.org/039bhhz46" + } + ], + "addresses": [ + { + "lat": 20.97537, + "lng": -89.61696, + "state": null, + "state_code": null, + "city": "Mérida", + "geonames_city": { + "id": 3523349, + "city": "Mérida", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.anahuacmayab.mx/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Anahuac_Mayab_University", + "labels": [ + { + "label": "Universidad Anáhuac Mayab", + "iso639": "es" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.430656.2", + "preferred": "grid.430656.2" + }, + "ISNI": { + "all": [ + "0000 0004 0484 5553" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4750915" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/014q9ch68.json b/v1.52/v1/014q9ch68.json new file mode 100644 index 000000000..d9433e067 --- /dev/null +++ b/v1.52/v1/014q9ch68.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/014q9ch68", + "name": "Lyceum of the Philippines University – Batangas", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Lyceum of the Philippines University", + "type": "Parent", + "id": "https://ror.org/027e56k73" + } + ], + "addresses": [ + { + "lat": 13.7567, + "lng": 121.0584, + "state": null, + "state_code": null, + "city": "Batangas", + "geonames_city": { + "id": 1726280, + "city": "Batangas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lpubatangas.edu.ph" + ], + "aliases": [ + "LPU - Batangas", + "LPU Batangas", + "Lyceum of Batangas" + ], + "acronyms": [ + "LPU-B" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lyceum_of_the_Philippines_University_%E2%80%93_Batangas", + "labels": [], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/014qe3j22.json b/v1.52/v1/014qe3j22.json new file mode 100644 index 000000000..197da275b --- /dev/null +++ b/v1.52/v1/014qe3j22.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/014qe3j22", + "name": "Stanford Cancer Institute", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Stanford Medicine", + "type": "Parent", + "id": "https://ror.org/03mtd9a03" + } + ], + "addresses": [ + { + "lat": 37.44188, + "lng": -122.14302, + "state": null, + "state_code": null, + "city": "Palo Alto", + "geonames_city": { + "id": 5380748, + "city": "Palo Alto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://med.stanford.edu/cancer.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Stanford_Cancer_Institute", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100014549" + ], + "preferred": "100014549" + }, + "ISNI": { + "all": [ + "0000 0004 0637 8186" + ], + "preferred": "0000 0004 0637 8186" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/014t9mt17.json b/v1.52/v1/014t9mt17.json new file mode 100644 index 000000000..bbc5643dd --- /dev/null +++ b/v1.52/v1/014t9mt17.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/014t9mt17", + "name": "IMRA America (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Aisin (Japan)", + "type": "Parent", + "id": "https://ror.org/00vtxwp63" + }, + { + "label": "IMRA Europe", + "type": "Related", + "id": "https://ror.org/054d78x30" + } + ], + "addresses": [ + { + "lat": 42.27756, + "lng": -83.74088, + "state": null, + "state_code": null, + "city": "Ann Arbor", + "geonames_city": { + "id": 4984247, + "city": "Ann Arbor", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.imra.com" + ], + "aliases": [ + "Institut Minoru de Recherche Avancé America" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "IMRA America", + "iso639": null + }, + { + "label": "IMRA America, Inc.", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/014ye1258.json b/v1.52/v1/014ye1258.json new file mode 100644 index 000000000..22ac8c444 --- /dev/null +++ b/v1.52/v1/014ye1258.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/014ye1258", + "name": "Rutgers New Jersey Medical School", + "email_address": null, + "ip_addresses": [], + "established": 1954, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Rutgers Health", + "type": "Parent", + "id": "https://ror.org/029z02k15" + } + ], + "addresses": [ + { + "lat": 39.68372, + "lng": -75.74966, + "state": null, + "state_code": null, + "city": "Newark", + "geonames_city": { + "id": 4143861, + "city": "Newark", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://njms.rutgers.edu" + ], + "aliases": [ + "New Jersey Medical School", + "Rutgers NJMS" + ], + "acronyms": [ + "NJMS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/New_Jersey_Medical_School", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100013019" + ], + "preferred": "100013019" + }, + "ISNI": { + "all": [ + "0000 0000 8936 2606" + ], + "preferred": "0000 0000 8936 2606" + }, + "Wikidata": { + "all": [ + "Q7009262" + ], + "preferred": "Q7009262" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/015hj0r78.json b/v1.52/v1/015hj0r78.json new file mode 100644 index 000000000..8e0a162da --- /dev/null +++ b/v1.52/v1/015hj0r78.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/015hj0r78", + "name": "Crystal Bridges Museum of American Art", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.37285, + "lng": -94.20882, + "state": null, + "state_code": null, + "city": "Bentonville", + "geonames_city": { + "id": 4101260, + "city": "Bentonville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crystalbridges.org" + ], + "aliases": [ + "Crystal Bridges" + ], + "acronyms": [ + "CBMAA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 8689 2089" + ], + "preferred": "0000 0000 8689 2089" + }, + "Wikidata": { + "all": [ + "Q1142334" + ], + "preferred": "Q1142334" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/015kcdd40.json b/v1.52/v1/015kcdd40.json new file mode 100644 index 000000000..8ac9669c4 --- /dev/null +++ b/v1.52/v1/015kcdd40.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/015kcdd40", + "name": "INFN Sezione di Napoli", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "University of Naples Federico II", + "type": "Parent", + "id": "https://ror.org/05290cv24" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 40.85216, + "lng": 14.26811, + "state": null, + "state_code": null, + "city": "Naples", + "geonames_city": { + "id": 3172394, + "city": "Naples", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.na.infn.it/" + ], + "aliases": [ + "Istituto Nazionale di Fisica Nucleare Sezione di Napoli" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.470211.1", + "preferred": "grid.470211.1" + }, + "ISNI": { + "all": [ + "0000 0004 8343 7696" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30265292" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/015qxt173.json b/v1.52/v1/015qxt173.json new file mode 100644 index 000000000..b621f750b --- /dev/null +++ b/v1.52/v1/015qxt173.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/015qxt173", + "name": "Lullaby Trust", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lullabytrust.org.uk/" + ], + "aliases": [ + "Foundation for the Study of Infant Deaths" + ], + "acronyms": [ + "FSID" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Lullaby_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002181", + "100011714", + "501100000379" + ], + "preferred": "501100000379" + }, + "GRID": { + "all": "grid.480842.2", + "preferred": "grid.480842.2" + }, + "ISNI": { + "all": [ + "0000 0004 0623 4211" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5474504" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0161w0r98.json b/v1.52/v1/0161w0r98.json new file mode 100644 index 000000000..7f626a7e0 --- /dev/null +++ b/v1.52/v1/0161w0r98.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/0161w0r98", + "name": "Department for the Economy", + "email_address": null, + "ip_addresses": [], + "established": 1921, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Invest Northern Ireland", + "type": "Child", + "id": "https://ror.org/00qnrsq87" + }, + { + "label": "Government of the United Kingdom", + "type": "Parent", + "id": "https://ror.org/05wnh3t63" + } + ], + "addresses": [ + { + "lat": 54.59682, + "lng": -5.92541, + "state": null, + "state_code": null, + "city": "Belfast", + "geonames_city": { + "id": 2655984, + "city": "Belfast", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.economy-ni.gov.uk/" + ], + "aliases": [ + "Department of Enterprise, Trade and Investment" + ], + "acronyms": [ + "DfE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_for_the_Economy", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016337", + "100012917" + ], + "preferred": "100012917" + }, + "GRID": { + "all": "grid.433561.6", + "preferred": "grid.433561.6" + }, + "ISNI": { + "all": [ + "0000 0004 0374 8794" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3044760" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/017a2yz34.json b/v1.52/v1/017a2yz34.json new file mode 100644 index 000000000..6b5d59a90 --- /dev/null +++ b/v1.52/v1/017a2yz34.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/017a2yz34", + "name": "SUNY Delhi", + "email_address": null, + "ip_addresses": [], + "established": 1913, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.27814, + "lng": -74.91599, + "state": null, + "state_code": null, + "city": "Delhi", + "geonames_city": { + "id": 5114824, + "city": "Delhi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.delhi.edu" + ], + "aliases": [ + "State University of New York at Delhi" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_Delhi", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010963" + ], + "preferred": "100010963" + }, + "GRID": { + "all": "grid.422693.8", + "preferred": "grid.422693.8" + }, + "ISNI": { + "all": [ + "0000 0004 0387 9268" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7603622" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0188sb718.json b/v1.52/v1/0188sb718.json new file mode 100644 index 000000000..4053f2cca --- /dev/null +++ b/v1.52/v1/0188sb718.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0188sb718", + "name": "Dutchess Community College", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 41.70037, + "lng": -73.92097, + "state": null, + "state_code": null, + "city": "Poughkeepsie", + "geonames_city": { + "id": 5132143, + "city": "Poughkeepsie", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunydutchess.edu" + ], + "aliases": [ + "SUNY Dutchess", + "State University of New York Dutchess Community College" + ], + "acronyms": [ + "DCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Dutchess_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.420706.7", + "preferred": "grid.420706.7" + }, + "ISNI": { + "all": [ + "0000 0004 0387 9364" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5317480" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/018g09a27.json b/v1.52/v1/018g09a27.json new file mode 100644 index 000000000..99032527f --- /dev/null +++ b/v1.52/v1/018g09a27.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/018g09a27", + "name": "Bornova Türkan Özilhan Devlet Hastanesi", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.47921, + "lng": 27.2399, + "state": null, + "state_code": null, + "city": "Bornova", + "geonames_city": { + "id": 320857, + "city": "Bornova", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bornovadh.saglik.gov.tr" + ], + "aliases": [], + "acronyms": [ + "BTÖ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/018hjpz25.json b/v1.52/v1/018hjpz25.json new file mode 100644 index 000000000..b4effe7f6 --- /dev/null +++ b/v1.52/v1/018hjpz25.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/018hjpz25", + "name": "Sheffield Teaching Hospitals NHS Foundation Trust", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Charles Clifford Dental Hospital", + "type": "Child", + "id": "https://ror.org/05f2xwq77" + }, + { + "label": "Jessop Hospital", + "type": "Child", + "id": "https://ror.org/03wc8tg09" + }, + { + "label": "Northern General Hospital", + "type": "Child", + "id": "https://ror.org/05r409z22" + }, + { + "label": "Royal Hallamshire Hospital", + "type": "Child", + "id": "https://ror.org/00514rc81" + }, + { + "label": "Weston Park Cancer Centre", + "type": "Child", + "id": "https://ror.org/042gs1a72" + } + ], + "addresses": [ + { + "lat": 53.38297, + "lng": -1.4659, + "state": null, + "state_code": null, + "city": "Sheffield", + "geonames_city": { + "id": 2638077, + "city": "Sheffield", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sth.nhs.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Sheffield_Teaching_Hospitals_NHS_Foundation_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004876", + "501100018836" + ], + "preferred": "501100018836" + }, + "GRID": { + "all": "grid.31410.37", + "preferred": "grid.31410.37" + }, + "ISNI": { + "all": [ + "0000 0000 9422 8284" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7492756" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/018nzqy79.json b/v1.52/v1/018nzqy79.json new file mode 100644 index 000000000..9e94b5b81 --- /dev/null +++ b/v1.52/v1/018nzqy79.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/018nzqy79", + "name": "Laboratoire Analyse, Géométrie et Applications", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Parent", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Université Sorbonne Paris Nord", + "type": "Parent", + "id": "https://ror.org/0199hds37" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + } + ], + "addresses": [ + { + "lat": 48.95833, + "lng": 2.34167, + "state": null, + "state_code": null, + "city": "Villetaneuse", + "geonames_city": { + "id": 2968275, + "city": "Villetaneuse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.math.univ-paris13.fr/laga/index.php/en/" + ], + "aliases": [], + "acronyms": [ + "LAGA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503287.b", + "preferred": "grid.503287.b" + }, + "ISNI": { + "all": [ + "0000 0001 0642 1613" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51785125" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/018wzhc20.json b/v1.52/v1/018wzhc20.json new file mode 100644 index 000000000..c836117a3 --- /dev/null +++ b/v1.52/v1/018wzhc20.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/018wzhc20", + "name": "United Nations Educational, Scientific and Cultural Organization Afghanistan", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "UNESCO", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + } + ], + "addresses": [ + { + "lat": 34.52813, + "lng": 69.17233, + "state": null, + "state_code": null, + "city": "Kabul", + "geonames_city": { + "id": 1138958, + "city": "Kabul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://en.unesco.org/fieldoffice/kabul" + ], + "aliases": [], + "acronyms": [ + "ONUESC", + "UNESCO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/UNESCO", + "labels": [], + "country": { + "country_name": "Afghanistan", + "country_code": "AF" + }, + "external_ids": { + "GRID": { + "all": "grid.473811.8", + "preferred": "grid.473811.8" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/019apvn83.json b/v1.52/v1/019apvn83.json new file mode 100644 index 000000000..1e058bded --- /dev/null +++ b/v1.52/v1/019apvn83.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/019apvn83", + "name": "Ahmadu Bello University", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ahmadu Bello University Teaching Hospital", + "type": "Related", + "id": "https://ror.org/03237y496" + }, + { + "label": "Federal College of Education, Zaria", + "type": "Related", + "id": "https://ror.org/03g5rm013" + } + ], + "addresses": [ + { + "lat": 11.11128, + "lng": 7.7227, + "state": null, + "state_code": null, + "city": "Zaria", + "geonames_city": { + "id": 2317765, + "city": "Zaria", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://abu.edu.ng/" + ], + "aliases": [], + "acronyms": [ + "ABU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ahmadu_Bello_University", + "labels": [ + { + "label": "Yunifásítì Àmọ́dù Béllò", + "iso639": "yo" + } + ], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016996" + ], + "preferred": "100016996" + }, + "GRID": { + "all": "grid.411225.1", + "preferred": "grid.411225.1" + }, + "ISNI": { + "all": [ + "0000 0004 1937 1493" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q401034" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/019kjfs29.json b/v1.52/v1/019kjfs29.json new file mode 100644 index 000000000..759031d17 --- /dev/null +++ b/v1.52/v1/019kjfs29.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/019kjfs29", + "name": "Instituto Tecnológico Superior de Calkiní", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 20.36905, + "lng": -90.05119, + "state": null, + "state_code": null, + "city": "Calkiní", + "geonames_city": { + "id": 3531793, + "city": "Calkiní", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.itescam.edu.mx" + ], + "aliases": [ + "TecNM Instituto Tecnológico Superior de Calkiní", + "Tecnológico Nacional de México Instituto Tecnológico Superior de Calkiní" + ], + "acronyms": [ + "ITESCAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/019qb4279.json b/v1.52/v1/019qb4279.json new file mode 100644 index 000000000..8639d1042 --- /dev/null +++ b/v1.52/v1/019qb4279.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/019qb4279", + "name": "Bangabandhu Sheikh Mujibur Rahman Maritime University", + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bsmrmu.edu.bd" + ], + "aliases": [], + "acronyms": [ + "BSMRMU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bangabandhu_Sheikh_Mujibur_Rahman_Maritime_University", + "labels": [ + { + "label": "बंगबन्धु शेख मुजीबुर रहमान समुद्री विश्वविद्यालय", + "iso639": "hi" + }, + { + "label": "বঙ্গবন্ধু শেখ মুজিবুর রহমান মেরিটাইম বিশ্ববিদ্যালয়", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4683 9661" + ], + "preferred": "0000 0004 4683 9661" + }, + "Wikidata": { + "all": [ + "Q30591100" + ], + "preferred": "Q30591100" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/019v7sr25.json b/v1.52/v1/019v7sr25.json new file mode 100644 index 000000000..5ab2623c5 --- /dev/null +++ b/v1.52/v1/019v7sr25.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/019v7sr25", + "name": "Développement Embryonnaire, Fertilité et Environnement", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Toulouse", + "type": "Parent", + "id": "https://ror.org/004raaa70" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.defe.fr" + ], + "aliases": [ + "EA3496", + "INSERM U1203" + ], + "acronyms": [ + "DEFE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1122 6440" + ], + "preferred": "0000 0005 1122 6440" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/019whta54.json b/v1.52/v1/019whta54.json new file mode 100644 index 000000000..1e2961ec4 --- /dev/null +++ b/v1.52/v1/019whta54.json @@ -0,0 +1,190 @@ +{ + "id": "https://ror.org/019whta54", + "name": "University of Lausanne", + "email_address": null, + "ip_addresses": [], + "established": 1537, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Swiss Cancer Center Léman", + "type": "Child", + "id": "https://ror.org/03kwyfa97" + }, + { + "label": "Cantonal and University Library of Lausanne", + "type": "Related", + "id": "https://ror.org/010dca812" + }, + { + "label": "University Hospital of Lausanne", + "type": "Related", + "id": "https://ror.org/05a353079" + }, + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "Related", + "id": "https://ror.org/047f01g80" + }, + { + "label": "Swiss Centre for Applied Human Toxicology", + "type": "Related", + "id": "https://ror.org/03wma5x57" + }, + { + "label": "Centre universitaire de médecine générale et santé publique, Lausanne", + "type": "Related", + "id": "https://ror.org/04mcdza51" + }, + { + "label": "FORS – Swiss Centre of Expertise in the Social Sciences", + "type": "Related", + "id": "https://ror.org/00weppy16" + }, + { + "label": "Brocher Foundation", + "type": "Related", + "id": "https://ror.org/03eere626" + }, + { + "label": "Fondation Leenaards", + "type": "Related", + "id": "https://ror.org/004h88r69" + }, + { + "label": "Swiss School of Public Health", + "type": "Related", + "id": "https://ror.org/01czqbr06" + }, + { + "label": "Swiss Vaccine Research Institute", + "type": "Related", + "id": "https://ror.org/010gha940" + }, + { + "label": "SIB Swiss Institute of Bioinformatics", + "type": "Related", + "id": "https://ror.org/002n09z45" + }, + { + "label": "Swiss Institute of Comparative Law", + "type": "Related", + "id": "https://ror.org/05ee96150" + }, + { + "label": "Swiss Institute for Art Research", + "type": "Related", + "id": "https://ror.org/028nbcm46" + }, + { + "label": "International Institute for Management Development", + "type": "Related", + "id": "https://ror.org/04mv5gg87" + }, + { + "label": "The Sense Innovation and Research Center", + "type": "Related", + "id": "https://ror.org/01eas9a07" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unil.ch" + ], + "aliases": [ + "Schola Lausannensis" + ], + "acronyms": [ + "UNIL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Lausanne", + "labels": [ + { + "label": "Università di Losanna", + "iso639": "it" + }, + { + "label": "Universität Lausanne", + "iso639": "de" + }, + { + "label": "Université de Lausanne", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006390" + ], + "preferred": null + }, + "GRID": { + "all": "grid.9851.5", + "preferred": "grid.9851.5" + }, + "ISNI": { + "all": [ + "0000 0001 2165 4204" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q658975" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01a2m8x11.json b/v1.52/v1/01a2m8x11.json new file mode 100644 index 000000000..28dd86f10 --- /dev/null +++ b/v1.52/v1/01a2m8x11.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/01a2m8x11", + "name": "Cayuga Community College", + "email_address": null, + "ip_addresses": [], + "established": 1953, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.93173, + "lng": -76.56605, + "state": null, + "state_code": null, + "city": "Auburn", + "geonames_city": { + "id": 5107505, + "city": "Auburn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cayuga-cc.edu" + ], + "aliases": [ + "Cayuga County Community College", + "SUNY Cayuga Community College", + "State University of New York Cayuga Community College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cayuga_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.433109.c", + "preferred": "grid.433109.c" + }, + "ISNI": { + "all": [ + "0000 0004 0387 8038" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5055461" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01a58dz79.json b/v1.52/v1/01a58dz79.json new file mode 100644 index 000000000..4620baa0e --- /dev/null +++ b/v1.52/v1/01a58dz79.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01a58dz79", + "name": "Editorial Mar Caribe", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": -34.61315, + "lng": -58.37723, + "state": null, + "state_code": null, + "city": "Buenos Aires", + "geonames_city": { + "id": 3435910, + "city": "Buenos Aires", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://editorialmarcaribe.es" + ], + "aliases": [ + "Ediciones Mar Caribe" + ], + "acronyms": [ + "EMC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0893 354X" + ], + "preferred": "0000 0005 0893 354X" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01anhj553.json b/v1.52/v1/01anhj553.json new file mode 100644 index 000000000..61a4e7eaa --- /dev/null +++ b/v1.52/v1/01anhj553.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/01anhj553", + "name": "Université catholique de lyon", + "email_address": null, + "ip_addresses": [], + "established": 1875, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "UR CONFLUENCE: Sciences et Humanités", + "type": "Child", + "id": "https://ror.org/02yt1th11" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ucly.fr/" + ], + "aliases": [ + "Catholic Institute of Lyon", + "Catholic University of Lyon", + "Institut catholique de Lyon", + "Lyon Catholic University", + "UCLy - Lyon Catholic University" + ], + "acronyms": [ + "UCLy" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Catholic_University_of_Lyon", + "labels": [ + { + "label": "UCLy (Lyon Catholic University)", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.448695.2", + "preferred": "grid.448695.2" + }, + "ISNI": { + "all": [ + "0000 0001 2154 9535" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q8618" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01ar2dh82.json b/v1.52/v1/01ar2dh82.json new file mode 100644 index 000000000..42f8c10c5 --- /dev/null +++ b/v1.52/v1/01ar2dh82.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01ar2dh82", + "name": "Byte Road (Portugal)", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://byteroad.net" + ], + "aliases": [], + "acronyms": [ + "BR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Byte Road", + "iso639": "en" + } + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01awjf572.json b/v1.52/v1/01awjf572.json new file mode 100644 index 000000000..e7b225972 --- /dev/null +++ b/v1.52/v1/01awjf572.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01awjf572", + "name": "Ministry of Health", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Measurement Standards Section", + "type": "Child", + "id": "https://ror.org/04btem923" + } + ], + "addresses": [ + { + "lat": 4.89035, + "lng": 114.94006, + "state": null, + "state_code": null, + "city": "Bandar Seri Begawan", + "geonames_city": { + "id": 1820906, + "city": "Bandar Seri Begawan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.moh.gov.bn/Pages/Home.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Health_(Brunei)", + "labels": [ + { + "label": "Kementerian Kesihatan", + "iso639": "ms" + } + ], + "country": { + "country_name": "Brunei", + "country_code": "BN" + }, + "external_ids": { + "GRID": { + "all": "grid.511878.2", + "preferred": "grid.511878.2" + }, + "Wikidata": { + "all": [ + "Q39075585" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01beh4y53.json b/v1.52/v1/01beh4y53.json new file mode 100644 index 000000000..e8ba1bbfd --- /dev/null +++ b/v1.52/v1/01beh4y53.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01beh4y53", + "name": "Franklin Resources (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Franklin Templeton (United States)", + "type": "Successor", + "id": "https://ror.org/05ctx1h60" + } + ], + "addresses": [ + { + "lat": 37.56299, + "lng": -122.32553, + "state": null, + "state_code": null, + "city": "San Mateo", + "geonames_city": { + "id": 5392423, + "city": "San Mateo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.franklinresources.com" + ], + "aliases": [ + "Franklin Resources Inc" + ], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [ + { + "label": "Franklin Resources", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 1516 4647" + ], + "preferred": "0000 0001 1516 4647" + }, + "Wikidata": { + "all": [ + "Q744683" + ], + "preferred": "Q744683" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01bg6x409.json b/v1.52/v1/01bg6x409.json new file mode 100644 index 000000000..520898591 --- /dev/null +++ b/v1.52/v1/01bg6x409.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01bg6x409", + "name": "Canadian Scientific Submersible Facility", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Remotely Operated Platform for Ocean Sciences", + "type": "Child", + "id": "https://ror.org/01ggkbb05" + } + ], + "addresses": [ + { + "lat": 48.66634, + "lng": -123.41933, + "state": null, + "state_code": null, + "city": "North Saanich", + "geonames_city": { + "id": 6090579, + "city": "North Saanich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ropos.com" + ], + "aliases": [], + "acronyms": [ + "CSSF" + ], + "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.52/v1/01bgbk171.json b/v1.52/v1/01bgbk171.json new file mode 100644 index 000000000..44c726e40 --- /dev/null +++ b/v1.52/v1/01bgbk171.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/01bgbk171", + "name": "Northern Health and Social Care Trust", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Antrim Area Hospital", + "type": "Child", + "id": "https://ror.org/005t72d47" + } + ], + "addresses": [ + { + "lat": 54.7175, + "lng": -6.211, + "state": null, + "state_code": null, + "city": "Antrim", + "geonames_city": { + "id": 2657255, + "city": "Antrim", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.northerntrust.hscni.net/" + ], + "aliases": [], + "acronyms": [ + "NHSCT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Northern_Health_and_Social_Care_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100017291" + ], + "preferred": "100017291" + }, + "GRID": { + "all": "grid.413824.8", + "preferred": "grid.413824.8" + }, + "ISNI": { + "all": [ + "0000 0000 9566 1119" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16895620" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01bj4g149.json b/v1.52/v1/01bj4g149.json new file mode 100644 index 000000000..9356d2c77 --- /dev/null +++ b/v1.52/v1/01bj4g149.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01bj4g149", + "name": "Montana State University Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Montana State University", + "type": "Parent", + "id": "https://ror.org/02w0trx84" + } + ], + "addresses": [ + { + "lat": 45.67965, + "lng": -111.03856, + "state": null, + "state_code": null, + "city": "Bozeman", + "geonames_city": { + "id": 5641727, + "city": "Bozeman", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.msuaf.org" + ], + "aliases": [ + "MSU Alumni Foundation" + ], + "acronyms": [ + "MSUAF", + "MSUF" + ], + "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.52/v1/01bvv5f54.json b/v1.52/v1/01bvv5f54.json new file mode 100644 index 000000000..00be94b76 --- /dev/null +++ b/v1.52/v1/01bvv5f54.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01bvv5f54", + "name": "Ministry of Industry and Trade", + "email_address": null, + "ip_addresses": [], + "established": 1955, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Viet-Hung Industrial University", + "type": "Child", + "id": "https://ror.org/02sndnx77" + } + ], + "addresses": [ + { + "lat": 21.0245, + "lng": 105.84117, + "state": null, + "state_code": null, + "city": "Hanoi", + "geonames_city": { + "id": 1581130, + "city": "Hanoi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.moit.gov.vn" + ], + "aliases": [ + "Ministry of Industry and Trade, Vietnam" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Industry_and_Trade_%28Vietnam%29", + "labels": [ + { + "label": "Bộ Công Thương", + "iso639": "vi" + } + ], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q6867197" + ], + "preferred": "Q6867197" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01cfkyz79.json b/v1.52/v1/01cfkyz79.json new file mode 100644 index 000000000..6419f4323 --- /dev/null +++ b/v1.52/v1/01cfkyz79.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01cfkyz79", + "name": "Department of Science Service", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 13.75398, + "lng": 100.50144, + "state": null, + "state_code": null, + "city": "Bangkok", + "geonames_city": { + "id": 1609350, + "city": "Bangkok", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dss.go.th" + ], + "aliases": [], + "acronyms": [ + "DSS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "กรมวิทยาศาสตร์บริการ", + "iso639": "th" + } + ], + "country": { + "country_name": "Thailand", + "country_code": "TH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01cmkbc96.json b/v1.52/v1/01cmkbc96.json new file mode 100644 index 000000000..d6728c1ff --- /dev/null +++ b/v1.52/v1/01cmkbc96.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/01cmkbc96", + "name": "Fulton–Montgomery Community College", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 43.00674, + "lng": -74.36764, + "state": null, + "state_code": null, + "city": "Johnstown", + "geonames_city": { + "id": 5122833, + "city": "Johnstown", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fmcc.edu" + ], + "aliases": [ + "SUNY Fulton-Montgomery", + "SUNY Fulton-Montgomery Community College", + "State University of New York Fulton-Montgomery Community College" + ], + "acronyms": [ + "FM", + "FMCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Fulton%E2%80%93Montgomery_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.462241.7", + "preferred": "grid.462241.7" + }, + "ISNI": { + "all": [ + "0000 0004 0388 0728" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5508483" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01cmnjq37.json b/v1.52/v1/01cmnjq37.json new file mode 100644 index 000000000..e47addb20 --- /dev/null +++ b/v1.52/v1/01cmnjq37.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/01cmnjq37", + "name": "Centre Léon Bérard", + "email_address": null, + "ip_addresses": [], + "established": 1923, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Centre de Recherche en Cancérologie de Lyon", + "type": "Child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "Child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Laboratoire des applications Thérapeutiques des Ultrasons", + "type": "Child", + "id": "https://ror.org/059eam965" + }, + { + "label": "ERN EURACAN", + "type": "Related", + "id": "https://ror.org/01rq5e797" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.centreleonberard.fr/" + ], + "aliases": [ + "centre de lutte contre le cancer Léon-Bérard" + ], + "acronyms": [ + "CLB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100020549" + ], + "preferred": "501100020549" + }, + "GRID": { + "all": "grid.418116.b", + "preferred": "grid.418116.b" + }, + "ISNI": { + "all": [ + "0000 0001 0200 3174" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01cw28e72.json b/v1.52/v1/01cw28e72.json new file mode 100644 index 000000000..e64cbccd4 --- /dev/null +++ b/v1.52/v1/01cw28e72.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/01cw28e72", + "name": "Institut de Recherche sur les ArchéoMATériaux", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut National de Recherches Archéologiques Préventives", + "type": "Parent", + "id": "https://ror.org/04andmq85" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Bordeaux Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + }, + { + "label": "Ministère de la Culture", + "type": "Parent", + "id": "https://ror.org/017rnyz40" + }, + { + "label": "Université d'Orléans", + "type": "Parent", + "id": "https://ror.org/014zrew76" + }, + { + "label": "Université de technologie de belfort-montbéliard", + "type": "Parent", + "id": "https://ror.org/05bn3m307" + } + ], + "addresses": [ + { + "lat": 47.64218, + "lng": 6.85385, + "state": null, + "state_code": null, + "city": "Belfort", + "geonames_city": { + "id": 3033791, + "city": "Belfort", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iramat.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "IRAMAT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503232.5", + "preferred": "grid.503232.5" + }, + "ISNI": { + "all": [ + "0000 0001 0038 9149" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51784495" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01d2qgg03.json b/v1.52/v1/01d2qgg03.json new file mode 100644 index 000000000..37a807ac8 --- /dev/null +++ b/v1.52/v1/01d2qgg03.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01d2qgg03", + "name": "NFDI-MatWerk", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 50.77538, + "lng": 7.197, + "state": null, + "state_code": null, + "city": "Sankt Augustin", + "geonames_city": { + "id": 2841648, + "city": "Sankt Augustin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nfdi-matwerk.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Research Data Infrastructure for Materials Science & Engineering", + "iso639": "en" + }, + { + "label": "Nationale Forschungsdateninfrastruktur für Materialwissenschaft & Werkstofftechnik", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q108542607" + ], + "preferred": "Q108542607" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01da06998.json b/v1.52/v1/01da06998.json new file mode 100644 index 000000000..2fef11305 --- /dev/null +++ b/v1.52/v1/01da06998.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/01da06998", + "name": "Instituto Tecnológico Superior de Irapuato", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 20.67675, + "lng": -101.35628, + "state": null, + "state_code": null, + "city": "Irapuato", + "geonames_city": { + "id": 4004330, + "city": "Irapuato", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://irapuato.tecnm.mx" + ], + "aliases": [ + "TecNM Irapuato", + "Tecnológico Nacional de México de Irapuato" + ], + "acronyms": [ + "ITESI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_Superior_de_Irapuato", + "labels": [ + { + "label": "Higher Technological Institute of Irapuato", + "iso639": "en" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.462383.8", + "preferred": "grid.462383.8" + }, + "ISNI": { + "all": [ + "0000 0004 0369 4730" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6041556" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01dbmzx78.json b/v1.52/v1/01dbmzx78.json new file mode 100644 index 000000000..8dfe8a1ff --- /dev/null +++ b/v1.52/v1/01dbmzx78.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01dbmzx78", + "name": "The Kids Research Institute Australia", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -31.94896, + "lng": 115.84199, + "state": null, + "state_code": null, + "city": "West Perth", + "geonames_city": { + "id": 8288537, + "city": "West Perth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.thekids.org.au" + ], + "aliases": [ + "Kids Research Institute", + "Telethon Institute for Child Health Research", + "Telethon Kids Institute" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Telethon_Institute_for_Child_Health_Research", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.414659.b", + "preferred": "grid.414659.b" + }, + "ISNI": { + "all": [ + "0000 0000 8828 1230" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7696872" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01ddr6d46.json b/v1.52/v1/01ddr6d46.json new file mode 100644 index 000000000..2cd10f286 --- /dev/null +++ b/v1.52/v1/01ddr6d46.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01ddr6d46", + "name": "Délégation Régionale Occitanie Méditerranée", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.occitanie-mediterranee.inserm.fr/" + ], + "aliases": [ + "Inserm ADR Languedoc-Roussillon" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457377.5", + "preferred": "grid.457377.5" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01dfzdy43.json b/v1.52/v1/01dfzdy43.json new file mode 100644 index 000000000..78fcc9f2d --- /dev/null +++ b/v1.52/v1/01dfzdy43.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/01dfzdy43", + "name": "Laboratoire d'Ingénierie pour les Systèmes Complexes", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Clermont-Auvergne-Rhône-Alpes", + "type": "Parent", + "id": "https://ror.org/04aqtsh50" + } + ], + "addresses": [ + { + "lat": 45.75082, + "lng": 3.11078, + "state": null, + "state_code": null, + "city": "Aubière", + "geonames_city": { + "id": 3036364, + "city": "Aubière", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lisc.inrae.fr" + ], + "aliases": [], + "acronyms": [ + "LISC", + "UR LISC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01djcs087.json b/v1.52/v1/01djcs087.json new file mode 100644 index 000000000..8897d7844 --- /dev/null +++ b/v1.52/v1/01djcs087.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01djcs087", + "name": "Rosalind Franklin Institute", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.59947, + "lng": -1.29175, + "state": null, + "state_code": null, + "city": "Harwell", + "geonames_city": { + "id": 2647385, + "city": "Harwell", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rfi.ac.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rosalind_Franklin_Institute", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100021073" + ], + "preferred": "100021073" + }, + "GRID": { + "all": "grid.507854.b", + "preferred": "grid.507854.b" + }, + "Wikidata": { + "all": [ + "Q85797891" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01dmkgv38.json b/v1.52/v1/01dmkgv38.json new file mode 100644 index 000000000..b15761932 --- /dev/null +++ b/v1.52/v1/01dmkgv38.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/01dmkgv38", + "name": "NODA Nordnorsk Design- og Arkitektursenter", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 69.6489, + "lng": 18.95508, + "state": null, + "state_code": null, + "city": "Tromsø", + "geonames_city": { + "id": 3133895, + "city": "Tromsø", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://noda.no" + ], + "aliases": [ + "NODA - Northern Norway's Design and Architecture Centre", + "Nordnorsk Design og Arkitektursenter", + "Northern Norway's Design and Architecture Centre" + ], + "acronyms": [ + "NODA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01dqmj897.json b/v1.52/v1/01dqmj897.json new file mode 100644 index 000000000..a52668c43 --- /dev/null +++ b/v1.52/v1/01dqmj897.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/01dqmj897", + "name": "Laboratoire Architecture Ville Urbanisme Environnement", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Ministère de la Culture", + "type": "Parent", + "id": "https://ror.org/017rnyz40" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "Université Paris Nanterre", + "type": "Parent", + "id": "https://ror.org/013bkhk48" + }, + { + "label": "École Nationale Supérieure d'Architecture Paris-Val de Seine", + "type": "Parent", + "id": "https://ror.org/03vdjbj89" + }, + { + "label": "École Nationale Supérieure d'Architecture de Paris-La Villette", + "type": "Parent", + "id": "https://ror.org/03e2r1r87" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lavue.cnrs.fr/" + ], + "aliases": [], + "acronyms": [ + "LAVUE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503261.3", + "preferred": "grid.503261.3" + }, + "ISNI": { + "all": [ + "0000 0001 2109 2432" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51784249" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01dvske68.json b/v1.52/v1/01dvske68.json new file mode 100644 index 000000000..d658f014f --- /dev/null +++ b/v1.52/v1/01dvske68.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01dvske68", + "name": "Base4NFDI", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 51.05089, + "lng": 13.73832, + "state": null, + "state_code": null, + "city": "Dresden", + "geonames_city": { + "id": 2935022, + "city": "Dresden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://base4nfdi.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Basic Services for NFDI", + "iso639": "en" + }, + { + "label": "Basisdienste für die NFDI", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q113544452" + ], + "preferred": "Q113544452" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01dwzy755.json b/v1.52/v1/01dwzy755.json new file mode 100644 index 000000000..cbade613c --- /dev/null +++ b/v1.52/v1/01dwzy755.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01dwzy755", + "name": "Institut Desbrest d'Epidémiologie et de Santé Publique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://idesp.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "IDESP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01e11zd27.json b/v1.52/v1/01e11zd27.json new file mode 100644 index 000000000..a2bf7bb07 --- /dev/null +++ b/v1.52/v1/01e11zd27.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/01e11zd27", + "name": "Gilead Sciences (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Gilead Sciences (United States)", + "type": "Parent", + "id": "https://ror.org/056546b03" + } + ], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gilead.co.uk" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gilead_Sciences", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016016" + ], + "preferred": "100016016" + }, + "GRID": { + "all": "grid.476328.c", + "preferred": "grid.476328.c" + }, + "ISNI": { + "all": [ + "0000 0004 0383 8490" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30338599" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01eas9a07.json b/v1.52/v1/01eas9a07.json new file mode 100644 index 000000000..ff7d7f14f --- /dev/null +++ b/v1.52/v1/01eas9a07.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01eas9a07", + "name": "The Sense Innovation and Research Center", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + }, + { + "label": "University Hospital of Lausanne", + "type": "Related", + "id": "https://ror.org/05a353079" + }, + { + "label": "HES-SO Valais-Wallis", + "type": "Related", + "id": "https://ror.org/03r5zec51" + } + ], + "addresses": [ + { + "lat": 46.22739, + "lng": 7.35559, + "state": null, + "state_code": null, + "city": "Sion", + "geonames_city": { + "id": 2658576, + "city": "Sion", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.the-sense.ch" + ], + "aliases": [ + "Sense Innovation and Research Center", + "The Sense", + "The Sense Research and Innovation Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Le Centre d’innovation et de recherche The Sense", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01eb8ek77.json b/v1.52/v1/01eb8ek77.json new file mode 100644 index 000000000..537554900 --- /dev/null +++ b/v1.52/v1/01eb8ek77.json @@ -0,0 +1,151 @@ +{ + "id": "https://ror.org/01eb8ek77", + "name": "United Nations Economic and Social Council", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Office of the United Nations High Commissioner for Refugees", + "type": "Child", + "id": "https://ror.org/0437ej039" + }, + { + "label": "United Nations Development Programme", + "type": "Child", + "id": "https://ror.org/051777d98" + }, + { + "label": "United Nations Economic Commission for Africa", + "type": "Child", + "id": "https://ror.org/05rgfz198" + }, + { + "label": "United Nations Economic Commission for Europe", + "type": "Child", + "id": "https://ror.org/038dn8481" + }, + { + "label": "United Nations Economic Commission for Latin America and the Caribbean", + "type": "Child", + "id": "https://ror.org/015ggv447" + }, + { + "label": "United Nations Economic and Social Commission for Asia and the Pacific", + "type": "Child", + "id": "https://ror.org/0482p8a89" + }, + { + "label": "United Nations Economic and Social Commission for Western Asia", + "type": "Child", + "id": "https://ror.org/03yqyyy69" + }, + { + "label": "UNESCO", + "type": "Child", + "id": "https://ror.org/04h4z8k05" + }, + { + "label": "United Nations Industrial Development Organization", + "type": "Child", + "id": "https://ror.org/058ajkv68" + }, + { + "label": "United Nations Institute for Training and Research", + "type": "Child", + "id": "https://ror.org/01n2j8127" + }, + { + "label": "United Nations Interregional Crime and Justice Research Institute", + "type": "Child", + "id": "https://ror.org/00zep6618" + }, + { + "label": "United Nations Research Institute for Social Development", + "type": "Child", + "id": "https://ror.org/00rs5qv51" + }, + { + "label": "United Nations", + "type": "Parent", + "id": "https://ror.org/006kxhp52" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.un.org/ecosoc/" + ], + "aliases": [ + "Conseil Économique et Social des Nations Unies" + ], + "acronyms": [ + "CESNU", + "ECOSOC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_Nations_Economic_and_Social_Council", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.487794.1", + "preferred": "grid.487794.1" + }, + "ISNI": { + "all": [ + "0000 0004 0426 8792" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01f5dqg10.json b/v1.52/v1/01f5dqg10.json new file mode 100644 index 000000000..3f2443e8c --- /dev/null +++ b/v1.52/v1/01f5dqg10.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01f5dqg10", + "name": "NFDI4Earth", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 52.39886, + "lng": 13.06566, + "state": null, + "state_code": null, + "city": "Potsdam", + "geonames_city": { + "id": 2852458, + "city": "Potsdam", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nfdi4earth.de" + ], + "aliases": [ + "NFDI Consortium Earth System Sciences", + "NFDI Konsortium Erdsystemforschung" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q108542504" + ], + "preferred": "Q108542504" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01f8fjy92.json b/v1.52/v1/01f8fjy92.json new file mode 100644 index 000000000..4e49a43ee --- /dev/null +++ b/v1.52/v1/01f8fjy92.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/01f8fjy92", + "name": "Prefeitura Municipal de Guarapari", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -20.67182, + "lng": -40.50196, + "state": null, + "state_code": null, + "city": "Guarapari", + "geonames_city": { + "id": 3461888, + "city": "Guarapari", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.guarapari.es.gov.br" + ], + "aliases": [ + "Prefeitura de Guarapari" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Guarapari City Hall", + "iso639": "en" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q56695145" + ], + "preferred": "Q56695145" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01fe8k477.json b/v1.52/v1/01fe8k477.json new file mode 100644 index 000000000..f7e1f833a --- /dev/null +++ b/v1.52/v1/01fe8k477.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/01fe8k477", + "name": "Laboratoire Lorrain de Sciences Sociales", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Centre de Recherche sur les Expertises, les Arts et les Transitions", + "type": "Successor", + "id": "https://ror.org/047q8av65" + }, + { + "label": "Laboratoire de sociologie des Territoires, du travail, des âges et de la santé", + "type": "Successor", + "id": "https://ror.org/01mq1e256" + } + ], + "addresses": [ + { + "lat": 49.11911, + "lng": 6.17269, + "state": null, + "state_code": null, + "city": "Metz", + "geonames_city": { + "id": 2994160, + "city": "Metz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://2l2s.univ-lorraine.fr" + ], + "aliases": [], + "acronyms": [ + "2L2S" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 8494 1801" + ], + "preferred": "0000 0000 8494 1801" + }, + "Wikidata": { + "all": [ + "Q51780440" + ], + "preferred": "Q51780440" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01fv25t22.json b/v1.52/v1/01fv25t22.json new file mode 100644 index 000000000..29e9de731 --- /dev/null +++ b/v1.52/v1/01fv25t22.json @@ -0,0 +1,128 @@ +{ + "id": "https://ror.org/01fv25t22", + "name": "CEA Paris-Saclay - Etablissement de Saclay", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CEA Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03n15ch10" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "HEC Paris", + "type": "Parent", + "id": "https://ror.org/0423jsj19" + }, + { + "label": "Institut des Hautes Études Scientifiques", + "type": "Parent", + "id": "https://ror.org/05d5m2r55" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "École Polytechnique", + "type": "Parent", + "id": "https://ror.org/05hy3tk52" + } + ], + "addresses": [ + { + "lat": 48.7326, + "lng": 2.16923, + "state": null, + "state_code": null, + "city": "Saclay", + "geonames_city": { + "id": 2982043, + "city": "Saclay", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cea.fr/Pages/le-cea/les-centres-cea/paris-saclay.aspx" + ], + "aliases": [ + "Centre CEA de Saclay" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saclay_Nuclear_Research_Centre", + "labels": [ + { + "label": "Centre CEA de Saclay", + "iso639": "fr" + }, + { + "label": "Saclay Nuclear Research Centre", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462763.2", + "preferred": "grid.462763.2" + }, + "ISNI": { + "all": [ + "0000 0000 9853 2953" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4393524" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01fva0642.json b/v1.52/v1/01fva0642.json new file mode 100644 index 000000000..a32e26fd5 --- /dev/null +++ b/v1.52/v1/01fva0642.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01fva0642", + "name": "Bangabandhu Sheikh Mujibur Rahman Digital University", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.99844, + "lng": 90.42234, + "state": null, + "state_code": null, + "city": "Jaydebpur", + "geonames_city": { + "id": 1200109, + "city": "Jaydebpur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bdu.ac.bd" + ], + "aliases": [ + "Bangabandhu Digital University" + ], + "acronyms": [ + "BDU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bangabandhu_Sheikh_Mujibur_Rahman_Digital_University", + "labels": [ + { + "label": "বঙ্গবন্ধু শেখ মুজিবুর রহমান ডিজিটাল ইউনিভার্সিটি, বাংলাদেশ", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8004 3050" + ], + "preferred": "0000 0004 8004 3050" + }, + "Wikidata": { + "all": [ + "Q60463842" + ], + "preferred": "Q60463842" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01fvx3s14.json b/v1.52/v1/01fvx3s14.json new file mode 100644 index 000000000..f38975227 --- /dev/null +++ b/v1.52/v1/01fvx3s14.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01fvx3s14", + "name": "Laboratoire Dynamique du Langage", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ddl.cnrs.fr" + ], + "aliases": [ + "Dynamique du Langage" + ], + "acronyms": [ + "DDL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463954.9", + "preferred": "grid.463954.9" + }, + "ISNI": { + "all": [ + "0000 0004 0384 5295" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01fw8ag12.json b/v1.52/v1/01fw8ag12.json new file mode 100644 index 000000000..0a8dd6982 --- /dev/null +++ b/v1.52/v1/01fw8ag12.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/01fw8ag12", + "name": "SUNY Adirondack", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 43.37729, + "lng": -73.61317, + "state": null, + "state_code": null, + "city": "Queensbury", + "geonames_city": { + "id": 5133279, + "city": "Queensbury", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunyacc.edu" + ], + "aliases": [ + "Adirondack Community College", + "State University of New York Adirondack Community College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/SUNY_Adirondack", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010958" + ], + "preferred": "100010958" + }, + "GRID": { + "all": "grid.487751.8", + "preferred": "grid.487751.8" + }, + "ISNI": { + "all": [ + "0000 0001 0382 4388" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7395009" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01g3jts20.json b/v1.52/v1/01g3jts20.json new file mode 100644 index 000000000..dfa2ab506 --- /dev/null +++ b/v1.52/v1/01g3jts20.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01g3jts20", + "name": "Air Force Harbin Flying College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.75, + "lng": 126.65, + "state": null, + "state_code": null, + "city": "Harbin", + "geonames_city": { + "id": 2037013, + "city": "Harbin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Air Force Harbin Flight Academy", + "Harbin Flight College of Air Force", + "PLA Air Force Harbin Flight Academy", + "PLA Harbin Flight College of Air Force" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Harbin_Flight_Academy", + "labels": [ + { + "label": "中国人民解放军空军哈尔滨飞行学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q10873028" + ], + "preferred": "Q10873028" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01gdwxf40.json b/v1.52/v1/01gdwxf40.json new file mode 100644 index 000000000..d17575c4a --- /dev/null +++ b/v1.52/v1/01gdwxf40.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01gdwxf40", + "name": "Ziraat Bankası", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.01384, + "lng": 28.94966, + "state": null, + "state_code": null, + "city": "Istanbul", + "geonames_city": { + "id": 745044, + "city": "Istanbul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ziraatbank.com.tr" + ], + "aliases": [ + "Ziraatbank" + ], + "acronyms": [ + "Zb" + ], + "status": "active", + "wikipedia_url": "https://tr.wikipedia.org/wiki/Ziraat_Bankas%C4%B1", + "labels": [ + { + "label": "T.C. Ziraat Bankası A.Ş.", + "iso639": "tr" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1761 3209" + ], + "preferred": "0000 0004 1761 3209" + }, + "Wikidata": { + "all": [ + "Q696003" + ], + "preferred": "Q696003" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01ggkbb05.json b/v1.52/v1/01ggkbb05.json new file mode 100644 index 000000000..038ce3167 --- /dev/null +++ b/v1.52/v1/01ggkbb05.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01ggkbb05", + "name": "Remotely Operated Platform for Ocean Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Canadian Scientific Submersible Facility", + "type": "Parent", + "id": "https://ror.org/01bg6x409" + } + ], + "addresses": [ + { + "lat": 48.66634, + "lng": -123.41933, + "state": null, + "state_code": null, + "city": "North Saanich", + "geonames_city": { + "id": 6090579, + "city": "North Saanich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ropos.com/" + ], + "aliases": [], + "acronyms": [ + "ROPOS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ROPOS", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "all": "grid.423405.4", + "preferred": "grid.423405.4" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01gkmhp75.json b/v1.52/v1/01gkmhp75.json new file mode 100644 index 000000000..4a910fe99 --- /dev/null +++ b/v1.52/v1/01gkmhp75.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01gkmhp75", + "name": "Raparin Technical and Vocational Institute", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.2571, + "lng": 44.88275, + "state": null, + "state_code": null, + "city": "Rania District", + "geonames_city": { + "id": 92051, + "city": "Rania District", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rtvi.edu.iq" + ], + "aliases": [], + "acronyms": [ + "RTVI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "معهد رابارين التقني والمهني", + "iso639": "ar" + } + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1764 9831" + ], + "preferred": "0000 0005 1764 9831" + }, + "Wikidata": { + "all": [ + "Q129676692" + ], + "preferred": "Q129676692" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01gyxrk03.json b/v1.52/v1/01gyxrk03.json new file mode 100644 index 000000000..1142f1b56 --- /dev/null +++ b/v1.52/v1/01gyxrk03.json @@ -0,0 +1,288 @@ +{ + "id": "https://ror.org/01gyxrk03", + "name": "Université de Picardie Jules Verne", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Southeast Asian Studies", + "type": "Child", + "id": "https://ror.org/02cd98b83" + }, + { + "label": "Ecologie et Dynamique des Systèmes Anthropisés", + "type": "Child", + "id": "https://ror.org/02bhp7a56" + }, + { + "label": "Groupe de Recherche sur l'Alcool et les Pharmacodépendances", + "type": "Child", + "id": "https://ror.org/01c62av11" + }, + { + "label": "Laboratoire Amiénois de Mathématique Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/04smxbm79" + }, + { + "label": "Laboratoire de Réactivité et Chimie des Solides", + "type": "Child", + "id": "https://ror.org/02m9cs548" + }, + { + "label": "Laboratoire de Glycochimie, des Antimicrobiens et des Agroressources", + "type": "Child", + "id": "https://ror.org/01gje7n16" + }, + { + "label": "Maison Européenne des Sciences de l'Homme et de la Société", + "type": "Child", + "id": "https://ror.org/00m090414" + }, + { + "label": "Périnatalité & Risques Toxiques", + "type": "Child", + "id": "https://ror.org/05ewvzm89" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "Child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "Groupe de Recherches sur l’Analyse Multimodale de la Fonction Cérébrale", + "type": "Child", + "id": "https://ror.org/02a9mrq41" + }, + { + "label": "Centre universitaire de recherches sur l'Action Publique et le Politique Épistémologie & Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00rxdng69" + }, + { + "label": "Bassins - Réservoirs - Ressources", + "type": "Child", + "id": "https://ror.org/059424541" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Mécanismes physiopathologiques et conséquences des calcifications cardiovasculaires", + "type": "Child", + "id": "https://ror.org/00bgnvd66" + }, + { + "label": "Textes, représentations, archéologie, autorité et mémoire de l'antiquité à la renaissance", + "type": "Child", + "id": "https://ror.org/02ht85j57" + }, + { + "label": "Habiter le monde", + "type": "Child", + "id": "https://ror.org/02wdygz27" + }, + { + "label": "Centre d'histoire des sociétés, des sciences et des conflits", + "type": "Child", + "id": "https://ror.org/01jrmfs07" + }, + { + "label": "Conflits, représentations et dialogues dans l'univers anglo-saxon", + "type": "Child", + "id": "https://ror.org/03cs09e53" + }, + { + "label": "Centre d'études des relations et des contacts linguistiques et littéraires", + "type": "Child", + "id": "https://ror.org/00erb9339" + }, + { + "label": "Centre d'Etudes Hispaniques d'Amiens", + "type": "Child", + "id": "https://ror.org/05y441t49" + }, + { + "label": "Laboratoire d'Economie, Finance, Management et Innovation", + "type": "Child", + "id": "https://ror.org/00cctyp65" + }, + { + "label": "Centre de recherche sur les institutions, l'industrie et les systèmes économiques d'Amiens", + "type": "Child", + "id": "https://ror.org/01aba3e23" + }, + { + "label": "Laboratoire des technologies innovantes", + "type": "Child", + "id": "https://ror.org/00ry58h45" + }, + { + "label": "Eco-procédés, optimisation et aide à la décision", + "type": "Child", + "id": "https://ror.org/02bn7hs48" + }, + { + "label": "Laboratoire de physique des systèmes complexes", + "type": "Child", + "id": "https://ror.org/01s6bet72" + }, + { + "label": "Laboratoire de physique de la matière condensée", + "type": "Child", + "id": "https://ror.org/05brss208" + }, + { + "label": "Adaptation physiologiques à l'exercice et réadaptation à l'effort", + "type": "Child", + "id": "https://ror.org/04jvgth94" + }, + { + "label": "Laboratoire de physiologie cellulaire et moléculaire", + "type": "Child", + "id": "https://ror.org/03vv60b83" + }, + { + "label": "Centre de droit privé et de sciences criminelles d'Amiens", + "type": "Child", + "id": "https://ror.org/01v9vbn43" + }, + { + "label": "Simplification des soins chez les patients complexes", + "type": "Child", + "id": "https://ror.org/02at6c277" + }, + { + "label": "Chirurgie et extrémité céphalique, caractérisation morphologique et fonctionnelle", + "type": "Child", + "id": "https://ror.org/012h8gy04" + }, + { + "label": "Agents infectieux, résistance et chimiothérapie", + "type": "Child", + "id": "https://ror.org/04mywez65" + }, + { + "label": "Centre de recherche en psychologie : cognition, psychisme et organisations", + "type": "Child", + "id": "https://ror.org/007a90f76" + }, + { + "label": "Hématopoïèse et immunologie", + "type": "Child", + "id": "https://ror.org/03keztm33" + }, + { + "label": "Centre amiénois de recherche en éducation et formation", + "type": "Child", + "id": "https://ror.org/04grq1g73" + }, + { + "label": "Modélisation, information et systèmes", + "type": "Child", + "id": "https://ror.org/05w9qrp28" + }, + { + "label": "Laboratoire de neurosciences fonctionnelles et pathologies", + "type": "Child", + "id": "https://ror.org/008n78156" + }, + { + "label": "Centre de recherches en arts et esthétique", + "type": "Child", + "id": "https://ror.org/03jt9em80" + } + ], + "addresses": [ + { + "lat": 49.9, + "lng": 2.3, + "state": null, + "state_code": null, + "city": "Amiens", + "geonames_city": { + "id": 3037854, + "city": "Amiens", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-picardie.fr/" + ], + "aliases": [], + "acronyms": [ + "UPJV" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Picardie_Jules_Verne", + "labels": [ + { + "label": "Universitat de Picardia", + "iso639": "ca" + }, + { + "label": "University of Picardie Jules Verne", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.11162.35", + "preferred": "grid.11162.35" + }, + "ISNI": { + "all": [ + "0000 0001 0789 1385" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q947747" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01h3dr788.json b/v1.52/v1/01h3dr788.json new file mode 100644 index 000000000..157059be5 --- /dev/null +++ b/v1.52/v1/01h3dr788.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/01h3dr788", + "name": "Stichting tegen Kanker", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.kanker.be/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fondation contre le Cancer", + "iso639": "fr" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005026", + "501100013845" + ], + "preferred": "501100013845" + }, + "GRID": { + "all": "grid.453397.f", + "preferred": "grid.453397.f" + }, + "ISNI": { + "all": [ + "0000 0000 8517 3314" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01h6mr398.json b/v1.52/v1/01h6mr398.json new file mode 100644 index 000000000..5ce34d6d8 --- /dev/null +++ b/v1.52/v1/01h6mr398.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01h6mr398", + "name": "Sociological Scientific Society of Serbia", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://snds.rs" + ], + "aliases": [], + "acronyms": [ + "SNDS", + "SSSS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Sociološko naučno društvo Srbije", + "iso639": "sr" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8516 6420" + ], + "preferred": "0000 0004 8516 6420" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01hjh7h09.json b/v1.52/v1/01hjh7h09.json new file mode 100644 index 000000000..a5bdc714e --- /dev/null +++ b/v1.52/v1/01hjh7h09.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01hjh7h09", + "name": "Tecnológico de Estudios Superiores de Cuautitlán Izcalli", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 19.64388, + "lng": -99.21598, + "state": null, + "state_code": null, + "city": "Cuautitlán Izcalli", + "geonames_city": { + "id": 3515807, + "city": "Cuautitlán Izcalli", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tesci.edomex.gob.mx" + ], + "aliases": [ + "TecNM Cuautitlán Izcalli", + "Technology and Higher Education of Cuautitlan Izcalli" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 504X" + ], + "preferred": "0000 0004 1770 504X" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01hjzeq58.json b/v1.52/v1/01hjzeq58.json new file mode 100644 index 000000000..be7bd4cb2 --- /dev/null +++ b/v1.52/v1/01hjzeq58.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/01hjzeq58", + "name": "Chiba University", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Forensic Mental Health, Chiba University", + "type": "Child", + "id": "https://ror.org/05b0gpy83" + }, + { + "label": "Chiba University Hospital", + "type": "Related", + "id": "https://ror.org/0126xah18" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 35.6, + "lng": 140.11667, + "state": null, + "state_code": null, + "city": "Chiba", + "geonames_city": { + "id": 2113015, + "city": "Chiba", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.chiba-u.ac.jp/e/" + ], + "aliases": [ + "Chiba Daigaku" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Chiba_University", + "labels": [ + { + "label": "千葉大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008529" + ], + "preferred": null + }, + "GRID": { + "all": "grid.136304.3", + "preferred": "grid.136304.3" + }, + "ISNI": { + "all": [ + "0000 0004 0370 1101" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1321803" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01hqfk569.json b/v1.52/v1/01hqfk569.json new file mode 100644 index 000000000..6ff9c861c --- /dev/null +++ b/v1.52/v1/01hqfk569.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/01hqfk569", + "name": "Indonesian Institute for Counseling, Education, and Therapy", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": -0.94924, + "lng": 100.35427, + "state": null, + "state_code": null, + "city": "Padang", + "geonames_city": { + "id": 1633419, + "city": "Padang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iicet.org" + ], + "aliases": [], + "acronyms": [ + "IICET" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01hrtf583.json b/v1.52/v1/01hrtf583.json new file mode 100644 index 000000000..cbaaab4b5 --- /dev/null +++ b/v1.52/v1/01hrtf583.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/01hrtf583", + "name": "Synchrotron Radiation for Biomedicine", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://strobe.univ-grenoble-alpes.fr" + ], + "aliases": [ + "Rayonnement Synchrotron pour la Recherche Biomédicale" + ], + "acronyms": [ + "STROBE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01hw00g98.json b/v1.52/v1/01hw00g98.json new file mode 100644 index 000000000..417ee7981 --- /dev/null +++ b/v1.52/v1/01hw00g98.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01hw00g98", + "name": "Sociedad Española de Nefrología", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.46472, + "lng": -3.80444, + "state": null, + "state_code": null, + "city": "Santander", + "geonames_city": { + "id": 3109718, + "city": "Santander", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.senefro.org/modules.php?name=home&lang=ES" + ], + "aliases": [], + "acronyms": [ + "SEN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015883" + ], + "preferred": "100015883" + }, + "GRID": { + "all": "grid.489719.a", + "preferred": "grid.489719.a" + }, + "ISNI": { + "all": [ + "0000 0000 9788 405X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01hxyb880.json b/v1.52/v1/01hxyb880.json new file mode 100644 index 000000000..823b01cff --- /dev/null +++ b/v1.52/v1/01hxyb880.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01hxyb880", + "name": "Universidade de Luanda", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -9.06875, + "lng": 13.16072, + "state": null, + "state_code": null, + "city": "Belas", + "geonames_city": { + "id": 10440865, + "city": "Belas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uniluanda.ao" + ], + "aliases": [ + "Uniluanda" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Universidade_de_Luanda", + "labels": [ + { + "label": "University of Luanda", + "iso639": "en" + } + ], + "country": { + "country_name": "Angola", + "country_code": "AO" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1449 3341" + ], + "preferred": "0000 0005 1449 3341" + }, + "Wikidata": { + "all": [ + "Q111158643" + ], + "preferred": "Q111158643" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01j1gwp17.json b/v1.52/v1/01j1gwp17.json new file mode 100644 index 000000000..6d4bc2f1b --- /dev/null +++ b/v1.52/v1/01j1gwp17.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/01j1gwp17", + "name": "Teledyne FLIR (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1978, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Teledyne FLIR (Belgium)", + "type": "Child", + "id": "https://ror.org/051arnj27" + }, + { + "label": "Teledyne Technologies (United States)", + "type": "Parent", + "id": "https://ror.org/00a1gne75" + } + ], + "addresses": [ + { + "lat": 45.29984, + "lng": -122.77371, + "state": null, + "state_code": null, + "city": "Wilsonville", + "geonames_city": { + "id": 5761287, + "city": "Wilsonville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.flir.in" + ], + "aliases": [ + "FLIR Systems", + "FLIR Systems US" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/FLIR_Systems", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.422173.1", + "preferred": "grid.422173.1" + }, + "ISNI": { + "all": [ + "0000 0004 0419 9555" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5426537" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01j72sa23.json b/v1.52/v1/01j72sa23.json new file mode 100644 index 000000000..a47b5f1ea --- /dev/null +++ b/v1.52/v1/01j72sa23.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01j72sa23", + "name": "NSW Roads and Maritime Services", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of New South Wales", + "type": "Parent", + "id": "https://ror.org/0067dvq63" + } + ], + "addresses": [ + { + "lat": -33.839, + "lng": 151.2072, + "state": null, + "state_code": null, + "city": "North Sydney", + "geonames_city": { + "id": 2154855, + "city": "North Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.rms.nsw.gov.au/" + ], + "aliases": [ + "New South Wales Roads and Maritime Services", + "Roads and Maritime Services" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.474150.3", + "preferred": "grid.474150.3" + }, + "ISNI": { + "all": [ + "0000 0001 2296 3041" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01jeee804.json b/v1.52/v1/01jeee804.json new file mode 100644 index 000000000..729ceba55 --- /dev/null +++ b/v1.52/v1/01jeee804.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/01jeee804", + "name": "NOAA Great Lakes Environmental Research Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "NOAA Oceanic and Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/02kgve346" + }, + { + "label": "Cooperative Institute for Great Lakes Research", + "type": "Child", + "id": "https://ror.org/04xgzv028" + } + ], + "addresses": [ + { + "lat": 42.27756, + "lng": -83.74088, + "state": null, + "state_code": null, + "city": "Ann Arbor", + "geonames_city": { + "id": 4984247, + "city": "Ann Arbor", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.glerl.noaa.gov/" + ], + "aliases": [ + "Great Lakes Environmental Research Laboratory", + "U.S. Great Lakes Environmental Research Laboratory", + "U.S. National Oceanic and Atmospheric Administration Great Lakes Environmental Research Laboratory", + "United States Great Lakes Environmental Research Laboratory", + "United States National Oceanic and Atmospheric Administration Great Lakes Environmental Research Laboratory" + ], + "acronyms": [ + "GLERL", + "NOAA GLERL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Great_Lakes_Environmental_Research_Laboratory", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018604" + ], + "preferred": "100018604" + }, + "GRID": { + "all": "grid.474355.4", + "preferred": "grid.474355.4" + }, + "ISNI": { + "all": [ + "0000 0004 0602 576X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5599447" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01js2sh04.json b/v1.52/v1/01js2sh04.json new file mode 100644 index 000000000..55dd45e20 --- /dev/null +++ b/v1.52/v1/01js2sh04.json @@ -0,0 +1,134 @@ +{ + "id": "https://ror.org/01js2sh04", + "name": "Deutsches Elektronen-Synchrotron DESY", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Center for Free-Electron Laser Science", + "type": "Child", + "id": "https://ror.org/04fme8709" + }, + { + "label": "John von Neumann Institute for Computing", + "type": "Child", + "id": "https://ror.org/02zmk8084" + }, + { + "label": "Centre for Structural Systems Biology", + "type": "Child", + "id": "https://ror.org/04fhwda97" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "Child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "Helmholtz Association of German Research Centres", + "type": "Parent", + "id": "https://ror.org/0281dp749" + }, + { + "label": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 53.55073, + "lng": 9.99302, + "state": null, + "state_code": null, + "city": "Hamburg", + "geonames_city": { + "id": 2911298, + "city": "Hamburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.desy.de/index_eng.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/DESY", + "labels": [ + { + "label": "DESY", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001647" + ], + "preferred": null + }, + "GRID": { + "all": "grid.7683.a", + "preferred": "grid.7683.a" + }, + "ISNI": { + "all": [ + "0000 0004 0492 0453" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q311801", + "Q39901428" + ], + "preferred": "Q311801" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01jtrvx49.json b/v1.52/v1/01jtrvx49.json new file mode 100644 index 000000000..ea957b6bb --- /dev/null +++ b/v1.52/v1/01jtrvx49.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/01jtrvx49", + "name": "World Glacier Monitoring Service", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "University of Zurich", + "type": "Related", + "id": "https://ror.org/02crff812" + }, + { + "label": "International Union of Geodesy and Geophysics", + "type": "Related", + "id": "https://ror.org/01jachm79" + }, + { + "label": "International Science Council", + "type": "Related", + "id": "https://ror.org/034s44556" + }, + { + "label": "United Nations Environment Programme", + "type": "Related", + "id": "https://ror.org/015z29x25" + }, + { + "label": "UNESCO", + "type": "Related", + "id": "https://ror.org/04h4z8k05" + }, + { + "label": "World Meteorological Organization", + "type": "Related", + "id": "https://ror.org/011pjwf87" + } + ], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://wgms.ch" + ], + "aliases": [], + "acronyms": [ + "WGMS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/World_Glacier_Monitoring_Service", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0942 1088" + ], + "preferred": "0000 0001 0942 1088" + }, + "Wikidata": { + "all": [ + "Q656311" + ], + "preferred": "Q656311" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01k2qqb14.json b/v1.52/v1/01k2qqb14.json new file mode 100644 index 000000000..17bfbf848 --- /dev/null +++ b/v1.52/v1/01k2qqb14.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01k2qqb14", + "name": "Toko University", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.47917, + "lng": 120.44889, + "state": null, + "state_code": null, + "city": "Chiayi City", + "geonames_city": { + "id": 1678836, + "city": "Chiayi City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://eng.toko.edu.tw/bin/home.php" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Toko_University", + "labels": [ + { + "label": "稻江科技暨管理學院", + "iso639": "zh" + } + ], + "country": { + "country_name": "Taiwan", + "country_code": "TW" + }, + "external_ids": { + "GRID": { + "all": "grid.449585.1", + "preferred": "grid.449585.1" + }, + "ISNI": { + "all": [ + "0000 0004 0639 4311" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q11596694" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01k8bwd50.json b/v1.52/v1/01k8bwd50.json new file mode 100644 index 000000000..a14851121 --- /dev/null +++ b/v1.52/v1/01k8bwd50.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01k8bwd50", + "name": "NFDI4Immuno", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 49.40768, + "lng": 8.69079, + "state": null, + "state_code": null, + "city": "Heidelberg", + "geonames_city": { + "id": 2907911, + "city": "Heidelberg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nfdi4immuno.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Research Data Infrastructure for Immunology", + "iso639": "en" + }, + { + "label": "Nationale Forschungsdateninfrastruktur für Immunologie", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q113543313" + ], + "preferred": "Q113543313" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01k97gp34.json b/v1.52/v1/01k97gp34.json new file mode 100644 index 000000000..036efc4f7 --- /dev/null +++ b/v1.52/v1/01k97gp34.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/01k97gp34", + "name": "TU Dortmund University", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institute for Advanced Study in the Humanities Essen", + "type": "Child", + "id": "https://ror.org/01z1qnm06" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 51.51494, + "lng": 7.466, + "state": null, + "state_code": null, + "city": "Dortmund", + "geonames_city": { + "id": 2935517, + "city": "Dortmund", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tu-dortmund.de/en/" + ], + "aliases": [ + "TU Dortmund", + "Technical University Dortmund", + "Technical University of Dortmund", + "Universitaet Dortmund", + "Universitat Dortmund", + "University of Dortmund", + "Universität Dortmund" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Technical_University_of_Dortmund", + "labels": [ + { + "label": "Technische Universität Dortmund", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100016378" + ], + "preferred": "501100016378" + }, + "GRID": { + "all": "grid.5675.1", + "preferred": "grid.5675.1" + }, + "ISNI": { + "all": [ + "0000 0001 0416 9637" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q685557" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01k9z4a50.json b/v1.52/v1/01k9z4a50.json new file mode 100644 index 000000000..60155ad1e --- /dev/null +++ b/v1.52/v1/01k9z4a50.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01k9z4a50", + "name": "NFDI4Cat", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 50.11552, + "lng": 8.68417, + "state": null, + "state_code": null, + "city": "Frankfurt am Main", + "geonames_city": { + "id": 2925533, + "city": "Frankfurt am Main", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nfdi4cat.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "NFDI for Catalysis-Related Sciences", + "iso639": "en" + }, + { + "label": "NFDI für Wissenschaften mit Bezug zur Katalyse", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q98380342" + ], + "preferred": "Q98380342" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01kbr1737.json b/v1.52/v1/01kbr1737.json new file mode 100644 index 000000000..a007309be --- /dev/null +++ b/v1.52/v1/01kbr1737.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01kbr1737", + "name": "PHotonique ELectronique et Ingénierie QuantiqueS", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cea.fr/drf/irig/Pages/Laboratoires/Pheliqs.aspx" + ], + "aliases": [], + "acronyms": [ + "PHELIQS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780340" + ], + "preferred": "Q51780340" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01kzn7k21.json b/v1.52/v1/01kzn7k21.json new file mode 100644 index 000000000..faf80c799 --- /dev/null +++ b/v1.52/v1/01kzn7k21.json @@ -0,0 +1,654 @@ +{ + "id": "https://ror.org/01kzn7k21", + "name": "Islamic Azad University, Tehran", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Islamic Azad University Ardabil", + "type": "Child", + "id": "https://ror.org/058np3c43" + }, + { + "label": "Islamic Azad University Bandar Abbas", + "type": "Child", + "id": "https://ror.org/01q7qty61" + }, + { + "label": "Islamic Azad University Boroujerd Branch", + "type": "Child", + "id": "https://ror.org/0265k0q35" + }, + { + "label": "Islamic Azad University Bostanabad", + "type": "Child", + "id": "https://ror.org/051t3nd40" + }, + { + "label": "Islamic Azad University Central Tehran Branch", + "type": "Child", + "id": "https://ror.org/03a11m818" + }, + { + "label": "Islamic Azad University Dehaghan", + "type": "Child", + "id": "https://ror.org/01bzz5b22" + }, + { + "label": "Islamic Azad University Dental Branch of Tehran", + "type": "Child", + "id": "https://ror.org/05m5wey82" + }, + { + "label": "Islamic Azad University Dolatabad", + "type": "Child", + "id": "https://ror.org/049g0t365" + }, + { + "label": "Islamic Azad University Fasa Branch", + "type": "Child", + "id": "https://ror.org/01xbtjm93" + }, + { + "label": "Islamic Azad University Ilam Branch", + "type": "Child", + "id": "https://ror.org/05r6qy592" + }, + { + "label": "Islamic Azad University Islamshahr Branch", + "type": "Child", + "id": "https://ror.org/04zdgqb89" + }, + { + "label": "Islamic Azad University Janah", + "type": "Child", + "id": "https://ror.org/057f4mk30" + }, + { + "label": "Islamic Azad University Kashmar Branch", + "type": "Child", + "id": "https://ror.org/0095a7z52" + }, + { + "label": "Islamic Azad University Kazeron", + "type": "Child", + "id": "https://ror.org/02ytn4d59" + }, + { + "label": "Islamic Azad University Kerman", + "type": "Child", + "id": "https://ror.org/04ywz9252" + }, + { + "label": "Islamic Azad University Mahshahr", + "type": "Child", + "id": "https://ror.org/01y361889" + }, + { + "label": "Islamic Azad University Maybod", + "type": "Child", + "id": "https://ror.org/04q7e9e16" + }, + { + "label": "Islamic Azad University Medical Branch of Tehran", + "type": "Child", + "id": "https://ror.org/00eaebe27" + }, + { + "label": "Islamic Azad University Mehriz", + "type": "Child", + "id": "https://ror.org/00z0c0y28" + }, + { + "label": "Islamic Azad University Mobarakeh", + "type": "Child", + "id": "https://ror.org/01a3xr262" + }, + { + "label": "Islamic Azad University North Tehran Branch", + "type": "Child", + "id": "https://ror.org/00sb1nr29" + }, + { + "label": "Islamic Azad University Pharmaceutical Sciences Branch", + "type": "Child", + "id": "https://ror.org/04sssnv16" + }, + { + "label": "Islamic Azad University Quchan", + "type": "Child", + "id": "https://ror.org/04tc04306" + }, + { + "label": "Islamic Azad University Rasht Branch", + "type": "Child", + "id": "https://ror.org/0151gh112" + }, + { + "label": "Islamic Azad University Roudehen Branch", + "type": "Child", + "id": "https://ror.org/00dzmf738" + }, + { + "label": "Islamic Azad University Sanandaj Branch", + "type": "Child", + "id": "https://ror.org/048vche49" + }, + { + "label": "Islamic Azad University Sari Branch", + "type": "Child", + "id": "https://ror.org/0032wgp28" + }, + { + "label": "Islamic Azad University Saveh", + "type": "Child", + "id": "https://ror.org/053s4kp50" + }, + { + "label": "Islamic Azad University Semnan", + "type": "Child", + "id": "https://ror.org/01abrxp85" + }, + { + "label": "Islamic Azad University Shabestar", + "type": "Child", + "id": "https://ror.org/03b49d241" + }, + { + "label": "Islamic Azad University Shahr-e-Rey", + "type": "Child", + "id": "https://ror.org/04yrwqa21" + }, + { + "label": "Islamic Azad University Shirvan Branch", + "type": "Child", + "id": "https://ror.org/02wenm763" + }, + { + "label": "Islamic Azad University South Tehran Branch", + "type": "Child", + "id": "https://ror.org/02xc21a77" + }, + { + "label": "Islamic Azad University Tonekabon", + "type": "Child", + "id": "https://ror.org/042heys49" + }, + { + "label": "Islamic Azad University Yasuj", + "type": "Child", + "id": "https://ror.org/041hvc055" + }, + { + "label": "Islamic Azad University of Ahar", + "type": "Child", + "id": "https://ror.org/022sv5w75" + }, + { + "label": "Islamic Azad University of Arsanjan", + "type": "Child", + "id": "https://ror.org/05fbv2v73" + }, + { + "label": "Islamic Azad University of Ayatollah Amoli", + "type": "Child", + "id": "https://ror.org/02arrmv90" + }, + { + "label": "Islamic Azad University of Birjand", + "type": "Child", + "id": "https://ror.org/02p42am41" + }, + { + "label": "Islamic Azad University of Chalous", + "type": "Child", + "id": "https://ror.org/02cytaa95" + }, + { + "label": "Islamic Azad University of Damavand", + "type": "Child", + "id": "https://ror.org/0516eyx49" + }, + { + "label": "Islamic Azad University of Falavarjan", + "type": "Child", + "id": "https://ror.org/01e0hb698" + }, + { + "label": "Islamic Azad University of Farahan", + "type": "Child", + "id": "https://ror.org/02jywn868" + }, + { + "label": "Islamic Azad University of Gachsaran", + "type": "Child", + "id": "https://ror.org/00nt0xf41" + }, + { + "label": "Islamic Azad University of Garmsar", + "type": "Child", + "id": "https://ror.org/025p0rk11" + }, + { + "label": "Islamic Azad University of Gorgan", + "type": "Child", + "id": "https://ror.org/02865ms07" + }, + { + "label": "Islamic Azad University of Hamedan", + "type": "Child", + "id": "https://ror.org/007zpd132" + }, + { + "label": "Islamic Azad University of Kashan", + "type": "Child", + "id": "https://ror.org/04q36bj19" + }, + { + "label": "Islamic Azad University of Kermanshah", + "type": "Child", + "id": "https://ror.org/05sehyt57" + }, + { + "label": "Islamic Azad University of Khomeynishahr", + "type": "Child", + "id": "https://ror.org/01qskrs45" + }, + { + "label": "Islamic Azad University of Mahabad", + "type": "Child", + "id": "https://ror.org/015sncd69" + }, + { + "label": "Islamic Azad University of Majlesi", + "type": "Child", + "id": "https://ror.org/00jd71216" + }, + { + "label": "Islamic Azad University of Malard", + "type": "Child", + "id": "https://ror.org/044jx8018" + }, + { + "label": "Islamic Azad University of Marand", + "type": "Child", + "id": "https://ror.org/04rfmre55" + }, + { + "label": "Islamic Azad University of Najafabad", + "type": "Child", + "id": "https://ror.org/015j7c446" + }, + { + "label": "Islamic Azad University of Nishapur", + "type": "Child", + "id": "https://ror.org/029rt7q74" + }, + { + "label": "Islamic Azad University of Parand", + "type": "Child", + "id": "https://ror.org/02mgtjj52" + }, + { + "label": "Islamic Azad University of Sabzevar", + "type": "Child", + "id": "https://ror.org/043zh9f19" + }, + { + "label": "Islamic Azad University of Shahrekord", + "type": "Child", + "id": "https://ror.org/02tbw3b35" + }, + { + "label": "Islamic Azad University of Shahreza", + "type": "Child", + "id": "https://ror.org/006hvpn82" + }, + { + "label": "Islamic Azad University of Shiraz", + "type": "Child", + "id": "https://ror.org/03xbchh53" + }, + { + "label": "Islamic Azad University of Tabriz", + "type": "Child", + "id": "https://ror.org/04hnf9a51" + }, + { + "label": "Islamic Azad University of Tafresh", + "type": "Child", + "id": "https://ror.org/02bcg1976" + }, + { + "label": "Islamic Azad University of Urmia", + "type": "Child", + "id": "https://ror.org/05km8ys10" + }, + { + "label": "Islamic Azad University of Varamin", + "type": "Child", + "id": "https://ror.org/01px8ca57" + }, + { + "label": "Islamic Azad University of Zanjan", + "type": "Child", + "id": "https://ror.org/02bq60y92" + }, + { + "label": "Islamic Azad University, Abhar Branch", + "type": "Child", + "id": "https://ror.org/01kfq1x58" + }, + { + "label": "Islamic Azad University, Ahvaz Branch", + "type": "Child", + "id": "https://ror.org/04vcs0j60" + }, + { + "label": "Islamic Azad University, Arak", + "type": "Child", + "id": "https://ror.org/02558wk32" + }, + { + "label": "Islamic Azad University, Ashtian Branch", + "type": "Child", + "id": "https://ror.org/00y16bh55" + }, + { + "label": "Islamic Azad University, Azadshahr Branch", + "type": "Child", + "id": "https://ror.org/05343ec73" + }, + { + "label": "Islamic Azad University, Bandar Anzali Branch", + "type": "Child", + "id": "https://ror.org/03bnp9h65" + }, + { + "label": "Islamic Azad University, Bojnourd Branch", + "type": "Child", + "id": "https://ror.org/00wapyh41" + }, + { + "label": "Islamic Azad University, Bonab Branch", + "type": "Child", + "id": "https://ror.org/056v0a906" + }, + { + "label": "Islamic Azad University, Boukan", + "type": "Child", + "id": "https://ror.org/00ejh1102" + }, + { + "label": "Islamic Azad University, Bushehr Branch", + "type": "Child", + "id": "https://ror.org/03hhrzm12" + }, + { + "label": "Islamic Azad University, Damghan Branch", + "type": "Child", + "id": "https://ror.org/05a2cfm07" + }, + { + "label": "Islamic Azad University, Dezful Branch", + "type": "Child", + "id": "https://ror.org/05d1wpf45" + }, + { + "label": "Islamic Azad University, Estahban Branch", + "type": "Child", + "id": "https://ror.org/00crw9046" + }, + { + "label": "Islamic Azad University, Firoozkooh Branch", + "type": "Child", + "id": "https://ror.org/025eayv75" + }, + { + "label": "Islamic Azad University, Firuzabad Branch", + "type": "Child", + "id": "https://ror.org/00veca956" + }, + { + "label": "Islamic Azad University, Isfahan", + "type": "Child", + "id": "https://ror.org/039zhhm92" + }, + { + "label": "Islamic Azad University, Jahrom Branch", + "type": "Child", + "id": "https://ror.org/01v0kyj08" + }, + { + "label": "Islamic Azad University, Jiroft Branch", + "type": "Child", + "id": "https://ror.org/02k34sh32" + }, + { + "label": "Islamic Azad University, Karaj", + "type": "Child", + "id": "https://ror.org/01y4xm534" + }, + { + "label": "Islamic Azad University, Khorramabad Branch", + "type": "Child", + "id": "https://ror.org/03aa31r16" + }, + { + "label": "Islamic Azad University, Khoy Branch", + "type": "Child", + "id": "https://ror.org/038bemd25" + }, + { + "label": "Islamic Azad University, Komijan Branch", + "type": "Child", + "id": "https://ror.org/01hdcfr51" + }, + { + "label": "Islamic Azad University, Lahijan Branch", + "type": "Child", + "id": "https://ror.org/03dhqyc75" + }, + { + "label": "Islamic Azad University, Larestan Branch", + "type": "Child", + "id": "https://ror.org/047hrmf08" + }, + { + "label": "Islamic Azad University, Malayer Branch", + "type": "Child", + "id": "https://ror.org/03f84d710" + }, + { + "label": "Islamic Azad University, Mashhad", + "type": "Child", + "id": "https://ror.org/00bvysh61" + }, + { + "label": "Islamic Azad University, Masjed Soleyman", + "type": "Child", + "id": "https://ror.org/05m905s87" + }, + { + "label": "Islamic Azad University, Naragh Branch", + "type": "Child", + "id": "https://ror.org/034xs3n22" + }, + { + "label": "Islamic Azad University, Omidieh Branch", + "type": "Child", + "id": "https://ror.org/032syc365" + }, + { + "label": "Islamic Azad University, Science and Research Branch", + "type": "Child", + "id": "https://ror.org/03187yj51" + }, + { + "label": "Islamic Azad University, Shahinshahr Branch", + "type": "Child", + "id": "https://ror.org/04t50yw64" + }, + { + "label": "Islamic Azad University, Shahr-e-Qods Branch", + "type": "Child", + "id": "https://ror.org/022ca9x91" + }, + { + "label": "Islamic Azad University, Shahrood", + "type": "Child", + "id": "https://ror.org/00j1sp553" + }, + { + "label": "Islamic Azad University, Shoushtar Branch", + "type": "Child", + "id": "https://ror.org/04w2yhr49" + }, + { + "label": "Islamic Azad University, Sirjan Branch", + "type": "Child", + "id": "https://ror.org/03nsj9897" + }, + { + "label": "Islamic Azad University, UAE Branch", + "type": "Child", + "id": "https://ror.org/02rxa1r38" + }, + { + "label": "Islamic Azad University, Yazd", + "type": "Child", + "id": "https://ror.org/04mwvcn50" + }, + { + "label": "Islamic Azad University, Zahedan Branch", + "type": "Child", + "id": "https://ror.org/01am3pw68" + }, + { + "label": "Izeh Islamic Azad University", + "type": "Child", + "id": "https://ror.org/048gqac97" + }, + { + "label": "Qaemshahr Islamic Azad University", + "type": "Child", + "id": "https://ror.org/03y0dv989" + }, + { + "label": "Qazvin Islamic Azad University", + "type": "Child", + "id": "https://ror.org/023kjn321" + }, + { + "label": "Qom Islamic Azad University", + "type": "Child", + "id": "https://ror.org/0283g3v77" + }, + { + "label": "Takestan Islamic Azad University", + "type": "Child", + "id": "https://ror.org/05mtgrz63" + }, + { + "label": "Islamic Azad University, Abadan", + "type": "Child", + "id": "https://ror.org/02c1xev33" + } + ], + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iau.ac.ir/" + ], + "aliases": [ + "Azad University", + "Dāneshgāh-e Āzād-e Eslāmi" + ], + "acronyms": [ + "IAU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Islamic_Azad_University", + "labels": [ + { + "label": "دانشگاه آزاد اسلامی", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002660", + "501100006058" + ], + "preferred": "501100002660" + }, + "GRID": { + "all": "grid.411463.5", + "preferred": "grid.411463.5" + }, + "ISNI": { + "all": [ + "0000 0001 0706 2472" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2661844" + ], + "preferred": "Q2661844" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01m1tbs81.json b/v1.52/v1/01m1tbs81.json new file mode 100644 index 000000000..95b7df63a --- /dev/null +++ b/v1.52/v1/01m1tbs81.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01m1tbs81", + "name": "Centre d'Etudes et de Recherches Comparatives Constitutionnelles et Politiques", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cercop.edu.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "CERCOP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 1955 3076" + ], + "preferred": "0000 0001 1955 3076" + }, + "Wikidata": { + "all": [ + "Q51782357" + ], + "preferred": "Q51782357" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01m296r74.json b/v1.52/v1/01m296r74.json new file mode 100644 index 000000000..17cdd4cf5 --- /dev/null +++ b/v1.52/v1/01m296r74.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/01m296r74", + "name": "Universidad Autónoma de Zacatecas \"Francisco García Salinas\"", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.76843, + "lng": -102.58141, + "state": null, + "state_code": null, + "city": "Zacatecas City", + "geonames_city": { + "id": 3979844, + "city": "Zacatecas City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uaz.edu.mx" + ], + "aliases": [ + "Autonomous University of Zacatecas" + ], + "acronyms": [ + "UAZ" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Autonomous_University_of_Zacatecas", + "labels": [ + { + "label": "Universidad Autónoma de Zacatecas", + "iso639": "es" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007506" + ], + "preferred": "501100007506" + }, + "GRID": { + "all": "grid.412865.c", + "preferred": "grid.412865.c" + }, + "ISNI": { + "all": [ + "0000 0001 2105 1788" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1266514" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01m7hcv15.json b/v1.52/v1/01m7hcv15.json new file mode 100644 index 000000000..58d2c4fdb --- /dev/null +++ b/v1.52/v1/01m7hcv15.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01m7hcv15", + "name": "Air Force Sustainment Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [ + { + "label": "Air Force Materiel Command", + "type": "Parent", + "id": "https://ror.org/02m4c1x70" + } + ], + "addresses": [ + { + "lat": 35.42555, + "lng": -97.39682, + "state": null, + "state_code": null, + "city": "Tinker Air Force Base", + "geonames_city": { + "id": 4553114, + "city": "Tinker Air Force Base", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.afsc.af.mil" + ], + "aliases": [ + "US Air Force Sustainment Center", + "United States Air Force Sustainment Center" + ], + "acronyms": [ + "AFSC" + ], + "status": "active", + "wikipedia_url": "https://it.wikipedia.org/wiki/Air_Force_Sustainment_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q56322523" + ], + "preferred": "Q56322523" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01mq1e256.json b/v1.52/v1/01mq1e256.json new file mode 100644 index 000000000..d4b49ab01 --- /dev/null +++ b/v1.52/v1/01mq1e256.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01mq1e256", + "name": "Laboratoire de sociologie des Territoires, du travail, des âges et de la santé", + "email_address": null, + "ip_addresses": [], + "established": 2024, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Laboratoire Lorrain de Sciences Sociales", + "type": "Predecessor", + "id": "https://ror.org/01fe8k477" + } + ], + "addresses": [ + { + "lat": 48.68439, + "lng": 6.18496, + "state": null, + "state_code": null, + "city": "Nancy", + "geonames_city": { + "id": 2990999, + "city": "Nancy", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tetras.univ-lorraine.fr" + ], + "aliases": [], + "acronyms": [ + "TETRAS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q130280671" + ], + "preferred": "Q130280671" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01ms54x07.json b/v1.52/v1/01ms54x07.json new file mode 100644 index 000000000..cfba59f14 --- /dev/null +++ b/v1.52/v1/01ms54x07.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01ms54x07", + "name": "UMS-Autonomie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "Parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ums-autonomie.fr" + ], + "aliases": [ + "Autonomia", + "Autonomia Recherche", + "Autonomie" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695025" + ], + "preferred": "Q123695025" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01n0nt715.json b/v1.52/v1/01n0nt715.json new file mode 100644 index 000000000..dd71783c9 --- /dev/null +++ b/v1.52/v1/01n0nt715.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01n0nt715", + "name": "University of the South Pacific - Emalus Campus", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of the South Pacific", + "type": "Parent", + "id": "https://ror.org/008stv805" + } + ], + "addresses": [ + { + "lat": -17.73648, + "lng": 168.31366, + "state": null, + "state_code": null, + "city": "Port Vila", + "geonames_city": { + "id": 2135171, + "city": "Port Vila", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usp.ac.fj/emalus" + ], + "aliases": [ + "USP Emalus Campus", + "University of the South Pacific Vanuatu" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Vanuatu", + "country_code": "VU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q99286041" + ], + "preferred": "Q99286041" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01n9yr226.json b/v1.52/v1/01n9yr226.json new file mode 100644 index 000000000..35eb21f30 --- /dev/null +++ b/v1.52/v1/01n9yr226.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01n9yr226", + "name": "Centre Tourangeau d’Histoire et d’Études des Sources", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Tours", + "type": "Parent", + "id": "https://ror.org/02wwzvj46" + } + ], + "addresses": [ + { + "lat": 47.39484, + "lng": 0.70398, + "state": null, + "state_code": null, + "city": "Tours", + "geonames_city": { + "id": 2972191, + "city": "Tours", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cethis.hypotheses.org/" + ], + "aliases": [ + "EA 6298" + ], + "acronyms": [ + "CeTHiS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503131.5", + "preferred": "grid.503131.5" + }, + "Wikidata": { + "all": [ + "Q51781203" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01nyadv46.json b/v1.52/v1/01nyadv46.json new file mode 100644 index 000000000..1379d9021 --- /dev/null +++ b/v1.52/v1/01nyadv46.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01nyadv46", + "name": "New York State Museum", + "email_address": null, + "ip_addresses": [], + "established": 1836, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.65258, + "lng": -73.75623, + "state": null, + "state_code": null, + "city": "Albany", + "geonames_city": { + "id": 5106834, + "city": "Albany", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nysm.nysed.gov" + ], + "aliases": [ + "New York State Geological and Natural History Survey", + "New York State Museum of Natural History" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/New_York_State_Museum", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.436284.f", + "preferred": "grid.436284.f" + }, + "ISNI": { + "all": [ + "0000 0004 0499 6714" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3875588" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01p7qe739.json b/v1.52/v1/01p7qe739.json new file mode 100644 index 000000000..cb2ed27f0 --- /dev/null +++ b/v1.52/v1/01p7qe739.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/01p7qe739", + "name": "Tokai University", + "email_address": null, + "ip_addresses": [], + "established": 1942, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tokai University Hachioji Hospital", + "type": "Related", + "id": "https://ror.org/00gr1q288" + }, + { + "label": "Tokai University Hospital", + "type": "Related", + "id": "https://ror.org/01gvmn480" + }, + { + "label": "Tokai University Tokyo Hospital", + "type": "Related", + "id": "https://ror.org/034kd8j82" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.u-tokai.ac.jp" + ], + "aliases": [ + "Tōkai Daigaku" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Tokai_University", + "labels": [ + { + "label": "東海大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010655" + ], + "preferred": "501100010655" + }, + "GRID": { + "all": "grid.265061.6", + "preferred": "grid.265061.6" + }, + "ISNI": { + "all": [ + "0000 0001 1516 6626" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q963709" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01pwhp331.json b/v1.52/v1/01pwhp331.json new file mode 100644 index 000000000..cc75f5bc2 --- /dev/null +++ b/v1.52/v1/01pwhp331.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01pwhp331", + "name": "Srpsko arheološko društvo", + "email_address": null, + "ip_addresses": [], + "established": 1883, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://arheologija.rs" + ], + "aliases": [ + "Serbian Archaeological Society" + ], + "acronyms": [ + "SAD" + ], + "status": "active", + "wikipedia_url": "https://sr.wikipedia.org/sr-el/%D0%A1%D1%80%D0%BF%D1%81%D0%BA%D0%BE_%D0%B0%D1%80%D1%85%D0%B5%D0%BE%D0%BB%D0%BE%D1%88%D0%BA%D0%BE_%D0%B4%D1%80%D1%83%D1%88%D1%82%D0%B2%D0%BE", + "labels": [ + { + "label": "Српско археолошко друштво", + "iso639": "sr" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9731 1876" + ], + "preferred": "0000 0000 9731 1876" + }, + "Wikidata": { + "all": [ + "Q12759585" + ], + "preferred": "Q12759585" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01q1z8k08.json b/v1.52/v1/01q1z8k08.json new file mode 100644 index 000000000..06877a03f --- /dev/null +++ b/v1.52/v1/01q1z8k08.json @@ -0,0 +1,449 @@ +{ + "id": "https://ror.org/01q1z8k08", + "name": "State University of New York", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Alfred State College", + "type": "Child", + "id": "https://ror.org/00fe1xp94" + }, + { + "label": "Binghamton University", + "type": "Child", + "id": "https://ror.org/008rmbt77" + }, + { + "label": "Buffalo State University", + "type": "Child", + "id": "https://ror.org/05ms04m92" + }, + { + "label": "Cayuga Community College", + "type": "Child", + "id": "https://ror.org/01a2m8x11" + }, + { + "label": "Clinton Community College", + "type": "Child", + "id": "https://ror.org/0468fwt03" + }, + { + "label": "SUNY Brockport", + "type": "Child", + "id": "https://ror.org/0306aeb62" + }, + { + "label": "SUNY Corning Community College", + "type": "Child", + "id": "https://ror.org/00sepad12" + }, + { + "label": "Dutchess Community College", + "type": "Child", + "id": "https://ror.org/0188sb718" + }, + { + "label": "Empire State University", + "type": "Child", + "id": "https://ror.org/03sg2bq51" + }, + { + "label": "SUNY Erie", + "type": "Child", + "id": "https://ror.org/00tqjtg68" + }, + { + "label": "Farmingdale State College", + "type": "Child", + "id": "https://ror.org/010thz337" + }, + { + "label": "Fashion Institute of Technology", + "type": "Child", + "id": "https://ror.org/03jwrn541" + }, + { + "label": "Finger Lakes Community College", + "type": "Child", + "id": "https://ror.org/011kg8p14" + }, + { + "label": "Genesee Community College", + "type": "Child", + "id": "https://ror.org/053j19t39" + }, + { + "label": "Herkimer College", + "type": "Child", + "id": "https://ror.org/03hrye043" + }, + { + "label": "Jamestown Community College", + "type": "Child", + "id": "https://ror.org/0068dme40" + }, + { + "label": "Jefferson Community College", + "type": "Child", + "id": "https://ror.org/00j387684" + }, + { + "label": "Mohawk Valley Community College", + "type": "Child", + "id": "https://ror.org/02ps2mz85" + }, + { + "label": "Monroe Community College", + "type": "Child", + "id": "https://ror.org/03psxy088" + }, + { + "label": "SUNY Morrisville", + "type": "Child", + "id": "https://ror.org/008zr3m11" + }, + { + "label": "Nassau Community College", + "type": "Child", + "id": "https://ror.org/05v0vas53" + }, + { + "label": "New York Sea Grant", + "type": "Child", + "id": "https://ror.org/031m8s392" + }, + { + "label": "New York State College of Agriculture & Life Sciences", + "type": "Child", + "id": "https://ror.org/00j52pq61" + }, + { + "label": "New York State College of Ceramics", + "type": "Child", + "id": "https://ror.org/02n1c7856" + }, + { + "label": "New York State College of Veterinary Medicine", + "type": "Child", + "id": "https://ror.org/04r17kf39" + }, + { + "label": "New York State School of Industrial and Labor Relations", + "type": "Child", + "id": "https://ror.org/00zg6dt46" + }, + { + "label": "New York State University College of Human Ecology", + "type": "Child", + "id": "https://ror.org/047g2xp14" + }, + { + "label": "North Country Community College", + "type": "Child", + "id": "https://ror.org/05k6w6915" + }, + { + "label": "Onondaga Community College", + "type": "Child", + "id": "https://ror.org/04msyas67" + }, + { + "label": "Purchase College", + "type": "Child", + "id": "https://ror.org/057trrr89" + }, + { + "label": "SUNY Cobleskill", + "type": "Child", + "id": "https://ror.org/02sgpe757" + }, + { + "label": "SUNY Old Westbury", + "type": "Child", + "id": "https://ror.org/02rrhsz92" + }, + { + "label": "SUNY College of Environmental Science and Forestry", + "type": "Child", + "id": "https://ror.org/00qv0tw17" + }, + { + "label": "SUNY Fredonia", + "type": "Child", + "id": "https://ror.org/05vrs0r17" + }, + { + "label": "SUNY Geneseo", + "type": "Child", + "id": "https://ror.org/03g1q6c06" + }, + { + "label": "SUNY Korea", + "type": "Child", + "id": "https://ror.org/02d07gm56" + }, + { + "label": "SUNY Oneonta", + "type": "Child", + "id": "https://ror.org/02r3ym141" + }, + { + "label": "SUNY Plattsburgh", + "type": "Child", + "id": "https://ror.org/033zmj163" + }, + { + "label": "SUNY Polytechnic Institute", + "type": "Child", + "id": "https://ror.org/000fxgx19" + }, + { + "label": "SUNY Upstate Medical University", + "type": "Child", + "id": "https://ror.org/040kfrw16" + }, + { + "label": "SUNY Schenectady County Community College", + "type": "Child", + "id": "https://ror.org/03ncxj847" + }, + { + "label": "SUNY Cortland", + "type": "Child", + "id": "https://ror.org/05a4pj207" + }, + { + "label": "SUNY College of Optometry", + "type": "Child", + "id": "https://ror.org/02v9m6h26" + }, + { + "label": "SUNY Maritime College", + "type": "Child", + "id": "https://ror.org/02d4maz67" + }, + { + "label": "SUNY New Paltz", + "type": "Child", + "id": "https://ror.org/03j3dv688" + }, + { + "label": "State University of New York at Oswego", + "type": "Child", + "id": "https://ror.org/01597g643" + }, + { + "label": "State University of New York at Potsdam", + "type": "Child", + "id": "https://ror.org/032qgrc76" + }, + { + "label": "Stony Brook University", + "type": "Child", + "id": "https://ror.org/05qghxh33" + }, + { + "label": "University at Albany, State University of New York", + "type": "Child", + "id": "https://ror.org/012zs8222" + }, + { + "label": "University at Buffalo, State University of New York", + "type": "Child", + "id": "https://ror.org/01y64my43" + }, + { + "label": "SUNY Westchester Community College", + "type": "Child", + "id": "https://ror.org/02r2qbj91" + }, + { + "label": "Columbia-Greene Community College", + "type": "Child", + "id": "https://ror.org/00z0vcr53" + }, + { + "label": "SUNY Downstate Health Sciences University", + "type": "Child", + "id": "https://ror.org/0041qmd21" + }, + { + "label": "SUNY Canton", + "type": "Child", + "id": "https://ror.org/00tdmgj61" + }, + { + "label": "SUNY Delhi", + "type": "Child", + "id": "https://ror.org/017a2yz34" + }, + { + "label": "SUNY Adirondack", + "type": "Child", + "id": "https://ror.org/01fw8ag12" + }, + { + "label": "SUNY Broome Community College", + "type": "Child", + "id": "https://ror.org/0001a2m26" + }, + { + "label": "Fulton–Montgomery Community College", + "type": "Child", + "id": "https://ror.org/01cmkbc96" + }, + { + "label": "Hudson Valley Community College", + "type": "Child", + "id": "https://ror.org/036wt8y39" + }, + { + "label": "Niagara County Community College", + "type": "Child", + "id": "https://ror.org/00637yt37" + }, + { + "label": "SUNY Orange", + "type": "Child", + "id": "https://ror.org/00g7a7c91" + }, + { + "label": "Rockland Community College", + "type": "Child", + "id": "https://ror.org/03w9e3r89" + }, + { + "label": "Suffolk County Community College", + "type": "Child", + "id": "https://ror.org/004hyqr12" + }, + { + "label": "SUNY Sullivan", + "type": "Child", + "id": "https://ror.org/025320p83" + }, + { + "label": "Tompkins Cortland Community College", + "type": "Child", + "id": "https://ror.org/051awsb83" + }, + { + "label": "SUNY Ulster", + "type": "Child", + "id": "https://ror.org/02r0wp596" + }, + { + "label": "Kings County Hospital Center", + "type": "Related", + "id": "https://ror.org/02emy8e21" + }, + { + "label": "Research Foundation for the State University of New York", + "type": "Related", + "id": "https://ror.org/01sfc5174" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/00mkh7345" + } + ], + "addresses": [ + { + "lat": 42.65258, + "lng": -73.75623, + "state": null, + "state_code": null, + "city": "Albany", + "geonames_city": { + "id": 5106834, + "city": "Albany", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.suny.edu/" + ], + "aliases": [], + "acronyms": [ + "SUNY" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/State_University_of_New_York", + "labels": [ + { + "label": "Universidad Estatal de Nueva York", + "iso639": "es" + }, + { + "label": "Université d'État de New York", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007258" + ], + "preferred": null + }, + "GRID": { + "all": "grid.189747.4", + "preferred": "grid.189747.4" + }, + "ISNI": { + "all": [ + "0000 0000 9554 2494" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1140241" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01qhj1g70.json b/v1.52/v1/01qhj1g70.json new file mode 100644 index 000000000..f8ff48f62 --- /dev/null +++ b/v1.52/v1/01qhj1g70.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/01qhj1g70", + "name": "Daiichi Sankyo (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Daiichi-Sankyo (Japan)", + "type": "Parent", + "id": "https://ror.org/027y26122" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.daiichi-sankyo.eu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Daiichi_Sankyo", + "labels": [ + { + "label": "第一三共株式会社", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022274" + ], + "preferred": "501100022274" + }, + "GRID": { + "all": "grid.488273.2", + "preferred": "grid.488273.2" + }, + "ISNI": { + "all": [ + "0000 0004 0623 5599" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q43896167" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01qk7v094.json b/v1.52/v1/01qk7v094.json new file mode 100644 index 000000000..b179d38de --- /dev/null +++ b/v1.52/v1/01qk7v094.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/01qk7v094", + "name": "Intergovernmental Oceanographic Commission of UNESCO", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "World Climate Research Programme", + "type": "Child", + "id": "https://ror.org/04frnva71" + }, + { + "label": "International Oceanographic Data and Information Exchange (IODE)", + "type": "Child", + "id": "https://ror.org/00d21gf72" + }, + { + "label": "UNESCO", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ioc.unesco.org" + ], + "aliases": [], + "acronyms": [ + "IOC/UNESCO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Intergovernmental_Oceanographic_Commission", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.506498.6", + "preferred": "grid.506498.6" + }, + "ISNI": { + "all": [ + "0000 0001 2167 0474" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1666085" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01qv3m779.json b/v1.52/v1/01qv3m779.json new file mode 100644 index 000000000..00900d132 --- /dev/null +++ b/v1.52/v1/01qv3m779.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01qv3m779", + "name": "Miriam Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.50884, + "lng": -73.58781, + "state": null, + "state_code": null, + "city": "Montreal", + "geonames_city": { + "id": 6077243, + "city": "Montreal", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.miriamfoundation.ca/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023939" + ], + "preferred": "501100023939" + }, + "GRID": { + "all": "grid.498732.3", + "preferred": "grid.498732.3" + }, + "ISNI": { + "all": [ + "0000 0001 0556 0179" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01qz4yx77.json b/v1.52/v1/01qz4yx77.json new file mode 100644 index 000000000..949252087 --- /dev/null +++ b/v1.52/v1/01qz4yx77.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01qz4yx77", + "name": "King's College Hospital Charity", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://supportkings.org.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015544" + ], + "preferred": "100015544" + }, + "GRID": { + "all": "grid.498493.b", + "preferred": "grid.498493.b" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01rt74q71.json b/v1.52/v1/01rt74q71.json new file mode 100644 index 000000000..7a27683f5 --- /dev/null +++ b/v1.52/v1/01rt74q71.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/01rt74q71", + "name": "Telecom Italia Lab", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Telecom Italia (Italy)", + "type": "Parent", + "id": "https://ror.org/00xmwgm53" + } + ], + "addresses": [ + { + "lat": 45.07049, + "lng": 7.68682, + "state": null, + "state_code": null, + "city": "Turin", + "geonames_city": { + "id": 3165524, + "city": "Turin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Centro Studi e Laboratori Telecomunicazioni", + "TILab", + "Telecom Italia Lab S.p.A." + ], + "acronyms": [ + "CSELT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CSELT", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.423811.d", + "preferred": "grid.423811.d" + }, + "ISNI": { + "all": [ + "0000 0001 2109 0955" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3648915" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01sjwvz98.json b/v1.52/v1/01sjwvz98.json new file mode 100644 index 000000000..cd937ac76 --- /dev/null +++ b/v1.52/v1/01sjwvz98.json @@ -0,0 +1,176 @@ +{ + "id": "https://ror.org/01sjwvz98", + "name": "RIKEN", + "email_address": null, + "ip_addresses": [], + "established": 1917, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "RIKEN Advanced Science Institute", + "type": "Child", + "id": "https://ror.org/030vbmf58" + }, + { + "label": "RIKEN BNL Research Center", + "type": "Child", + "id": "https://ror.org/05db1vq90" + }, + { + "label": "RIKEN BioResource Research Center", + "type": "Child", + "id": "https://ror.org/00s05em53" + }, + { + "label": "RIKEN Center for Advanced Intelligence Project", + "type": "Child", + "id": "https://ror.org/03ckxwf91" + }, + { + "label": "RIKEN Center for Advanced Photonics", + "type": "Child", + "id": "https://ror.org/05vmjks78" + }, + { + "label": "RIKEN Center for Biosystems Dynamics Research", + "type": "Child", + "id": "https://ror.org/023rffy11" + }, + { + "label": "RIKEN Center for Brain Science", + "type": "Child", + "id": "https://ror.org/04j1n1c04" + }, + { + "label": "RIKEN Center for Computational Science", + "type": "Child", + "id": "https://ror.org/03r519674" + }, + { + "label": "RIKEN Center for Emergent Matter Science", + "type": "Child", + "id": "https://ror.org/03gv2xk61" + }, + { + "label": "RIKEN Center for Integrative Medical Sciences", + "type": "Child", + "id": "https://ror.org/04mb6s476" + }, + { + "label": "RIKEN Center for Sustainable Resource Science", + "type": "Child", + "id": "https://ror.org/010rf2m76" + }, + { + "label": "RIKEN Nishina Center", + "type": "Child", + "id": "https://ror.org/05tqx4s13" + }, + { + "label": "SPring-8", + "type": "Child", + "id": "https://ror.org/01d1kv753" + }, + { + "label": "RIKEN Center for Quantum Computing", + "type": "Child", + "id": "https://ror.org/02tt21044" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 35.78944, + "lng": 139.62333, + "state": null, + "state_code": null, + "city": "Wako", + "geonames_city": { + "id": 1907300, + "city": "Wako", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.riken.jp/en/" + ], + "aliases": [ + "Institute of Physical and Chemical Research" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/RIKEN", + "labels": [ + { + "label": "理化学研究所", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006264", + "501100006265" + ], + "preferred": "501100006264" + }, + "GRID": { + "all": "grid.7597.c", + "preferred": "grid.7597.c" + }, + "ISNI": { + "all": [ + "0000 0000 9446 5255" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1153275" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01swzsf04.json b/v1.52/v1/01swzsf04.json new file mode 100644 index 000000000..190935d3c --- /dev/null +++ b/v1.52/v1/01swzsf04.json @@ -0,0 +1,142 @@ +{ + "id": "https://ror.org/01swzsf04", + "name": "University of Geneva", + "email_address": null, + "ip_addresses": [], + "established": 1559, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "NCCR Chemical Biology - Visualisation and Control of Biological Processes Using Chemistry", + "type": "Child", + "id": "https://ror.org/033f9yy33" + }, + { + "label": "Swiss Cancer Center Léman", + "type": "Child", + "id": "https://ror.org/03kwyfa97" + }, + { + "label": "NCCR SwissMAP", + "type": "Child", + "id": "https://ror.org/00xzacp61" + }, + { + "label": "Idiap Research Institute", + "type": "Related", + "id": "https://ror.org/05932h694" + }, + { + "label": "University Hospital of Geneva", + "type": "Related", + "id": "https://ror.org/01m1pv723" + }, + { + "label": "Swiss Centre for Applied Human Toxicology", + "type": "Related", + "id": "https://ror.org/03wma5x57" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 46.20222, + "lng": 6.14569, + "state": null, + "state_code": null, + "city": "Geneva", + "geonames_city": { + "id": 2660646, + "city": "Geneva", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unige.ch/" + ], + "aliases": [ + "Schola Genevensis" + ], + "acronyms": [ + "UNIGE" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Geneva", + "labels": [ + { + "label": "Università di Ginevra", + "iso639": "it" + }, + { + "label": "Université de Genève", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006389" + ], + "preferred": null + }, + "GRID": { + "all": "grid.8591.5", + "preferred": "grid.8591.5" + }, + "ISNI": { + "all": [ + "0000 0001 2322 4988", + "0000 0001 2175 2154" + ], + "preferred": "0000 0001 2175 2154" + }, + "Wikidata": { + "all": [ + "Q503473" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01t7v1t25.json b/v1.52/v1/01t7v1t25.json new file mode 100644 index 000000000..c1b91c54d --- /dev/null +++ b/v1.52/v1/01t7v1t25.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/01t7v1t25", + "name": "Développement Individu Processus Handicap Education", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + } + ], + "addresses": [ + { + "lat": 45.73865, + "lng": 4.91303, + "state": null, + "state_code": null, + "city": "Bron", + "geonames_city": { + "id": 3029931, + "city": "Bron", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://diphe.univ-lyon2.fr" + ], + "aliases": [], + "acronyms": [ + "DIPHE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01tf11a61.json b/v1.52/v1/01tf11a61.json new file mode 100644 index 000000000..947adcce0 --- /dev/null +++ b/v1.52/v1/01tf11a61.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/01tf11a61", + "name": "CMCC Foundation - Euro-Mediterranean Center on Climate Change", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "RFF-CMCC European Institute on Economics and the Environment", + "type": "Child", + "id": "https://ror.org/00pdj1108" + } + ], + "addresses": [ + { + "lat": 40.35481, + "lng": 18.17244, + "state": null, + "state_code": null, + "city": "Lecce", + "geonames_city": { + "id": 3174953, + "city": "Lecce", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cmcc.it" + ], + "aliases": [ + "CMCC Foundation", + "Euro-Mediterranean Center for Climate Change", + "Fondazione Centro Euro-Mediterraneo sui Cambiamenti Climatici" + ], + "acronyms": [ + "CMCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Euro-Mediterranean_Center_for_Climate_Change", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002930" + ], + "preferred": null + }, + "GRID": { + "all": "grid.423878.2", + "preferred": "grid.423878.2" + }, + "ISNI": { + "all": [ + "0000 0004 1761 0884" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3664704" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01tjs6929.json b/v1.52/v1/01tjs6929.json new file mode 100644 index 000000000..daa11105c --- /dev/null +++ b/v1.52/v1/01tjs6929.json @@ -0,0 +1,185 @@ +{ + "id": "https://ror.org/01tjs6929", + "name": "Universidad Nacional de La Plata", + "email_address": null, + "ip_addresses": [], + "established": 1897, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Biochemistry Research Institute of La Plata", + "type": "Child", + "id": "https://ror.org/018gb4016" + }, + { + "label": "Centro de Investigaciones Cardiovasculares", + "type": "Child", + "id": "https://ror.org/04ebzxq58" + }, + { + "label": "Centro de Investigaciones en Tecnologia de Pinturas", + "type": "Child", + "id": "https://ror.org/0117z7d66" + }, + { + "label": "Centro de Investigación y Desarrollo en Criotecnología de Alimentos", + "type": "Child", + "id": "https://ror.org/04v30e006" + }, + { + "label": "Instituto Multidisciplinario de Biología Celular", + "type": "Child", + "id": "https://ror.org/05p6vdy67" + }, + { + "label": "Instituto de Biotecnología y Biología Molecular", + "type": "Child", + "id": "https://ror.org/057zmmf60" + }, + { + "label": "Instituto de Fisica de Liquidos y Sistemas Biologicos", + "type": "Child", + "id": "https://ror.org/030qxdf23" + }, + { + "label": "Instituto de Fisiología Vegetal", + "type": "Child", + "id": "https://ror.org/00k3smk02" + }, + { + "label": "Instituto de Física La Plata", + "type": "Child", + "id": "https://ror.org/01pmtm379" + }, + { + "label": "Instituto de Genética Veterinaria", + "type": "Child", + "id": "https://ror.org/05fvszr38" + }, + { + "label": "Instituto de Investigaciones Fisicoquímicas Teóricas y Aplicadas", + "type": "Child", + "id": "https://ror.org/02t6gq889" + }, + { + "label": "Instituto de Investigaciones y Políticas del Ambiente Construido (IIPAC)", + "type": "Child", + "id": "https://ror.org/02raxsg56" + }, + { + "label": "Laboratorio de Planificación y Gestión Estratégica", + "type": "Child", + "id": "https://ror.org/049hngf66" + }, + { + "label": "Centro Interdisciplinario de Estudios Complejos", + "type": "Child", + "id": "https://ror.org/0287zzv25" + }, + { + "label": "Centro Científico Tecnológico - La Plata", + "type": "Related", + "id": "https://ror.org/03qan4b12" + }, + { + "label": "Instituto de Astrofísica de La Plata", + "type": "Child", + "id": "https://ror.org/04sw7nr96" + } + ], + "addresses": [ + { + "lat": -34.92145, + "lng": -57.95453, + "state": null, + "state_code": null, + "city": "La Plata", + "geonames_city": { + "id": 3432043, + "city": "La Plata", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unlp.edu.ar/" + ], + "aliases": [], + "acronyms": [ + "UNLP" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/National_University_of_La_Plata", + "labels": [ + { + "label": "National University of La Plata", + "iso639": "en" + }, + { + "label": "Université nationale de la plata", + "iso639": "fr" + } + ], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003947", + "501100006283" + ], + "preferred": "501100003947" + }, + "GRID": { + "all": "grid.9499.d", + "preferred": "grid.9499.d" + }, + "ISNI": { + "all": [ + "0000 0001 2097 3940" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q784171" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01tjwm845.json b/v1.52/v1/01tjwm845.json new file mode 100644 index 000000000..603741e7f --- /dev/null +++ b/v1.52/v1/01tjwm845.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/01tjwm845", + "name": "Kellogg's (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Kellogg's (United States)", + "type": "Parent", + "id": "https://ror.org/01b2bzj52" + } + ], + "addresses": [ + { + "lat": 53.48095, + "lng": -2.23743, + "state": null, + "state_code": null, + "city": "Manchester", + "geonames_city": { + "id": 2643123, + "city": "Manchester", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kelloggs.co.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kellogg%27s,", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012882" + ], + "preferred": "100012882" + }, + "GRID": { + "all": "grid.505578.a", + "preferred": "grid.505578.a" + }, + "Wikidata": { + "all": [ + "Q64143131" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01tmp8f25.json b/v1.52/v1/01tmp8f25.json new file mode 100644 index 000000000..a8f4990f4 --- /dev/null +++ b/v1.52/v1/01tmp8f25.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/01tmp8f25", + "name": "Universidad Nacional Autónoma de México", + "email_address": null, + "ip_addresses": [], + "established": 1910, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centro Regional de Investigaciones Multidisciplinarias", + "type": "Child", + "id": "https://ror.org/05afdpg81" + }, + { + "label": "Hospital General de México", + "type": "Related", + "id": "https://ror.org/01php1d31" + }, + { + "label": "Centro de Investigaciones Interdisciplinarias en Ciencias y Humanidades", + "type": "Child", + "id": "https://ror.org/03kkrza17" + } + ], + "addresses": [ + { + "lat": 19.42847, + "lng": -99.12766, + "state": null, + "state_code": null, + "city": "Mexico City", + "geonames_city": { + "id": 3530597, + "city": "Mexico City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unam.mx" + ], + "aliases": [], + "acronyms": [ + "UNAM" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Nacional_Aut%C3%B3noma_de_M%C3%A9xico", + "labels": [ + { + "label": "National Autonomous University of Mexico", + "iso639": "en" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005739", + "501100006087", + "501100006570", + "501100019912" + ], + "preferred": "501100005739" + }, + "GRID": { + "all": "grid.9486.3", + "preferred": "grid.9486.3" + }, + "ISNI": { + "all": [ + "0000 0001 2159 0001" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q222738", + "Q39491209", + "Q39487233", + "Q19950100", + "Q39944976" + ], + "preferred": "Q222738" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01ttehr75.json b/v1.52/v1/01ttehr75.json new file mode 100644 index 000000000..326e34606 --- /dev/null +++ b/v1.52/v1/01ttehr75.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01ttehr75", + "name": "Islamic Arabic University", + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://iau.edu.bd" + ], + "aliases": [], + "acronyms": [ + "IAU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Islamic_Arabic_University", + "labels": [ + { + "label": "الجامعة الإسلامية العربية", + "iso639": "ar" + }, + { + "label": "ইসলামি আরবি বিশ্ববিদ্যালয়", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q23043282" + ], + "preferred": "Q23043282" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01tx6pn92.json b/v1.52/v1/01tx6pn92.json new file mode 100644 index 000000000..6948cfa50 --- /dev/null +++ b/v1.52/v1/01tx6pn92.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/01tx6pn92", + "name": "Texas A&M Health Science Center", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Texas A&M University", + "type": "Parent", + "id": "https://ror.org/01f5ytq51" + }, + { + "label": "Baylor Scott & White Medical Center - Temple", + "type": "Related", + "id": "https://ror.org/017cm6884" + }, + { + "label": "Scott & White Memorial Hospital", + "type": "Related", + "id": "https://ror.org/02ge60j37" + }, + { + "label": "Carl R. Darnall Army Medical Center", + "type": "Related", + "id": "https://ror.org/02zda6x08" + } + ], + "addresses": [ + { + "lat": 30.62798, + "lng": -96.33441, + "state": null, + "state_code": null, + "city": "College Station", + "geonames_city": { + "id": 4682464, + "city": "College Station", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://tamhsc.edu/campuses/college-station/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Texas_A%26M_Health_Science_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100013991" + ], + "preferred": "100013991" + }, + "GRID": { + "all": "grid.412408.b", + "preferred": "grid.412408.b" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01v7r4v08.json b/v1.52/v1/01v7r4v08.json new file mode 100644 index 000000000..9bd0f403f --- /dev/null +++ b/v1.52/v1/01v7r4v08.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01v7r4v08", + "name": "DataPLANT", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 47.9959, + "lng": 7.85222, + "state": null, + "state_code": null, + "city": "Freiburg im Breisgau", + "geonames_city": { + "id": 2925177, + "city": "Freiburg im Breisgau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://nfdi4plants.de" + ], + "aliases": [ + "DataPLANT" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/DataPLANT", + "labels": [ + { + "label": "Daten in Pflanzen-Grundlagenforschung", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q98380336" + ], + "preferred": "Q98380336" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01vj6ck58.json b/v1.52/v1/01vj6ck58.json new file mode 100644 index 000000000..f14be1543 --- /dev/null +++ b/v1.52/v1/01vj6ck58.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/01vj6ck58", + "name": "INFN Sezione di Torino", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "Università degli Studi del Piemonte Orientale “Amedeo Avogadro”", + "type": "Parent", + "id": "https://ror.org/04387x656" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 45.07049, + "lng": 7.68682, + "state": null, + "state_code": null, + "city": "Turin", + "geonames_city": { + "id": 3165524, + "city": "Turin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.to.infn.it/" + ], + "aliases": [ + "Istituto Nazionale di Fisica Nucleare Sezione di Torino" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.470222.1", + "preferred": "grid.470222.1" + }, + "ISNI": { + "all": [ + "0000 0004 7471 9712" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30265302" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01vnkaz16.json b/v1.52/v1/01vnkaz16.json new file mode 100644 index 000000000..638c9c3ea --- /dev/null +++ b/v1.52/v1/01vnkaz16.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01vnkaz16", + "name": "NFDI4BIOIMAGE", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 47.66033, + "lng": 9.17582, + "state": null, + "state_code": null, + "city": "Konstanz", + "geonames_city": { + "id": 2885679, + "city": "Konstanz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nfdi4bioimage.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Research Data Infrastructure for Microscopy, Biophotonics and Bioimage Analysis", + "iso639": "en" + }, + { + "label": "Nationale Forschungsdateninfrastruktur für Mikroskopie und Bildanalyse", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q113500855" + ], + "preferred": "Q113500855" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01vnt7q67.json b/v1.52/v1/01vnt7q67.json new file mode 100644 index 000000000..ad22c59b9 --- /dev/null +++ b/v1.52/v1/01vnt7q67.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01vnt7q67", + "name": "Historic England", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://historicengland.org.uk/" + ], + "aliases": [ + "Historic Buildings and Monuments Commission for England" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Historic_England", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023881" + ], + "preferred": "501100023881" + }, + "GRID": { + "all": "grid.484224.c", + "preferred": "grid.484224.c" + }, + "ISNI": { + "all": [ + "0000 0004 5373 0664" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q19604421" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01vtcwd37.json b/v1.52/v1/01vtcwd37.json new file mode 100644 index 000000000..1fe645c50 --- /dev/null +++ b/v1.52/v1/01vtcwd37.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/01vtcwd37", + "name": "Washington State Department of Transportation", + "email_address": null, + "ip_addresses": [], + "established": 1905, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.04491, + "lng": -122.90169, + "state": null, + "state_code": null, + "city": "Olympia", + "geonames_city": { + "id": 5805687, + "city": "Olympia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://wsdot.wa.gov" + ], + "aliases": [ + "Washington State DOT" + ], + "acronyms": [ + "WSDOT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Washington_State_Department_of_Transportation", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100014789" + ], + "preferred": "100014789" + }, + "ISNI": { + "all": [ + "0000 0004 0422 7456" + ], + "preferred": "0000 0004 0422 7456" + }, + "Wikidata": { + "all": [ + "Q834834" + ], + "preferred": "Q834834" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01w66yj92.json b/v1.52/v1/01w66yj92.json new file mode 100644 index 000000000..67d83ea26 --- /dev/null +++ b/v1.52/v1/01w66yj92.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/01w66yj92", + "name": "National Metrology Institute of Malaysia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 2.6931, + "lng": 101.7498, + "state": null, + "state_code": null, + "city": "Sepang", + "geonames_city": { + "id": 1734821, + "city": "Sepang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nmim.gov.my" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "NMIM", + "iso639": "en" + } + ], + "country": { + "country_name": "Malaysia", + "country_code": "MY" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01w8zj169.json b/v1.52/v1/01w8zj169.json new file mode 100644 index 000000000..c897fb0cb --- /dev/null +++ b/v1.52/v1/01w8zj169.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/01w8zj169", + "name": "Instituto Tecnológico de Tuxtepec", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 18.0883, + "lng": -96.12535, + "state": null, + "state_code": null, + "city": "San Juan Bautista", + "geonames_city": { + "id": 3518723, + "city": "San Juan Bautista", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ittux.edu.mx" + ], + "aliases": [ + "TecNM Campus Tuxtepec", + "Tecnológico Nacional de México Campus Tuxtepec" + ], + "acronyms": [ + "ITTUX" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.464683.b", + "preferred": "grid.464683.b" + }, + "ISNI": { + "all": [ + "0000 0004 1763 9265" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q29162586" + ], + "preferred": "Q29162586" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01wg7pd89.json b/v1.52/v1/01wg7pd89.json new file mode 100644 index 000000000..a1e714ccb --- /dev/null +++ b/v1.52/v1/01wg7pd89.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01wg7pd89", + "name": "Universitas Islam Negeri Datokarama Palu", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -0.90833, + "lng": 119.87083, + "state": null, + "state_code": null, + "city": "Palu", + "geonames_city": { + "id": 1633034, + "city": "Palu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uindatokarama.ac.id" + ], + "aliases": [ + "UIN Datokarama Palu", + "UIN Palu" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Universitas_Islam_Negeri_Datokarama_Palu", + "labels": [ + { + "label": "State Islamic University Datokarama Palu", + "iso639": "en" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1091 5818" + ], + "preferred": "0000 0005 1091 5818" + }, + "Wikidata": { + "all": [ + "Q12511267" + ], + "preferred": "Q12511267" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01wjs8e77.json b/v1.52/v1/01wjs8e77.json new file mode 100644 index 000000000..4b3111c9d --- /dev/null +++ b/v1.52/v1/01wjs8e77.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/01wjs8e77", + "name": "Kings Dental Center", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 25.28545, + "lng": 51.53096, + "state": null, + "state_code": null, + "city": "Doha", + "geonames_city": { + "id": 290030, + "city": "Doha", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kingsdentalcenter.com" + ], + "aliases": [], + "acronyms": [ + "KDC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Qatar", + "country_code": "QA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01x3z9745.json b/v1.52/v1/01x3z9745.json new file mode 100644 index 000000000..c345fc2b8 --- /dev/null +++ b/v1.52/v1/01x3z9745.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/01x3z9745", + "name": "Texas A&M University – Texarkana", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Texas A&M University System", + "type": "Parent", + "id": "https://ror.org/0034eay46" + } + ], + "addresses": [ + { + "lat": 33.42513, + "lng": -94.04769, + "state": null, + "state_code": null, + "city": "Texarkana", + "geonames_city": { + "id": 4736096, + "city": "Texarkana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.tamut.edu/" + ], + "aliases": [ + "A&M-Texarkana" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Texas_A%26M_University%E2%80%93Texarkana", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010861" + ], + "preferred": "100010861" + }, + "GRID": { + "all": "grid.264762.3", + "preferred": "grid.264762.3" + }, + "ISNI": { + "all": [ + "0000 0000 9202 9644" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q14711364" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01xkakk17.json b/v1.52/v1/01xkakk17.json new file mode 100644 index 000000000..189e91710 --- /dev/null +++ b/v1.52/v1/01xkakk17.json @@ -0,0 +1,163 @@ +{ + "id": "https://ror.org/01xkakk17", + "name": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO Arc", + "type": "Child", + "id": "https://ror.org/02zzkv309" + }, + { + "label": "HES-SO Fribourg", + "type": "Child", + "id": "https://ror.org/02kkwkt79" + }, + { + "label": "HES-SO Genève", + "type": "Child", + "id": "https://ror.org/007gfwn20" + }, + { + "label": "HES-SO Valais-Wallis", + "type": "Child", + "id": "https://ror.org/03r5zec51" + }, + { + "label": "HETSL - Haute école de travail social et de la santé Lausanne", + "type": "Child", + "id": "https://ror.org/0278ff426" + }, + { + "label": "HEMU - Haute École de Musique", + "type": "Child", + "id": "https://ror.org/028xjkf45" + }, + { + "label": "EHL Hospitality Business School", + "type": "Child", + "id": "https://ror.org/02kqs4h17" + }, + { + "label": "La Manufacture - Haute école des arts de la scène", + "type": "Child", + "id": "https://ror.org/0067qp350" + }, + { + "label": "HEIG-VD", + "type": "Child", + "id": "https://ror.org/02rzr3z90" + }, + { + "label": "CHANGINS - Haute école de viticulture et œnologie", + "type": "Child", + "id": "https://ror.org/03nf8d138" + }, + { + "label": "Haute École de Santé Vaud", + "type": "Child", + "id": "https://ror.org/04j47fz63" + }, + { + "label": "ECAL/Ecole cantonale d'art de Lausanne", + "type": "Child", + "id": "https://ror.org/03jwjxy73" + }, + { + "label": "Institut et Haute Ecole de la Santé La Source", + "type": "Child", + "id": "https://ror.org/02yr4wk92" + } + ], + "addresses": [ + { + "lat": 47.36493, + "lng": 7.34453, + "state": null, + "state_code": null, + "city": "Delémont", + "geonames_city": { + "id": 2661035, + "city": "Delémont", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hes-so.ch" + ], + "aliases": [ + "Fachhochschule Westschweiz", + "Haute École Spécialisée de Suisse Occidentale", + "University of Applied Sciences and Arts Western Switzerland" + ], + "acronyms": [ + "HES-SO" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Applied_Sciences_Western_Switzerland", + "labels": [ + { + "label": "HES-SO Haute école spécialisée de Suisse occidentale", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.5681.a", + "preferred": "grid.5681.a" + }, + "ISNI": { + "all": [ + "0000 0001 0943 1999" + ], + "preferred": "0000 0001 0943 1999" + }, + "Wikidata": { + "all": [ + "Q168003" + ], + "preferred": "Q168003" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01xpc6869.json b/v1.52/v1/01xpc6869.json new file mode 100644 index 000000000..d5cc00460 --- /dev/null +++ b/v1.52/v1/01xpc6869.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/01xpc6869", + "name": "Centre de Recherche en Biologie cellulaire de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.crbm.cnrs.fr" + ], + "aliases": [ + "Centre de Recherche de Biochimie Macromoléculaire", + "Centre de Recherche de Biochimie Montpellier", + "UMR 5237" + ], + "acronyms": [ + "CRBM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre for Biochemical and Macromolecular Research", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462783.c", + "preferred": "grid.462783.c" + }, + "ISNI": { + "all": [ + "0000 0004 0598 968X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01xptp363.json b/v1.52/v1/01xptp363.json new file mode 100644 index 000000000..063cf21ce --- /dev/null +++ b/v1.52/v1/01xptp363.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01xptp363", + "name": "NFDI4Objects", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nfdi4objects.net" + ], + "aliases": [ + "Forschungsdateninfrastruktur für die materiellen Hinterlassenschaften der Menschheitsgeschichte", + "Research Data Infrastructure for the Material Remains of Human History" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q98229157" + ], + "preferred": "Q98229157" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01xr4jy61.json b/v1.52/v1/01xr4jy61.json new file mode 100644 index 000000000..a3bfbe5b4 --- /dev/null +++ b/v1.52/v1/01xr4jy61.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01xr4jy61", + "name": "Instituto de Meteorología", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.13302, + "lng": -82.38304, + "state": null, + "state_code": null, + "city": "Havana", + "geonames_city": { + "id": 3553478, + "city": "Havana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.insmet.cu" + ], + "aliases": [ + "Instituto de Meteorología (INSMET)" + ], + "acronyms": [ + "INSMET" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_de_Meteorolog%C3%ADa_(Cuba)", + "labels": [], + "country": { + "country_name": "Cuba", + "country_code": "CU" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q74530566" + ], + "preferred": "Q74530566" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01yc7t268.json b/v1.52/v1/01yc7t268.json new file mode 100644 index 000000000..bccbf8ec1 --- /dev/null +++ b/v1.52/v1/01yc7t268.json @@ -0,0 +1,149 @@ +{ + "id": "https://ror.org/01yc7t268", + "name": "Washington University in St. Louis", + "email_address": null, + "ip_addresses": [], + "established": 1853, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Children’s Discovery Institute", + "type": "Child", + "id": "https://ror.org/02swjdp46" + }, + { + "label": "Washington University Physicians", + "type": "Child", + "id": "https://ror.org/03qn8ky51" + }, + { + "label": "Taylor Family Institute for Innovative Psychiatric Research", + "type": "Child", + "id": "https://ror.org/03x3g5467" + }, + { + "label": "Barnes-Jewish Hospital", + "type": "Related", + "id": "https://ror.org/04wyvkr12" + }, + { + "label": "Central Institute for the Deaf", + "type": "Related", + "id": "https://ror.org/04ymee833" + }, + { + "label": "St. Louis Children's Hospital", + "type": "Related", + "id": "https://ror.org/00qw1qw03" + }, + { + "label": "Washington University Medical Center", + "type": "Related", + "id": "https://ror.org/036c27j91" + }, + { + "label": "Taylor Geospatial Institute", + "type": "Related", + "id": "https://ror.org/0573j3j10" + } + ], + "addresses": [ + { + "lat": 38.62727, + "lng": -90.19789, + "state": null, + "state_code": null, + "city": "St Louis", + "geonames_city": { + "id": 4407066, + "city": "St Louis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://wustl.edu/" + ], + "aliases": [], + "acronyms": [ + "WUSTL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Washington_University_in_St._Louis", + "labels": [ + { + "label": "Universidad Washington en San Luis", + "iso639": "es" + }, + { + "label": "Université Washington à Saint-louis", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007268", + "100007930", + "100009607", + "100006586", + "100011912" + ], + "preferred": "100007268" + }, + "GRID": { + "all": "grid.4367.6", + "preferred": "grid.4367.6" + }, + "ISNI": { + "all": [ + "0000 0001 2355 7002", + "0000 0004 1936 9350" + ], + "preferred": "0000 0004 1936 9350" + }, + "Wikidata": { + "all": [ + "Q777403" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01ydb3330.json b/v1.52/v1/01ydb3330.json new file mode 100644 index 000000000..43f56c29d --- /dev/null +++ b/v1.52/v1/01ydb3330.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/01ydb3330", + "name": "Synchrotron soleil", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CEA Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03n15ch10" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.synchrotron-soleil.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/SOLEIL", + "labels": [ + { + "label": "Soleil Synchrotron", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.426328.9", + "preferred": "grid.426328.9" + }, + "Wikidata": { + "all": [ + "Q112513" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01yvark48.json b/v1.52/v1/01yvark48.json new file mode 100644 index 000000000..390a71b00 --- /dev/null +++ b/v1.52/v1/01yvark48.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/01yvark48", + "name": "NOAA Integrated Ocean Observing System", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "NOAA National Ocean Service", + "type": "Parent", + "id": "https://ror.org/02k4h0334" + }, + { + "label": "Great Lakes Observing System", + "type": "Related", + "id": "https://ror.org/036ftwn63" + } + ], + "addresses": [ + { + "lat": 38.99067, + "lng": -77.02609, + "state": null, + "state_code": null, + "city": "Silver Spring", + "geonames_city": { + "id": 4369596, + "city": "Silver Spring", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ioos.noaa.gov" + ], + "aliases": [ + "Integrated Ocean Observing System", + "Integrated Ocean Observing System Program", + "NOAA Integrated Ocean Observing System Program", + "NOS Integrated Ocean Observing System Program", + "National Ocean Service Integrated Ocean Observing System Program", + "National Oceanic and Atmospheric Administration Integrated Ocean Observing System Program", + "U.S. Integrated Ocean Observing System", + "United States Integrated Ocean Observing System" + ], + "acronyms": [ + "IOOS", + "NOAA IOOS", + "US IOOS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Integrated_Ocean_Observing_System", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018613" + ], + "preferred": "100018613" + }, + "ISNI": { + "all": [ + "0000 0005 0383 3734" + ], + "preferred": "0000 0005 0383 3734" + }, + "Wikidata": { + "all": [ + "Q17081140" + ], + "preferred": "Q17081140" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01yw9jt43.json b/v1.52/v1/01yw9jt43.json new file mode 100644 index 000000000..47b38790a --- /dev/null +++ b/v1.52/v1/01yw9jt43.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01yw9jt43", + "name": "Pathogenesis and Control of Chronic and Emerging Infections", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Établissement Français du Sang", + "type": "Parent", + "id": "https://ror.org/037hby126" + }, + { + "label": "Université des Antilles", + "type": "Parent", + "id": "https://ror.org/02ryfmr77" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.pccei.fr" + ], + "aliases": [ + "Pathogenesis & Control of Chronic and Emerging Infections" + ], + "acronyms": [ + "PCCEI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01z485314.json b/v1.52/v1/01z485314.json new file mode 100644 index 000000000..3ea3683ec --- /dev/null +++ b/v1.52/v1/01z485314.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/01z485314", + "name": "UMR Espace-Dev", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université des Antilles", + "type": "Parent", + "id": "https://ror.org/02ryfmr77" + }, + { + "label": "University of Reunion Island", + "type": "Parent", + "id": "https://ror.org/005ypkf75" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "University of French Guiana", + "type": "Parent", + "id": "https://ror.org/00nb39k71" + }, + { + "label": "University of New Caledonia", + "type": "Parent", + "id": "https://ror.org/02jrgcx64" + }, + { + "label": "Université de Perpignan", + "type": "Parent", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.espace-dev.fr" + ], + "aliases": [ + "Espace pour le développement", + "Observation spatiale, modèles et science impliquée" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781199" + ], + "preferred": "Q51781199" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/01zh59148.json b/v1.52/v1/01zh59148.json new file mode 100644 index 000000000..fe3c66ebb --- /dev/null +++ b/v1.52/v1/01zh59148.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/01zh59148", + "name": "City Institute for Public Health - Belgrade", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.zdravlje.org.rs" + ], + "aliases": [ + "Gradski zavod za javno zdravlje Beograd" + ], + "acronyms": [ + "GZZJZ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/01znbx673.json b/v1.52/v1/01znbx673.json new file mode 100644 index 000000000..e0de6070a --- /dev/null +++ b/v1.52/v1/01znbx673.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01znbx673", + "name": "Green Cross Laboratories (South Korea)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.27917, + "lng": 127.10833, + "state": null, + "state_code": null, + "city": "Giheung", + "geonames_city": { + "id": 6573743, + "city": "Giheung", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gclabs.co.kr" + ], + "aliases": [ + "GC Labs" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Green Cross Laboratoies", + "iso639": "en" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02047t867.json b/v1.52/v1/02047t867.json new file mode 100644 index 000000000..fa165a136 --- /dev/null +++ b/v1.52/v1/02047t867.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02047t867", + "name": "New Phytologist Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Lancaster University", + "type": "Parent", + "id": "https://ror.org/04f2nsd36" + } + ], + "addresses": [ + { + "lat": 54.04649, + "lng": -2.79988, + "state": null, + "state_code": null, + "city": "Lancaster", + "geonames_city": { + "id": 2644972, + "city": "Lancaster", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.newphytologist.org" + ], + "aliases": [ + "New Phytologist", + "New Phytologist Trust" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100014621", + "100017411" + ], + "preferred": "100017411" + }, + "Wikidata": { + "all": [ + "Q74530629" + ], + "preferred": "Q74530629" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/020q9r015.json b/v1.52/v1/020q9r015.json new file mode 100644 index 000000000..c63f3ff3f --- /dev/null +++ b/v1.52/v1/020q9r015.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/020q9r015", + "name": "China Building Materials Academy", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "China National Building Materials Group (China)", + "type": "Parent", + "id": "https://ror.org/05ve6g218" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cbma.com.cn" + ], + "aliases": [ + "China Building Materials Academy", + "China Building Materials Academy Co." + ], + "acronyms": [ + "CBMA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "China Building Materials Academy Co., Ltd.", + "iso639": "en" + }, + { + "label": "中国建筑材料科学研究", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018939" + ], + "preferred": "100018939" + }, + "GRID": { + "all": "grid.466622.2", + "preferred": "grid.466622.2" + }, + "Wikidata": { + "all": [ + "Q30263765" + ], + "preferred": "Q30263765" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/020tty630.json b/v1.52/v1/020tty630.json new file mode 100644 index 000000000..d2e9ffe8f --- /dev/null +++ b/v1.52/v1/020tty630.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/020tty630", + "name": "KonsortSWD", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 49.4891, + "lng": 8.46694, + "state": null, + "state_code": null, + "city": "Mannheim", + "geonames_city": { + "id": 2873891, + "city": "Mannheim", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.konsortswd.de" + ], + "aliases": [ + "KonsortSWD" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/KonsortSWD", + "labels": [ + { + "label": "Konsortium für die Sozial-, Bildungs-, Verhaltens- und Wirtschaftswissenschaften", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q98380340" + ], + "preferred": "Q98380340" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/020wyb168.json b/v1.52/v1/020wyb168.json new file mode 100644 index 000000000..aa382fc57 --- /dev/null +++ b/v1.52/v1/020wyb168.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/020wyb168", + "name": "Lancium (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.18022, + "lng": -95.45577, + "state": null, + "state_code": null, + "city": "Shenandoah", + "geonames_city": { + "id": 4728287, + "city": "Shenandoah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lancium.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Lancium", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/021018s57.json b/v1.52/v1/021018s57.json new file mode 100644 index 000000000..894ac4906 --- /dev/null +++ b/v1.52/v1/021018s57.json @@ -0,0 +1,169 @@ +{ + "id": "https://ror.org/021018s57", + "name": "Universitat de Barcelona", + "email_address": null, + "ip_addresses": [], + "established": 1450, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut d'Investigació Biomédica de Bellvitge", + "type": "Child", + "id": "https://ror.org/0008xqs48" + }, + { + "label": "Fundació Bosch i Gimpera", + "type": "Child", + "id": "https://ror.org/00msgsf28" + }, + { + "label": "Center for Research in Agricultural Genomics", + "type": "Child", + "id": "https://ror.org/04tz2h245" + }, + { + "label": "Institut de Biomedicina de la Universitat de Barcelona", + "type": "Child", + "id": "https://ror.org/01y43zx14" + }, + { + "label": "Institut de Recerca de la Biodiversitat de la Universitat de Barcelona", + "type": "Child", + "id": "https://ror.org/01wfb3668" + }, + { + "label": "Institut de Ciències del Cosmos", + "type": "Child", + "id": "https://ror.org/044fgj614" + }, + { + "label": "Bellvitge University Hospital", + "type": "Related", + "id": "https://ror.org/00epner96" + }, + { + "label": "Hospital Clínic de Barcelona", + "type": "Related", + "id": "https://ror.org/02a2kzf50" + }, + { + "label": "Institut de Recerca Sant Joan de Déu", + "type": "Related", + "id": "https://ror.org/00gy2ar74" + }, + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "Related", + "id": "https://ror.org/03abrgd14" + }, + { + "label": "Institut de Nanociència i Nanotecnologia de la Universitat de Barcelona", + "type": "Child", + "id": "https://ror.org/034nc1205" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://web.ub.edu" + ], + "aliases": [], + "acronyms": [ + "UB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Barcelona", + "labels": [ + { + "label": "Bartzelonako Unibertsitatea", + "iso639": "eu" + }, + { + "label": "Universidad de Barcelona", + "iso639": "es" + }, + { + "label": "University of Barcelona", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005774", + "501100006203" + ], + "preferred": "501100005774" + }, + "GRID": { + "all": "grid.5841.8", + "preferred": "grid.5841.8" + }, + "ISNI": { + "all": [ + "0000 0004 1937 0247" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q219615" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/022bqby64.json b/v1.52/v1/022bqby64.json new file mode 100644 index 000000000..61e42861e --- /dev/null +++ b/v1.52/v1/022bqby64.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/022bqby64", + "name": "Chongqing Zhijian Life Technology Co., Ltd (China)", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.56026, + "lng": 106.55771, + "state": null, + "state_code": null, + "city": "Chongqing", + "geonames_city": { + "id": 1814906, + "city": "Chongqing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.zhijianlife.cn" + ], + "aliases": [ + "Chongqing Zhijian Life Technology", + "Chongqing Zhijian Life Technology Co." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "重庆知见生命科技有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/022hq6c49.json b/v1.52/v1/022hq6c49.json new file mode 100644 index 000000000..42227f946 --- /dev/null +++ b/v1.52/v1/022hq6c49.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/022hq6c49", + "name": "INFN Sezione di Bari", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "Polytechnic University of Bari", + "type": "Parent", + "id": "https://ror.org/03c44v465" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 41.12066, + "lng": 16.86982, + "state": null, + "state_code": null, + "city": "Bari", + "geonames_city": { + "id": 3182351, + "city": "Bari", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ba.infn.it/" + ], + "aliases": [ + "Istituto Nazionale di Fisica Nucleare Sezione di Bari" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.470190.b", + "preferred": "grid.470190.b" + }, + "Wikidata": { + "all": [ + "Q30265272" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0232f6165.json b/v1.52/v1/0232f6165.json new file mode 100644 index 000000000..854a8867c --- /dev/null +++ b/v1.52/v1/0232f6165.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/0232f6165", + "name": "Department of Pharmaceuticals", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.62137, + "lng": 77.2148, + "state": null, + "state_code": null, + "city": "New Delhi", + "geonames_city": { + "id": 1261481, + "city": "New Delhi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://pharmaceuticals.gov.in/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100014824" + ], + "preferred": "501100014824" + }, + "GRID": { + "all": "grid.484086.6", + "preferred": "grid.484086.6" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0234bnr88.json b/v1.52/v1/0234bnr88.json new file mode 100644 index 000000000..16e77a062 --- /dev/null +++ b/v1.52/v1/0234bnr88.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/0234bnr88", + "name": "Station Linné", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 56.6499, + "lng": 16.46859, + "state": null, + "state_code": null, + "city": "Färjestaden", + "geonames_city": { + "id": 2715324, + "city": "Färjestaden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.stationlinne.se" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://sv.wikipedia.org/wiki/Station_Linn%C3%A9", + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q10677768" + ], + "preferred": "Q10677768" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0234wmv40.json b/v1.52/v1/0234wmv40.json new file mode 100644 index 000000000..79f347646 --- /dev/null +++ b/v1.52/v1/0234wmv40.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/0234wmv40", + "name": "University of Bayreuth", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Bavarian Polymer Institute", + "type": "Child", + "id": "https://ror.org/054zwas39" + }, + { + "label": "BF/M-Bayreuth", + "type": "Related", + "id": "https://ror.org/03z8vj775" + } + ], + "addresses": [ + { + "lat": 49.94782, + "lng": 11.57893, + "state": null, + "state_code": null, + "city": "Bayreuth", + "geonames_city": { + "id": 2951825, + "city": "Bayreuth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.en.uni-bayreuth.de/home/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Bayreuth", + "labels": [ + { + "label": "Universität Bayreuth", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "100020618" + ], + "preferred": "100020618" + }, + "GRID": { + "all": "grid.7384.8", + "preferred": "grid.7384.8" + }, + "ISNI": { + "all": [ + "0000 0004 0467 6972" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q702482" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0238fds33.json b/v1.52/v1/0238fds33.json new file mode 100644 index 000000000..05c830566 --- /dev/null +++ b/v1.52/v1/0238fds33.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0238fds33", + "name": "NFDI4Energy", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 53.14118, + "lng": 8.21467, + "state": null, + "state_code": null, + "city": "Oldenburg", + "geonames_city": { + "id": 2857458, + "city": "Oldenburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nfdi4energy.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "National Research Data Infrastructure for Interdisciplinary Energy System Research", + "iso639": "en" + }, + { + "label": "Nationale Forschungsdateninfrastruktur für die interdisziplinäre Energiesystemforschung", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q113499626" + ], + "preferred": "Q113499626" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/023abrt21.json b/v1.52/v1/023abrt21.json new file mode 100644 index 000000000..6f845892f --- /dev/null +++ b/v1.52/v1/023abrt21.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/023abrt21", + "name": "Al Ain University", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.19167, + "lng": 55.76056, + "state": null, + "state_code": null, + "city": "Al Ain", + "geonames_city": { + "id": 292913, + "city": "Al Ain", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://aau.ac.ae/en/" + ], + "aliases": [ + "Al Ain University of Science and Technology" + ], + "acronyms": [ + "AAU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Al_Ain_University_of_Science_and_Technology", + "labels": [ + { + "label": "جامعة العين للعلوم والتكنولوجيا", + "iso639": "ar" + } + ], + "country": { + "country_name": "United Arab Emirates", + "country_code": "AE" + }, + "external_ids": { + "GRID": { + "all": "grid.444473.4", + "preferred": "grid.444473.4" + }, + "ISNI": { + "all": [ + "0000 0004 1762 9411" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4703454" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/023dfpy06.json b/v1.52/v1/023dfpy06.json new file mode 100644 index 000000000..5f8f83cef --- /dev/null +++ b/v1.52/v1/023dfpy06.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/023dfpy06", + "name": "Bangamata Sheikh Fojilatunnesa Mujib Science and Technology University", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.96, + "lng": 89.83, + "state": null, + "state_code": null, + "city": "Melandaha Upazila", + "geonames_city": { + "id": 7647189, + "city": "Melandaha Upazila", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://bsfmstu.ac.bd" + ], + "aliases": [ + "Bangamata Sheikh Fojilatunnesa Mujib Science & Technology University", + "Bongomata Sheikh Fazilatunnesa Mujib University of Science and Technology", + "Jamalpur Science and Technology University" + ], + "acronyms": [ + "BSFMSTU", + "JSTU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bangamata_Sheikh_Fojilatunnesa_Mujib_Science_and_Technology_University", + "labels": [ + { + "label": "বঙ্গমাতা শেখ ফজিলাতুন্নেছা মুজিব বিজ্ঞান ও প্রযুক্তি বিশ্ববিদ্যালয়", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0720 1670" + ], + "preferred": "0000 0005 0720 1670" + }, + "Wikidata": { + "all": [ + "Q29016368" + ], + "preferred": "Q29016368" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/023z8b445.json b/v1.52/v1/023z8b445.json new file mode 100644 index 000000000..fb5a4c98d --- /dev/null +++ b/v1.52/v1/023z8b445.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/023z8b445", + "name": "Association for Cancer Surgery", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://baso.org.uk/" + ], + "aliases": [ + "British Association of Surgical Oncology" + ], + "acronyms": [ + "ACS", + "BASO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015493" + ], + "preferred": "100015493" + }, + "GRID": { + "all": "grid.499741.6", + "preferred": "grid.499741.6" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0248dkz36.json b/v1.52/v1/0248dkz36.json new file mode 100644 index 000000000..a02318fe2 --- /dev/null +++ b/v1.52/v1/0248dkz36.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/0248dkz36", + "name": "Tecnológico Nacional de México, Campus Pachuca", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 20.11697, + "lng": -98.73329, + "state": null, + "state_code": null, + "city": "Pachuca", + "geonames_city": { + "id": 3522210, + "city": "Pachuca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itp.itpachuca.edu.mx" + ], + "aliases": [ + "Instituto Tecnológico de Pachuca", + "TecNM campus Pachuca" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5917875" + ], + "preferred": "Q5917875" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/024gts110.json b/v1.52/v1/024gts110.json new file mode 100644 index 000000000..6f1c8d6c4 --- /dev/null +++ b/v1.52/v1/024gts110.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/024gts110", + "name": "Géosciences Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université des Antilles", + "type": "Parent", + "id": "https://ror.org/02ryfmr77" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gm.umontpellier.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462743.0", + "preferred": "grid.462743.0" + }, + "ISNI": { + "all": [ + "0000 0001 2184 338X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/024hs3d71.json b/v1.52/v1/024hs3d71.json new file mode 100644 index 000000000..c061f490c --- /dev/null +++ b/v1.52/v1/024hs3d71.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/024hs3d71", + "name": "City of Flagstaff", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.19807, + "lng": -111.65127, + "state": null, + "state_code": null, + "city": "Flagstaff", + "geonames_city": { + "id": 5294810, + "city": "Flagstaff", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.flagstaff.az.gov" + ], + "aliases": [], + "acronyms": [ + "COF" + ], + "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.52/v1/024tgbv41.json b/v1.52/v1/024tgbv41.json new file mode 100644 index 000000000..be283851d --- /dev/null +++ b/v1.52/v1/024tgbv41.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/024tgbv41", + "name": "Roche (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Roche (Switzerland)", + "type": "Parent", + "id": "https://ror.org/00by1q217" + } + ], + "addresses": [ + { + "lat": 51.80174, + "lng": -0.20691, + "state": null, + "state_code": null, + "city": "Welwyn Garden City", + "geonames_city": { + "id": 2634552, + "city": "Welwyn Garden City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.roche.co.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hoffmann-La_Roche", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015277" + ], + "preferred": "100015277" + }, + "GRID": { + "all": "grid.419227.b", + "preferred": "grid.419227.b" + }, + "Wikidata": { + "all": [ + "Q29123172" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/024vfck88.json b/v1.52/v1/024vfck88.json new file mode 100644 index 000000000..3ada24ef8 --- /dev/null +++ b/v1.52/v1/024vfck88.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/024vfck88", + "name": "Palau Community College", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.33978, + "lng": 134.47326, + "state": null, + "state_code": null, + "city": "Koror", + "geonames_city": { + "id": 1559446, + "city": "Koror", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pcc.palau.edu" + ], + "aliases": [ + "Micronesian Occupational College" + ], + "acronyms": [ + "PCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Palau_Community_College", + "labels": [], + "country": { + "country_name": "Palau", + "country_code": "PW" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2163 3673" + ], + "preferred": "0000 0001 2163 3673" + }, + "Wikidata": { + "all": [ + "Q15060585" + ], + "preferred": "Q15060585" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/025194b42.json b/v1.52/v1/025194b42.json new file mode 100644 index 000000000..afcb37660 --- /dev/null +++ b/v1.52/v1/025194b42.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/025194b42", + "name": "Mundipharma (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mundipharma (Germany)", + "type": "Child", + "id": "https://ror.org/040apef74" + }, + { + "label": "Mundipharma (Netherlands)", + "type": "Child", + "id": "https://ror.org/02jacnm89" + }, + { + "label": "Mundipharma (South Korea)", + "type": "Child", + "id": "https://ror.org/02bb52086" + }, + { + "label": "Mundipharma (Sweden)", + "type": "Child", + "id": "https://ror.org/018fqb741" + } + ], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mundipharmaresearch.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100016582" + ], + "preferred": "100016582" + }, + "GRID": { + "all": "grid.459800.0", + "preferred": "grid.459800.0" + }, + "Wikidata": { + "all": [ + "Q30260597" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/025320p83.json b/v1.52/v1/025320p83.json new file mode 100644 index 000000000..30ee068cd --- /dev/null +++ b/v1.52/v1/025320p83.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/025320p83", + "name": "SUNY Sullivan", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 41.73204, + "lng": -74.60127, + "state": null, + "state_code": null, + "city": "Fallsburg", + "geonames_city": { + "id": 5116900, + "city": "Fallsburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://sunysullivan.edu/" + ], + "aliases": [ + "State University of New York Sullivan", + "Sullivan County Community College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/SUNY_Sullivan", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.487806.5", + "preferred": "grid.487806.5" + }, + "ISNI": { + "all": [ + "0000 0004 0388 4171" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0259td381.json b/v1.52/v1/0259td381.json new file mode 100644 index 000000000..ca4bd32c6 --- /dev/null +++ b/v1.52/v1/0259td381.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0259td381", + "name": "Neurophysiologie respiratoire expérimentale et clinique", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sante.sorbonne-universite.fr/structures-de-recherche/neurophysiologie-respiratoire-experimentale-et-clinique" + ], + "aliases": [ + "UMRS 1158" + ], + "acronyms": [ + "NREC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781924" + ], + "preferred": "Q51781924" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/025er3q23.json b/v1.52/v1/025er3q23.json new file mode 100644 index 000000000..1759768cb --- /dev/null +++ b/v1.52/v1/025er3q23.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/025er3q23", + "name": "Ministère des Armées", + "email_address": null, + "ip_addresses": [], + "established": 1589, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Hôpital d'instruction des Armées Desgenettes", + "type": "Child", + "id": "https://ror.org/03m8r7k33" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "Child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "Histoire et Archéologie Maritimes", + "type": "Child", + "id": "https://ror.org/011mac819" + }, + { + "label": "Direction Générale de l'Armement", + "type": "Child", + "id": "https://ror.org/04wsqd844" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.defense.gouv.fr" + ], + "aliases": [ + "Ministry of the Armed Forces", + "Ministère de la Défense" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Minister_of_the_Armed_Forces_(France)", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100016398" + ], + "preferred": "501100016398" + }, + "GRID": { + "all": "grid.418221.c", + "preferred": "grid.418221.c" + }, + "Wikidata": { + "all": [ + "Q75706" + ], + "preferred": "Q75706" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/025g2e477.json b/v1.52/v1/025g2e477.json new file mode 100644 index 000000000..6a03963c0 --- /dev/null +++ b/v1.52/v1/025g2e477.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/025g2e477", + "name": "Biocommunication en Cardio-Métabolique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bc2m.umontpellier.fr" + ], + "aliases": [ + "Biocommunication in Cardiometabolics" + ], + "acronyms": [ + "BC2M" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784216" + ], + "preferred": "Q51784216" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/025q8p570.json b/v1.52/v1/025q8p570.json new file mode 100644 index 000000000..2d05a4ff1 --- /dev/null +++ b/v1.52/v1/025q8p570.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/025q8p570", + "name": "The Kericho National Polytechnic", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -0.69069, + "lng": 35.11102, + "state": null, + "state_code": null, + "city": "Sotik", + "geonames_city": { + "id": 179888, + "city": "Sotik", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kerichopoly.ac.ke" + ], + "aliases": [ + "Bureti Technical Training Institute", + "Kericho National Polytechnic" + ], + "acronyms": [ + "TKNP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Kenya", + "country_code": "KE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/025qq8j12.json b/v1.52/v1/025qq8j12.json new file mode 100644 index 000000000..ab0d295ba --- /dev/null +++ b/v1.52/v1/025qq8j12.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/025qq8j12", + "name": "Vesalius College", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "VeCo" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Vesalius_College", + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0611 7330" + ], + "preferred": "0000 0004 0611 7330" + }, + "Wikidata": { + "all": [ + "Q1954777" + ], + "preferred": "Q1954777" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/025rgte66.json b/v1.52/v1/025rgte66.json new file mode 100644 index 000000000..2fd03c957 --- /dev/null +++ b/v1.52/v1/025rgte66.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/025rgte66", + "name": "NSW Office for Learning and Teaching", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "NSW Department of Education", + "type": "Parent", + "id": "https://ror.org/05nne8c43" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://education.nsw.gov.au/teaching-and-learning" + ], + "aliases": [ + "New South Wales Office for Learning and Teaching", + "Teaching and learning - NSW Department of Education" + ], + "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.52/v1/025rrx658.json b/v1.52/v1/025rrx658.json new file mode 100644 index 000000000..c312c34b9 --- /dev/null +++ b/v1.52/v1/025rrx658.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/025rrx658", + "name": "INFN Sezione di Roma II", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "University of Rome Tor Vergata", + "type": "Parent", + "id": "https://ror.org/02p77k626" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.roma2.infn.it/" + ], + "aliases": [ + "Istituto Nazionale di Fisica Nucleare Sezione di Roma II", + "Sezione di Roma Tor Vergata" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.470219.9", + "preferred": "grid.470219.9" + }, + "Wikidata": { + "all": [ + "Q30265300" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/025vngs54.json b/v1.52/v1/025vngs54.json new file mode 100644 index 000000000..dc62c6926 --- /dev/null +++ b/v1.52/v1/025vngs54.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/025vngs54", + "name": "Universitätsmedizin Greifswald", + "email_address": null, + "ip_addresses": [], + "established": 1456, + "types": [ + "Education", + "Healthcare" + ], + "relationships": [ + { + "label": "Universität Greifswald", + "type": "Related", + "id": "https://ror.org/00r1edq15" + }, + { + "label": "InfectControl", + "type": "Related", + "id": "https://ror.org/03ecnj426" + } + ], + "addresses": [ + { + "lat": 54.09311, + "lng": 13.38786, + "state": null, + "state_code": null, + "city": "Greifswald", + "geonames_city": { + "id": 2917788, + "city": "Greifswald", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.medizin.uni-greifswald.de" + ], + "aliases": [ + "University Medicine Greifswald" + ], + "acronyms": [ + "UMG" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Greifswald_University_Hospital", + "labels": [ + { + "label": "Greifswald University Hospital", + "iso639": "en" + }, + { + "label": "Greifswald University Medicine", + "iso639": "en" + }, + { + "label": "University Medicine of Greifswald", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.412469.c", + "preferred": "grid.412469.c" + }, + "ISNI": { + "all": [ + "0000 0000 9116 8976" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2496421" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/025zmdz23.json b/v1.52/v1/025zmdz23.json new file mode 100644 index 000000000..63b363cb6 --- /dev/null +++ b/v1.52/v1/025zmdz23.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/025zmdz23", + "name": "Imperial College Healthcare Charity", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.imperialcharity.org.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012912", + "100013842" + ], + "preferred": "100013842" + }, + "GRID": { + "all": "grid.484312.8", + "preferred": "grid.484312.8" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0261b7b91.json b/v1.52/v1/0261b7b91.json new file mode 100644 index 000000000..72a8b50d8 --- /dev/null +++ b/v1.52/v1/0261b7b91.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0261b7b91", + "name": "Fetal Medicine Foundation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "King's Fertility", + "type": "Related", + "id": "https://ror.org/04xsrsp28" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fetalmedicine.org/" + ], + "aliases": [], + "acronyms": [ + "FMF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003123" + ], + "preferred": null + }, + "GRID": { + "all": "grid.453686.a", + "preferred": "grid.453686.a" + }, + "ISNI": { + "all": [ + "0000 0004 5901 5100" + ], + "preferred": "0000 0004 5901 5100" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0262z1d94.json b/v1.52/v1/0262z1d94.json new file mode 100644 index 000000000..03e4be7b9 --- /dev/null +++ b/v1.52/v1/0262z1d94.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/0262z1d94", + "name": "Laboratoire Innovation Communication et Marché", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://licem.umontpellier.fr" + ], + "aliases": [ + "UR UM213" + ], + "acronyms": [ + "LICeM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/0265w5591.json b/v1.52/v1/0265w5591.json new file mode 100644 index 000000000..6a64423c3 --- /dev/null +++ b/v1.52/v1/0265w5591.json @@ -0,0 +1,149 @@ +{ + "id": "https://ror.org/0265w5591", + "name": "IBM Research - Thomas J. Watson Research Center", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "IBM Research - Africa", + "type": "Child", + "id": "https://ror.org/05c0m9m16" + }, + { + "label": "IBM Research - Almaden", + "type": "Child", + "id": "https://ror.org/005w8dd04" + }, + { + "label": "IBM Research - Austin", + "type": "Child", + "id": "https://ror.org/05gjbbg60" + }, + { + "label": "IBM Research - Australia", + "type": "Child", + "id": "https://ror.org/027r3nx49" + }, + { + "label": "IBM Research - Brazil", + "type": "Child", + "id": "https://ror.org/01fxqdx25" + }, + { + "label": "IBM Research - Haifa", + "type": "Child", + "id": "https://ror.org/05rw9t746" + }, + { + "label": "IBM Research - India", + "type": "Child", + "id": "https://ror.org/014wt7r80" + }, + { + "label": "IBM Research - Ireland", + "type": "Child", + "id": "https://ror.org/04jnxr720" + }, + { + "label": "IBM Research - Tokyo", + "type": "Child", + "id": "https://ror.org/04915qk43" + }, + { + "label": "IBM Research - United Kingdom", + "type": "Child", + "id": "https://ror.org/01hpqfn25" + }, + { + "label": "IBM Research - Zurich", + "type": "Child", + "id": "https://ror.org/02js37d36" + }, + { + "label": "IBM (United States)", + "type": "Parent", + "id": "https://ror.org/05hh8d621" + } + ], + "addresses": [ + { + "lat": 41.27093, + "lng": -73.77763, + "state": null, + "state_code": null, + "city": "Yorktown Heights", + "geonames_city": { + "id": 5145253, + "city": "Yorktown Heights", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://research.ibm.com/labs/watson/index.shtml" + ], + "aliases": [ + "Thomas J. Watson Research Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Thomas_J._Watson_Research_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.481554.9", + "preferred": "grid.481554.9" + }, + "ISNI": { + "all": [ + "0000 0001 2111 841X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q476208" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0275ye937.json b/v1.52/v1/0275ye937.json new file mode 100644 index 000000000..c03cfb4e2 --- /dev/null +++ b/v1.52/v1/0275ye937.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/0275ye937", + "name": "Centre Hospitalier Universitaire de Nîmes", + "email_address": null, + "ip_addresses": [], + "established": 1901, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "Child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Université de Nîmes", + "type": "Related", + "id": "https://ror.org/044t4x544" + }, + { + "label": "Initial MAnagement and prevention of acute orGan failures IN critically ill patiEnts", + "type": "Child", + "id": "https://ror.org/05frk8994" + } + ], + "addresses": [ + { + "lat": 43.83665, + "lng": 4.35788, + "state": null, + "state_code": null, + "city": "Nîmes", + "geonames_city": { + "id": 2990363, + "city": "Nîmes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.chu-nimes.fr/" + ], + "aliases": [ + "CHU de Nîmes" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022656" + ], + "preferred": "501100022656" + }, + "GRID": { + "all": "grid.411165.6", + "preferred": "grid.411165.6" + }, + "ISNI": { + "all": [ + "0000 0004 0593 8241" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30253905" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0276rjc88.json b/v1.52/v1/0276rjc88.json new file mode 100644 index 000000000..a56c2bbda --- /dev/null +++ b/v1.52/v1/0276rjc88.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/0276rjc88", + "name": "Institute for Nuclear Research and Nuclear Energy", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Bulgarian Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/01x8hew03" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 42.69751, + "lng": 23.32415, + "state": null, + "state_code": null, + "city": "Sofia", + "geonames_city": { + "id": 727011, + "city": "Sofia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.inrne.bas.bg/" + ], + "aliases": [], + "acronyms": [ + "INRNE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_for_Nuclear_Research_and_Nuclear_Energy", + "labels": [ + { + "label": "Институт за ядрени изследвания и ядрена енергетика", + "iso639": "bg" + } + ], + "country": { + "country_name": "Bulgaria", + "country_code": "BG" + }, + "external_ids": { + "GRID": { + "all": "grid.425050.6", + "preferred": "grid.425050.6" + }, + "ISNI": { + "all": [ + "0000 0004 0519 4756" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q15995178" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/027953924.json b/v1.52/v1/027953924.json new file mode 100644 index 000000000..365fbcbc5 --- /dev/null +++ b/v1.52/v1/027953924.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/027953924", + "name": "Aménagement, Développement, Environnement, Santé et Sociétés", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Sciences Po Bordeaux", + "type": "Parent", + "id": "https://ror.org/01b5nw197" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Bordeaux Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + }, + { + "label": "Ministère de la Culture", + "type": "Parent", + "id": "https://ror.org/017rnyz40" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + }, + { + "label": "École Nationale Supérieure des Sciences Agronomiques de Bordeaux-Aquitaine", + "type": "Parent", + "id": "https://ror.org/00har9915" + } + ], + "addresses": [ + { + "lat": 44.80565, + "lng": -0.6324, + "state": null, + "state_code": null, + "city": "Pessac", + "geonames_city": { + "id": 2987805, + "city": "Pessac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ades.cnrs.fr/?lang=fr" + ], + "aliases": [], + "acronyms": [ + "ADESS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463761.1", + "preferred": "grid.463761.1" + }, + "ISNI": { + "all": [ + "0000 0001 2182 0380" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/027e56k73.json b/v1.52/v1/027e56k73.json new file mode 100644 index 000000000..323fd8fca --- /dev/null +++ b/v1.52/v1/027e56k73.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/027e56k73", + "name": "Lyceum of the Philippines University", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Lyceum of the Philippines University – Batangas", + "type": "Child", + "id": "https://ror.org/014q9ch68" + } + ], + "addresses": [ + { + "lat": 14.6042, + "lng": 120.9822, + "state": null, + "state_code": null, + "city": "Manila", + "geonames_city": { + "id": 1701668, + "city": "Manila", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://manila.lpu.edu.ph/beta6.0/" + ], + "aliases": [ + "Pamantasang Liseo ng Pilipinas" + ], + "acronyms": [ + "LPU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lyceum_of_the_Philippines_University", + "labels": [], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "GRID": { + "all": "grid.449035.f", + "preferred": "grid.449035.f" + }, + "ISNI": { + "all": [ + "0000 0001 1548 9812" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3547527" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/027rr8795.json b/v1.52/v1/027rr8795.json new file mode 100644 index 000000000..5196d023a --- /dev/null +++ b/v1.52/v1/027rr8795.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/027rr8795", + "name": "Sonova (Switzerland)", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Sonova (United States)", + "type": "Child", + "id": "https://ror.org/05k0hd440" + } + ], + "addresses": [ + { + "lat": 47.24254, + "lng": 8.72342, + "state": null, + "state_code": null, + "city": "Stäfa", + "geonames_city": { + "id": 2658518, + "city": "Stäfa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sonova.com" + ], + "aliases": [ + "Phonak AG", + "Phonak Holding AG", + "Phonak Switzerland", + "Sonova International" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004228" + ], + "preferred": null + }, + "GRID": { + "all": "grid.437266.2", + "preferred": "grid.437266.2" + }, + "ISNI": { + "all": [ + "0000 0004 0613 8617" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/027xab135.json b/v1.52/v1/027xab135.json new file mode 100644 index 000000000..e1437e9c5 --- /dev/null +++ b/v1.52/v1/027xab135.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/027xab135", + "name": "Low Carbon Living CRC (Australia)", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lowcarbonlivingcrc.com.au/" + ], + "aliases": [], + "acronyms": [ + "CRCLCL" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "FundRef": { + "all": [ + "100013336" + ], + "preferred": "100013336" + }, + "GRID": { + "all": "grid.507920.9", + "preferred": "grid.507920.9" + }, + "ISNI": { + "all": [ + "0000 0004 7860 3725" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/027xymc69.json b/v1.52/v1/027xymc69.json new file mode 100644 index 000000000..c28653c1f --- /dev/null +++ b/v1.52/v1/027xymc69.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/027xymc69", + "name": "Agence Bibliographique de l'Enseignement Supérieur", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Ministère de l’Enseignement Supérieur et de la Recherche", + "type": "Parent", + "id": "https://ror.org/03sjk9a61" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://abes.fr" + ], + "aliases": [], + "acronyms": [ + "ABES" + ], + "status": "active", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Agence_bibliographique_de_l%27enseignement_sup%C3%A9rieur", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2155 473X" + ], + "preferred": "0000 0001 2155 473X" + }, + "Wikidata": { + "all": [ + "Q2826570" + ], + "preferred": "Q2826570" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/028kg2g03.json b/v1.52/v1/028kg2g03.json new file mode 100644 index 000000000..b723f3f34 --- /dev/null +++ b/v1.52/v1/028kg2g03.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/028kg2g03", + "name": "Çanakkale Savaşları Enstitüsü", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.15552, + "lng": 26.41271, + "state": null, + "state_code": null, + "city": "Çanakkale", + "geonames_city": { + "id": 749780, + "city": "Çanakkale", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.casaen.org" + ], + "aliases": [ + "Canakkale War Institute" + ], + "acronyms": [ + "CASAEN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/028tfkh72.json b/v1.52/v1/028tfkh72.json new file mode 100644 index 000000000..cc792e91c --- /dev/null +++ b/v1.52/v1/028tfkh72.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/028tfkh72", + "name": "Oregon Department of Transportation", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.oregon.gov/ODOT" + ], + "aliases": [ + "Oregon DOT", + "Oregon Dept. of Transportation" + ], + "acronyms": [ + "ODOT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Oregon_Department_of_Transportation", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0420 414X" + ], + "preferred": "0000 0004 0420 414X" + }, + "Wikidata": { + "all": [ + "Q4413096" + ], + "preferred": "Q4413096" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/028wq3277.json b/v1.52/v1/028wq3277.json new file mode 100644 index 000000000..f810ed294 --- /dev/null +++ b/v1.52/v1/028wq3277.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/028wq3277", + "name": "Institut Charles Gerhardt Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "Parent", + "id": "https://ror.org/03sgyqj04" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.icgm.fr/?lang=en" + ], + "aliases": [ + "Institut Charles Gerhardt" + ], + "acronyms": [ + "ICGM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462034.7", + "preferred": "grid.462034.7" + }, + "ISNI": { + "all": [ + "0000 0001 2368 8723" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/029bre548.json b/v1.52/v1/029bre548.json new file mode 100644 index 000000000..657c764e7 --- /dev/null +++ b/v1.52/v1/029bre548.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/029bre548", + "name": "United Nations Educational, Scientific and Cultural Organization Switzerland", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "UNESCO", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + } + ], + "addresses": [ + { + "lat": 46.94809, + "lng": 7.44744, + "state": null, + "state_code": null, + "city": "Bern", + "geonames_city": { + "id": 2661552, + "city": "Bern", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unesco.ch/fr/" + ], + "aliases": [], + "acronyms": [ + "ONUESC", + "UNESCO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/UNESCO", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.483273.9", + "preferred": "grid.483273.9" + }, + "ISNI": { + "all": [ + "0000 0001 1956 7232" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/029brtt94.json b/v1.52/v1/029brtt94.json new file mode 100644 index 000000000..da3bd049d --- /dev/null +++ b/v1.52/v1/029brtt94.json @@ -0,0 +1,452 @@ +{ + "id": "https://ror.org/029brtt94", + "name": "Université Claude Bernard Lyon 1", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Archéologie et Archéométrie", + "type": "Child", + "id": "https://ror.org/02bq56641" + }, + { + "label": "Automation and Process Engineering Laboratory", + "type": "Child", + "id": "https://ror.org/03kfjwy31" + }, + { + "label": "Bioingénierie et Dynamique Microbienne aux Interfaces Alimentaires", + "type": "Child", + "id": "https://ror.org/048yvwh14" + }, + { + "label": "Biologie Fonctionnelle Insectes et Interactions", + "type": "Child", + "id": "https://ror.org/03d1jma17" + }, + { + "label": "Biologie Tissulaire et Ingénierie Thérapeutique", + "type": "Child", + "id": "https://ror.org/04fqvqs63" + }, + { + "label": "Laboratoire de Biomécanique et Mécanique des Chocs", + "type": "Child", + "id": "https://ror.org/02awy7178" + }, + { + "label": "Laboratoire de Biométrie et Biologie Evolutive", + "type": "Child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Centre de Recherche en Cancérologie de Lyon", + "type": "Child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "Child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Institut des Sciences Cognitives Marc Jeannerod", + "type": "Child", + "id": "https://ror.org/02he5dz58" + }, + { + "label": "Centre d'Énergétique et de Thermique de Lyon", + "type": "Child", + "id": "https://ror.org/01k383v05" + }, + { + "label": "Decision & Information Sciences for Production Systems", + "type": "Child", + "id": "https://ror.org/02stf8w13" + }, + { + "label": "Entrepôts, Représentation et Ingénierie des Connaissances", + "type": "Child", + "id": "https://ror.org/009frb846" + }, + { + "label": "Equipe de recherche de Lyon en Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/04y24xj84" + }, + { + "label": "Field Observatory in Urban Hydrology", + "type": "Child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Institut Lumière Matière", + "type": "Child", + "id": "https://ror.org/0323bey33" + }, + { + "label": "Institut NeuroMyoGène", + "type": "Child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut de Biologie et de Chimie des Protéines", + "type": "Child", + "id": "https://ror.org/0019x5d05" + }, + { + "label": "Institut de Chimie et Biochimie Moléculaires et Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00gj33s30" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut des Nanotechnologies de Lyon", + "type": "Child", + "id": "https://ror.org/04jsk0b74" + }, + { + "label": "Institut des Sciences Cognitives", + "type": "Child", + "id": "https://ror.org/058hz8544" + }, + { + "label": "Institut des Sciences Analytiques", + "type": "Child", + "id": "https://ror.org/03s5z5x70" + }, + { + "label": "Institut de Recherches sur la Catalyse et l'Environnement de Lyon", + "type": "Child", + "id": "https://ror.org/04fy20a51" + }, + { + "label": "Centre International de Recherche en Infectiologie", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire Ampère", + "type": "Child", + "id": "https://ror.org/04xbczw40" + }, + { + "label": "Laboratoire CarMeN", + "type": "Child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire Hydrazines et Composés Energétiques Polyazotés", + "type": "Child", + "id": "https://ror.org/01racwh88" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "Child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "Child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Chimie", + "type": "Child", + "id": "https://ror.org/02gaw1s20" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "Child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Laboratoire de Physique de l'ENS de Lyon", + "type": "Child", + "id": "https://ror.org/00w5ay796" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire de Spectrométrie Ionique et Moléculaire", + "type": "Child", + "id": "https://ror.org/04b9q5f39" + }, + { + "label": "Laboratoire de l'Informatique du Parallélisme", + "type": "Child", + "id": "https://ror.org/04msnz457" + }, + { + "label": "Laboratoire des Multimatériaux et Interfaces", + "type": "Child", + "id": "https://ror.org/03cfem402" + }, + { + "label": "Ingenierie des Materiaux polymeres", + "type": "Child", + "id": "https://ror.org/02160my55" + }, + { + "label": "Laboratoire des applications Thérapeutiques des Ultrasons", + "type": "Child", + "id": "https://ror.org/059eam965" + }, + { + "label": "Centre de Recherche en Neurosciences de Lyon", + "type": "Child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Matériaux Ingénierie et Science", + "type": "Child", + "id": "https://ror.org/01rnfhz46" + }, + { + "label": "Ecologie Microbienne Lyon", + "type": "Child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Laboratoire de Microbiologie, Adaptation et Pathogénie", + "type": "Child", + "id": "https://ror.org/03p3f6k20" + }, + { + "label": "Institut Cellule Souche et Cerveau", + "type": "Child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Structural and Molecular Basis of Infectious Systems", + "type": "Child", + "id": "https://ror.org/00jv0wy06" + }, + { + "label": "Centre Européen de Résonance Magnétique Nucléaire A Très Hauts Champs", + "type": "Child", + "id": "https://ror.org/00j29pk38" + }, + { + "label": "Virologie et Pathologies Humaines", + "type": "Child", + "id": "https://ror.org/031xg0236" + }, + { + "label": "Institut de Physique des 2 Infinis de Lyon", + "type": "Child", + "id": "https://ror.org/02avf8f85" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "Child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Laboratoire d'Ecologie des Hydrosystèmes Naturels et Anthropisés", + "type": "Child", + "id": "https://ror.org/05pny1q12" + }, + { + "label": "Parcours santé systémique", + "type": "Child", + "id": "https://ror.org/00gd5av19" + }, + { + "label": "Sciences, Société, Historicité, Éducation et Pratiques", + "type": "Child", + "id": "https://ror.org/04cre2h49" + }, + { + "label": "Nutrition, Diabète et Cerveau", + "type": "Child", + "id": "https://ror.org/052yj6c27" + }, + { + "label": "Unité Mixte de Recherche Epidémiologique et de Surveillance Transport Travail Environnement", + "type": "Child", + "id": "https://ror.org/03vmza063" + }, + { + "label": "Research on healthcare performance", + "type": "Child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "Child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "Child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "Catalyse, Polymérisation, Procédés et Matériaux", + "type": "Child", + "id": "https://ror.org/02f6tst70" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre de Recherche Astrophysique de Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Observatoire de Lyon", + "type": "Child", + "id": "https://ror.org/03j307b25" + }, + { + "label": "Structure Fédérative de Recherche Santé Lyon Est", + "type": "Child", + "id": "https://ror.org/05dh21g53" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Hôpital Lyon Sud", + "type": "Related", + "id": "https://ror.org/023xgd207" + }, + { + "label": "Hospices Civils de Lyon", + "type": "Related", + "id": "https://ror.org/01502ca60" + }, + { + "label": "Laboratoire Interuniversitaire de Biologie de la Motricité", + "type": "Related", + "id": "https://ror.org/03sc1p174" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + } + ], + "addresses": [ + { + "lat": 45.76601, + "lng": 4.8795, + "state": null, + "state_code": null, + "city": "Villeurbanne", + "geonames_city": { + "id": 2968254, + "city": "Villeurbanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-lyon1.fr/home-759942.kjsp" + ], + "aliases": [ + "Université Lyon 1" + ], + "acronyms": [ + "UCBL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Claude_Bernard_University_Lyon_1", + "labels": [ + { + "label": "Claude Bernard University Lyon 1", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006687" + ], + "preferred": null + }, + "GRID": { + "all": "grid.7849.2", + "preferred": "grid.7849.2" + }, + "ISNI": { + "all": [ + "0000 0001 2150 7757" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4032" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/029cj5595.json b/v1.52/v1/029cj5595.json new file mode 100644 index 000000000..0b08cf29a --- /dev/null +++ b/v1.52/v1/029cj5595.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/029cj5595", + "name": "Laboratoire Cognition, Langues, Langage, Ergonomie", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Bordeaux Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + }, + { + "label": "Université Toulouse - Jean Jaurès", + "type": "Parent", + "id": "https://ror.org/04ezk3x31" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://clle.univ-tlse2.fr/" + ], + "aliases": [], + "acronyms": [ + "CLLE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503167.6", + "preferred": "grid.503167.6" + }, + "ISNI": { + "all": [ + "0000 0004 0384 1577" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51782822" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/029r1ks56.json b/v1.52/v1/029r1ks56.json new file mode 100644 index 000000000..843e98044 --- /dev/null +++ b/v1.52/v1/029r1ks56.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/029r1ks56", + "name": "NSW Forestry Corporation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of New South Wales", + "type": "Parent", + "id": "https://ror.org/0067dvq63" + } + ], + "addresses": [ + { + "lat": -30.29626, + "lng": 153.11351, + "state": null, + "state_code": null, + "city": "Coffs Harbour", + "geonames_city": { + "id": 2171085, + "city": "Coffs Harbour", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.forestrycorporation.com.au/" + ], + "aliases": [ + "Forestry Corporation", + "New South Wales Forestry Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100021781" + ], + "preferred": "501100021781" + }, + "GRID": { + "all": "grid.473907.e", + "preferred": "grid.473907.e" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/029z02k15.json b/v1.52/v1/029z02k15.json new file mode 100644 index 000000000..dedec6fa3 --- /dev/null +++ b/v1.52/v1/029z02k15.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/029z02k15", + "name": "Rutgers Health", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Rutgers Cancer Institute of New Jersey", + "type": "Child", + "id": "https://ror.org/0060x3y55" + }, + { + "label": "Rutgers, The State University of New Jersey", + "type": "Parent", + "id": "https://ror.org/05vt9qd57" + }, + { + "label": "Rutgers New Jersey Medical School", + "type": "Child", + "id": "https://ror.org/014ye1258" + } + ], + "addresses": [ + { + "lat": 40.73566, + "lng": -74.17237, + "state": null, + "state_code": null, + "city": "Newark", + "geonames_city": { + "id": 5101798, + "city": "Newark", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://rutgershealth.org" + ], + "aliases": [ + "Rutgers Biomedical and Health Sciences", + "Rutgers University Health" + ], + "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.52/v1/02a1v0072.json b/v1.52/v1/02a1v0072.json new file mode 100644 index 000000000..b0640f6d6 --- /dev/null +++ b/v1.52/v1/02a1v0072.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02a1v0072", + "name": "Universitas Mitra Indonesia", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -5.48888, + "lng": 104.23617, + "state": null, + "state_code": null, + "city": "Rajabasa", + "geonames_city": { + "id": 1630208, + "city": "Rajabasa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umitra.ac.id" + ], + "aliases": [ + "Akademi Akuntansi Dan Manajemen Mitra Lampung", + "Mitra University Indonesia" + ], + "acronyms": [ + "UMITRA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q109912164" + ], + "preferred": "Q109912164" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02a22tx41.json b/v1.52/v1/02a22tx41.json new file mode 100644 index 000000000..819560b04 --- /dev/null +++ b/v1.52/v1/02a22tx41.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02a22tx41", + "name": "Haute École Provinciale de Hainaut Condorcet", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.45413, + "lng": 3.95229, + "state": null, + "state_code": null, + "city": "Mons", + "geonames_city": { + "id": 2790869, + "city": "Mons", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.condorcet.be" + ], + "aliases": [ + "HEPH Condorcet" + ], + "acronyms": [ + "HEPH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "GRID": { + "all": "grid.466353.1", + "preferred": "grid.466353.1" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02a9x5m28.json b/v1.52/v1/02a9x5m28.json new file mode 100644 index 000000000..3e347f5a9 --- /dev/null +++ b/v1.52/v1/02a9x5m28.json @@ -0,0 +1,70 @@ +{ + "id": "https://ror.org/02a9x5m28", + "name": "Central Institute of Metrology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.03385, + "lng": 125.75432, + "state": null, + "state_code": null, + "city": "Pyongyang", + "geonames_city": { + "id": 1871859, + "city": "Pyongyang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "CIM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "North Korea", + "country_code": "KP" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02abb9a79.json b/v1.52/v1/02abb9a79.json new file mode 100644 index 000000000..52746206c --- /dev/null +++ b/v1.52/v1/02abb9a79.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02abb9a79", + "name": "Severe Weather Institute - Radar & Lightning Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Alabama in Huntsville", + "type": "Parent", + "id": "https://ror.org/02zsxwr40" + } + ], + "addresses": [ + { + "lat": 34.7304, + "lng": -86.58594, + "state": null, + "state_code": null, + "city": "Huntsville", + "geonames_city": { + "id": 4068590, + "city": "Huntsville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nsstc.uah.edu/swirll/main" + ], + "aliases": [ + "Severe Weather Institute and Radar & Lightning Laboratories", + "Severe Weather Institute–Radar and Lightning Laboratories" + ], + "acronyms": [ + "SWIRLL", + "UAH SWIRLL" + ], + "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.52/v1/02b1bbq66.json b/v1.52/v1/02b1bbq66.json new file mode 100644 index 000000000..213f0ec86 --- /dev/null +++ b/v1.52/v1/02b1bbq66.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02b1bbq66", + "name": "Benefit-sharing Fund of the International Treaty on Plant Genetic Resources for Food and Agriculture", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [], + "relationships": [ + { + "label": "Food and Agriculture Organization of the United Nations", + "type": "Parent", + "id": "https://ror.org/00pe0tf51" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fao.org/plant-treaty/areas-of-work/benefit-sharing-fund/" + ], + "aliases": [ + "ITPGRFA Benefit-sharing Fund", + "International Treaty on Plant Genetic Resources for Food and Agriculture Benefit-sharing Fund" + ], + "acronyms": [ + "BSF" + ], + "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.52/v1/02bctrh07.json b/v1.52/v1/02bctrh07.json new file mode 100644 index 000000000..f747d4e12 --- /dev/null +++ b/v1.52/v1/02bctrh07.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02bctrh07", + "name": "Rune and Ulla Amlövs Stiftelse", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 57.70716, + "lng": 11.96679, + "state": null, + "state_code": null, + "city": "Gothenburg", + "geonames_city": { + "id": 2711537, + "city": "Gothenburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.amlovsstiftelse.se/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008448" + ], + "preferred": "100008448" + }, + "GRID": { + "all": "grid.484165.a", + "preferred": "grid.484165.a" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02bdb7w16.json b/v1.52/v1/02bdb7w16.json new file mode 100644 index 000000000..d9a98534e --- /dev/null +++ b/v1.52/v1/02bdb7w16.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02bdb7w16", + "name": "Tongji Zhejiang College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.7522, + "lng": 120.75, + "state": null, + "state_code": null, + "city": "Jiaxing", + "geonames_city": { + "id": 1805953, + "city": "Jiaxing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.tjzj.edu.cn" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/zh-hans/%E5%90%8C%E6%B5%8E%E5%A4%A7%E5%AD%A6%E6%B5%99%E6%B1%9F%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "同济大学浙江学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q15927405" + ], + "preferred": "Q15927405" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02bn68w95.json b/v1.52/v1/02bn68w95.json new file mode 100644 index 000000000..ec1c50406 --- /dev/null +++ b/v1.52/v1/02bn68w95.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02bn68w95", + "name": "Institute of Optics and Electronics, Chinese Academy of Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Chinese Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/034t30j35" + } + ], + "addresses": [ + { + "lat": 30.66667, + "lng": 104.06667, + "state": null, + "state_code": null, + "city": "Chengdu", + "geonames_city": { + "id": 1815286, + "city": "Chengdu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ioe.cas.cn" + ], + "aliases": [ + "Institute of Optics and Electronics" + ], + "acronyms": [ + "IOE CAS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.458437.9", + "preferred": "grid.458437.9" + }, + "ISNI": { + "all": [ + "0000 0004 0644 7356" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02bq56641.json b/v1.52/v1/02bq56641.json new file mode 100644 index 000000000..9c1a79626 --- /dev/null +++ b/v1.52/v1/02bq56641.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02bq56641", + "name": "Archéologie et Archéométrie", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Claude Bernard Lyon 1", + "type": "Parent", + "id": "https://ror.org/029brtt94" + }, + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.arar.mom.fr" + ], + "aliases": [ + "Laboratoire ArAr" + ], + "acronyms": [ + "ARAR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463755.6", + "preferred": "grid.463755.6" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02c0fsq39.json b/v1.52/v1/02c0fsq39.json new file mode 100644 index 000000000..c48010be9 --- /dev/null +++ b/v1.52/v1/02c0fsq39.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02c0fsq39", + "name": "UGC-DAE Consortium for Scientific Research, Kolkata Centre", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.56263, + "lng": 88.36304, + "state": null, + "state_code": null, + "city": "Kolkata", + "geonames_city": { + "id": 1275004, + "city": "Kolkata", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iuc.res.in" + ], + "aliases": [], + "acronyms": [ + "UGC-DAE CSR KC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02c0s8023.json b/v1.52/v1/02c0s8023.json new file mode 100644 index 000000000..a745c4bf2 --- /dev/null +++ b/v1.52/v1/02c0s8023.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/02c0s8023", + "name": "Universitas Muslim Indonesia", + "email_address": null, + "ip_addresses": [], + "established": 1954, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -5.14861, + "lng": 119.43194, + "state": null, + "state_code": null, + "city": "Makassar", + "geonames_city": { + "id": 1622786, + "city": "Makassar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umi.ac.id" + ], + "aliases": [ + "Indonesian Muslim University" + ], + "acronyms": [ + "UMI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Indonesian Muslim University of Makassar", + "iso639": "en" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "GRID": { + "all": "grid.443684.9", + "preferred": "grid.443684.9" + }, + "ISNI": { + "all": [ + "0000 0004 1759 1353" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q12523408" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02c1xev33.json b/v1.52/v1/02c1xev33.json new file mode 100644 index 000000000..50c7805de --- /dev/null +++ b/v1.52/v1/02c1xev33.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02c1xev33", + "name": "Islamic Azad University, Abadan", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Islamic Azad University, Tehran", + "type": "Parent", + "id": "https://ror.org/01kzn7k21" + } + ], + "addresses": [ + { + "lat": 30.3392, + "lng": 48.3043, + "state": null, + "state_code": null, + "city": "Ābādān", + "geonames_city": { + "id": 145459, + "city": "Ābādān", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://abadan.iau.ir" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "ازاد فرع آبادان الإسلامي", + "iso639": "ar" + }, + { + "label": "دانشگاه آزاد اسلامی واحد آبادان", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02ck2yw57.json b/v1.52/v1/02ck2yw57.json new file mode 100644 index 000000000..fdadc77cf --- /dev/null +++ b/v1.52/v1/02ck2yw57.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02ck2yw57", + "name": "Institute of Geology and Mineral Exploration", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Hellenic Survey of Geology and Mineral Exploration", + "type": "Successor", + "id": "https://ror.org/05wykb893" + } + ], + "addresses": [ + { + "lat": 38.08333, + "lng": 23.73333, + "state": null, + "state_code": null, + "city": "Acharnes", + "geonames_city": { + "id": 265488, + "city": "Acharnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.igme.gr/index.php/el/" + ], + "aliases": [], + "acronyms": [ + "IGME" + ], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Greece", + "country_code": "GR" + }, + "external_ids": { + "GRID": { + "all": "grid.410450.4", + "preferred": "grid.410450.4" + }, + "ISNI": { + "all": [ + "0000 0001 2168 0576" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02cte4b68.json b/v1.52/v1/02cte4b68.json new file mode 100644 index 000000000..7ace6306d --- /dev/null +++ b/v1.52/v1/02cte4b68.json @@ -0,0 +1,605 @@ +{ + "id": "https://ror.org/02cte4b68", + "name": "Institut de Chimie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CNRT Matériaux", + "type": "Child", + "id": "https://ror.org/05jw85995" + }, + { + "label": "Laboratoire Catalyse et Spectrochimie", + "type": "Child", + "id": "https://ror.org/01gan4k05" + }, + { + "label": "Centre de Recherches sur les Macromolécules Végétales", + "type": "Child", + "id": "https://ror.org/0003ege03" + }, + { + "label": "Ceramic Synthesis and Functionalization Laboratory", + "type": "Child", + "id": "https://ror.org/04nd4kk51" + }, + { + "label": "Chimie et Interdisciplinarité, Synthèse, Analyse, Modélisation", + "type": "Child", + "id": "https://ror.org/04ysg2a58" + }, + { + "label": "Chimie de la Matière Condensée de Paris", + "type": "Child", + "id": "https://ror.org/028ta1f94" + }, + { + "label": "Chimie et Biologie des Membranes et des Nanoobjects", + "type": "Child", + "id": "https://ror.org/03jtzcc30" + }, + { + "label": "Conditions Extrêmes et Matériaux Haute Température et Irradiation", + "type": "Child", + "id": "https://ror.org/02zs48f23" + }, + { + "label": "Département de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/010rs2a38" + }, + { + "label": "Institut de Chimie et des Matériaux Paris-Est", + "type": "Child", + "id": "https://ror.org/04c3cen15" + }, + { + "label": "Gulliver", + "type": "Child", + "id": "https://ror.org/058z3vf87" + }, + { + "label": "Institut Charles Gerhardt Montpellier", + "type": "Child", + "id": "https://ror.org/028wq3277" + }, + { + "label": "Institut Charles Sadron", + "type": "Child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "Child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut Européen des Membranes", + "type": "Child", + "id": "https://ror.org/04nmj9827" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "Child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut Jean Lamour", + "type": "Child", + "id": "https://ror.org/05k1smh27" + }, + { + "label": "Institut Lavoisier de Versailles", + "type": "Child", + "id": "https://ror.org/05mzd8v39" + }, + { + "label": "Institut Parisien de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04qwfwm19" + }, + { + "label": "Institut de Chimie Moléculaire de Grenoble", + "type": "Child", + "id": "https://ror.org/04g26vc28" + }, + { + "label": "Institut de Chimie Radicalaire", + "type": "Child", + "id": "https://ror.org/000d5zy28" + }, + { + "label": "Institut de Chimie de Nice", + "type": "Child", + "id": "https://ror.org/000pvc513" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "Child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Chimie de la Matière Condensée de Bordeaux", + "type": "Child", + "id": "https://ror.org/01nw6qk38" + }, + { + "label": "Institut de Chimie des Milieux et des Matériaux de Poitiers", + "type": "Child", + "id": "https://ror.org/001n7ee52" + }, + { + "label": "Institut de Chimie et Biochimie Moléculaires et Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00gj33s30" + }, + { + "label": "Institut de Recherche de Chimie Paris", + "type": "Child", + "id": "https://ror.org/02s6m8n84" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institut de Sciences des Matériaux de Mulhouse", + "type": "Child", + "id": "https://ror.org/012wxdw12" + }, + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "Child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Institut des Matériaux Jean Rouxel", + "type": "Child", + "id": "https://ror.org/00cqpd580" + }, + { + "label": "Institut des Molécules et Matériaux du Mans", + "type": "Child", + "id": "https://ror.org/03a9gd656" + }, + { + "label": "Institut des Sciences Analytiques et de Physico-Chimie pour l'Environnement et les Matériaux", + "type": "Child", + "id": "https://ror.org/00222yk13" + }, + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "Child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Institut des Sciences Moléculaires de Marseille", + "type": "Child", + "id": "https://ror.org/05xr3b330" + }, + { + "label": "Institut des Sciences et Technologies Moléculaires d'Angers", + "type": "Child", + "id": "https://ror.org/039yyx623" + }, + { + "label": "Institut de Chimie Séparative de Marcoule", + "type": "Child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institut des Sciences Analytiques", + "type": "Child", + "id": "https://ror.org/03s5z5x70" + }, + { + "label": "Institut de Chimie et Procédés pour l'Energie, l'Environnement et la Santé", + "type": "Child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institut de Chimie de Clermont-Ferrand", + "type": "Child", + "id": "https://ror.org/045qszf23" + }, + { + "label": "Institut de Chimie Moléculaire de Reims", + "type": "Child", + "id": "https://ror.org/03c0nx407" + }, + { + "label": "Institut des Sciences Moléculaires", + "type": "Child", + "id": "https://ror.org/00r8jkk54" + }, + { + "label": "Institut de Chimie Organique et Analytique", + "type": "Child", + "id": "https://ror.org/03ywn7d79" + }, + { + "label": "Institut de Recherches sur la Catalyse et l'Environnement de Lyon", + "type": "Child", + "id": "https://ror.org/04fy20a51" + }, + { + "label": "Interfaces Traitements Organisation et Dynamique des Systèmes", + "type": "Child", + "id": "https://ror.org/03edms940" + }, + { + "label": "Centre Interuniversitaire de Recherche et d’Ingénierie des Matériaux", + "type": "Child", + "id": "https://ror.org/03xhggy77" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "Child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire Chimie Electrochimie Moléculaires et Chimie Analytique", + "type": "Child", + "id": "https://ror.org/02bhhaf78" + }, + { + "label": "Laboratoire Chimie de l'Environnement", + "type": "Child", + "id": "https://ror.org/02pr0xw82" + }, + { + "label": "Laboratoire Hydrazines et Composés Energétiques Polyazotés", + "type": "Child", + "id": "https://ror.org/01racwh88" + }, + { + "label": "Laboratoire Hétérochimie Fondamentale et Appliquée", + "type": "Child", + "id": "https://ror.org/02v2svk17" + }, + { + "label": "Laboratoire Interfaces et Systèmes Électrochimiques", + "type": "Child", + "id": "https://ror.org/00jb20a14" + }, + { + "label": "Chimie Moléculaire, Macromoléculaire, Matériaux", + "type": "Child", + "id": "https://ror.org/007sc9r91" + }, + { + "label": "Laboratoire d'Electrochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/03atapr58" + }, + { + "label": "Laboratoire de Chimie", + "type": "Child", + "id": "https://ror.org/02gaw1s20" + }, + { + "label": "Laboratoire de Chimie Moléculaire et Thioorganique", + "type": "Child", + "id": "https://ror.org/03q7p3t30" + }, + { + "label": "Laboratoire de Chimie Physique - Matière et Rayonnement", + "type": "Child", + "id": "https://ror.org/03z20vp15" + }, + { + "label": "Laboratoire de Chimie Physique et Microbiologie pour l'Environnement", + "type": "Child", + "id": "https://ror.org/03nknpw16" + }, + { + "label": "Laboratoire de Chimie Théorique", + "type": "Child", + "id": "https://ror.org/00tmb7y09" + }, + { + "label": "Laboratoire de Chimie de Coordination", + "type": "Child", + "id": "https://ror.org/01rtzw447" + }, + { + "label": "Laboratoire de Chimie des Polymères Organiques", + "type": "Child", + "id": "https://ror.org/056n05x05" + }, + { + "label": "Laboratoire de chimie des processus biologiques", + "type": "Child", + "id": "https://ror.org/02fv42846" + }, + { + "label": "Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques", + "type": "Child", + "id": "https://ror.org/028qedy27" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "Child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire de Chimie et Physique Quantiques", + "type": "Child", + "id": "https://ror.org/056g7f250" + }, + { + "label": "Laboratoire de Cristallographie et Sciences des Matériaux", + "type": "Child", + "id": "https://ror.org/04310tc15" + }, + { + "label": "Laboratoire de Photophysique et Photochimie Supramoléculaires et Macromoléculaires", + "type": "Child", + "id": "https://ror.org/03r7eh527" + }, + { + "label": "Laboratoire de Réactivité de Surface", + "type": "Child", + "id": "https://ror.org/04vthwx70" + }, + { + "label": "Laboratoire de Réactivité et Chimie des Solides", + "type": "Child", + "id": "https://ror.org/02m9cs548" + }, + { + "label": "Laboratoire de Spectroscopie pour les Interactions, la Réactivité et l'Environnement", + "type": "Child", + "id": "https://ror.org/01tv2ca73" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "Child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire des Composites Thermo Structuraux", + "type": "Child", + "id": "https://ror.org/02n2h9t24" + }, + { + "label": "Softmat - Chimie des colloïdes, polymères & assemblages complexes", + "type": "Child", + "id": "https://ror.org/0171mae58" + }, + { + "label": "Laboratoire des Multimatériaux et Interfaces", + "type": "Child", + "id": "https://ror.org/03cfem402" + }, + { + "label": "Laboratoire du Futur", + "type": "Child", + "id": "https://ror.org/04qq0qp34" + }, + { + "label": "Laboratoire d’Archéologie Moléculaire et Structurale", + "type": "Child", + "id": "https://ror.org/02ctqqq48" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "Child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Laboratoire de Glycochimie, des Antimicrobiens et des Agroressources", + "type": "Child", + "id": "https://ror.org/01gje7n16" + }, + { + "label": "Laboratoire d'Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Unité de catalyse et de chimie du solide de Lille", + "type": "Child", + "id": "https://ror.org/04vrqzz54" + }, + { + "label": "Laboratoire de Chémo-biologie synthétique et thérapeutique", + "type": "Child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratoire de Synthèse Organique", + "type": "Child", + "id": "https://ror.org/04qgfge56" + }, + { + "label": "Ingenierie des Materiaux polymeres", + "type": "Child", + "id": "https://ror.org/02160my55" + }, + { + "label": "Laboratoire de Biochimie Théorique", + "type": "Child", + "id": "https://ror.org/00nvjgv40" + }, + { + "label": "Laboratoire des Matériaux et du Génie Physique", + "type": "Child", + "id": "https://ror.org/014n97s28" + }, + { + "label": "Miniaturisation pour la Synthèse, l'Analyse et la Protéomique", + "type": "Child", + "id": "https://ror.org/02s4dmd79" + }, + { + "label": "Molécule aux Nanos-objets : Réactivité, Interactions et Spectroscopies", + "type": "Child", + "id": "https://ror.org/02jkg8m11" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Nanosciences et Innovation pour les Matériaux, la Biomédecine et l'Énergie", + "type": "Child", + "id": "https://ror.org/04vg26t07" + }, + { + "label": "Laboratoire COBRA", + "type": "Child", + "id": "https://ror.org/04e8pda19" + }, + { + "label": "Paul Pascal Research Center", + "type": "Child", + "id": "https://ror.org/043a21x04" + }, + { + "label": "PHENIX laboratory", + "type": "Child", + "id": "https://ror.org/046htjf88" + }, + { + "label": "Polymères, Biopolymères, Surfaces", + "type": "Child", + "id": "https://ror.org/04hd6wf14" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "Child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Science et Ingénierie des Matériaux et Procédés", + "type": "Child", + "id": "https://ror.org/00m7zca23" + }, + { + "label": "Institut de Recherche sur les Céramiques", + "type": "Child", + "id": "https://ror.org/044qpwz88" + }, + { + "label": "Sciences et Ingénierie de la Matière Molle", + "type": "Child", + "id": "https://ror.org/03f0z1g15" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "Child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "Child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "Child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "Child", + "id": "https://ror.org/02dpqcy73" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnrs.fr/inc/index.htm" + ], + "aliases": [], + "acronyms": [ + "INC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100017217" + ], + "preferred": "501100017217" + }, + "GRID": { + "all": "grid.457012.5", + "preferred": "grid.457012.5" + }, + "ISNI": { + "all": [ + "0000 0001 0626 358X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3152386" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02cwzx487.json b/v1.52/v1/02cwzx487.json new file mode 100644 index 000000000..7535249b1 --- /dev/null +++ b/v1.52/v1/02cwzx487.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02cwzx487", + "name": "Wild Animal Initiative", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.97997, + "lng": -93.26384, + "state": null, + "state_code": null, + "city": "Minneapolis", + "geonames_city": { + "id": 5037649, + "city": "Minneapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.wildanimalinitiative.org" + ], + "aliases": [], + "acronyms": [ + "WAI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Wild_Animal_Initiative", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100019076" + ], + "preferred": "100019076" + }, + "ISNI": { + "all": [ + "0000 0005 0728 2642" + ], + "preferred": "0000 0005 0728 2642" + }, + "Wikidata": { + "all": [ + "Q107463177" + ], + "preferred": "Q107463177" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02cxb1m07.json b/v1.52/v1/02cxb1m07.json new file mode 100644 index 000000000..fb171f2fa --- /dev/null +++ b/v1.52/v1/02cxb1m07.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02cxb1m07", + "name": "BERD@NFDI", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 49.4891, + "lng": 8.46694, + "state": null, + "state_code": null, + "city": "Mannheim", + "geonames_city": { + "id": 2873891, + "city": "Mannheim", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.berd-nfdi.de" + ], + "aliases": [ + "NFDI consortium for Business, Economic and Related Data (Social and Behavioural Sciences)", + "NFDI für Wirtschaftsdaten und Verwandtes (Sozial- und Verhaltenswissenschaften)" + ], + "acronyms": [], + "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.52/v1/02d31v873.json b/v1.52/v1/02d31v873.json new file mode 100644 index 000000000..3e50a2efe --- /dev/null +++ b/v1.52/v1/02d31v873.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/02d31v873", + "name": "Unidad Académica del Norte del Estado de Nayarit", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Universidad Autónoma de Nayarit", + "type": "Parent", + "id": "https://ror.org/0576q1t15" + } + ], + "addresses": [ + { + "lat": 22.49396, + "lng": -105.36369, + "state": null, + "state_code": null, + "city": "Acaponeta", + "geonames_city": { + "id": 4019819, + "city": "Acaponeta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uan.edu.mx/es/extension-academica-del-norte-acaponeta" + ], + "aliases": [ + "Academic Unit of the North of the State of Nayarit", + "Unidad Académica Del Norte" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02d4maz67.json b/v1.52/v1/02d4maz67.json new file mode 100644 index 000000000..25f24f7f2 --- /dev/null +++ b/v1.52/v1/02d4maz67.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/02d4maz67", + "name": "SUNY Maritime College", + "email_address": null, + "ip_addresses": [], + "established": 1874, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 40.8226, + "lng": -73.81958, + "state": null, + "state_code": null, + "city": "Throgs Neck", + "geonames_city": { + "id": 5140945, + "city": "Throgs Neck", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunymaritime.edu" + ], + "aliases": [ + "SUNY Maritime College", + "State University of New York Maritime College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_Maritime_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.440662.2", + "preferred": "grid.440662.2" + }, + "ISNI": { + "all": [ + "0000 0000 8804 2344" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7603615" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02d5zdh33.json b/v1.52/v1/02d5zdh33.json new file mode 100644 index 000000000..22ad35525 --- /dev/null +++ b/v1.52/v1/02d5zdh33.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02d5zdh33", + "name": "Utah Agricultural Experiment Station", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Utah State University", + "type": "Parent", + "id": "https://ror.org/00h6set76" + } + ], + "addresses": [ + { + "lat": 41.73549, + "lng": -111.83439, + "state": null, + "state_code": null, + "city": "Logan", + "geonames_city": { + "id": 5777544, + "city": "Logan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://caas.usu.edu/uaes/" + ], + "aliases": [], + "acronyms": [ + "UAES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007199" + ], + "preferred": "100007199" + }, + "ISNI": { + "all": [ + "0000 0004 5906 8413" + ], + "preferred": "0000 0004 5906 8413" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02dd25k08.json b/v1.52/v1/02dd25k08.json new file mode 100644 index 000000000..27704f758 --- /dev/null +++ b/v1.52/v1/02dd25k08.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/02dd25k08", + "name": "Laboratoire de Chimie et Biologie des Métaux", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Institut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cbm-lab.fr" + ], + "aliases": [], + "acronyms": [ + "LCBM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462960.f", + "preferred": "grid.462960.f" + }, + "ISNI": { + "all": [ + "0000 0004 0384 0427" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261613" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02deetg88.json b/v1.52/v1/02deetg88.json new file mode 100644 index 000000000..5f14b32f4 --- /dev/null +++ b/v1.52/v1/02deetg88.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02deetg88", + "name": "Sekisui Medical (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Sekisui Chemical (Japan)", + "type": "Parent", + "id": "https://ror.org/05hessd06" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sekisuimedical.jp/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "積水メディカル株式会社", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.410853.b", + "preferred": "grid.410853.b" + }, + "ISNI": { + "all": [ + "0000 0004 1794 9917" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q24869795" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02dj1mv43.json b/v1.52/v1/02dj1mv43.json new file mode 100644 index 000000000..5d8e95092 --- /dev/null +++ b/v1.52/v1/02dj1mv43.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/02dj1mv43", + "name": "Saudi Standards, Metrology and Quality Organization", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Center for Measurement and Calibration Center", + "type": "Child", + "id": "https://ror.org/049v3kt97" + } + ], + "addresses": [ + { + "lat": 24.68773, + "lng": 46.72185, + "state": null, + "state_code": null, + "city": "Riyadh", + "geonames_city": { + "id": 108410, + "city": "Riyadh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.saso.gov.sa" + ], + "aliases": [], + "acronyms": [ + "SASO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saudi_Standards%2C_Metrology_and_Quality_Organization", + "labels": [ + { + "label": "الهيئة السعودية للمواصفات والمقاييس والجودة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Saudi Arabia", + "country_code": "SA" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0181 0985" + ], + "preferred": "0000 0005 0181 0985" + }, + "Wikidata": { + "all": [ + "Q65083703" + ], + "preferred": "Q65083703" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02djqfd08.json b/v1.52/v1/02djqfd08.json new file mode 100644 index 000000000..69f197841 --- /dev/null +++ b/v1.52/v1/02djqfd08.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/02djqfd08", + "name": "Zhejiang University of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1953, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Yiwu Science and Technology Research Institute", + "type": "Child", + "id": "https://ror.org/04kvstc88" + }, + { + "label": "Zhijiang College of Zhejiang University of Technology", + "type": "Child", + "id": "https://ror.org/02kxw0b63" + } + ], + "addresses": [ + { + "lat": 30.29365, + "lng": 120.16142, + "state": null, + "state_code": null, + "city": "Hangzhou", + "geonames_city": { + "id": 1808926, + "city": "Hangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.wsc.zjut.edu.cn/zjuten/index.jsp" + ], + "aliases": [ + "Zhèjiāng Gōngyè Dàxúe" + ], + "acronyms": [ + "ZJUT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Zhejiang_University_of_Technology", + "labels": [ + { + "label": "浙江工业大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008327" + ], + "preferred": null + }, + "GRID": { + "all": "grid.469325.f", + "preferred": "grid.469325.f" + }, + "ISNI": { + "all": [ + "0000 0004 1761 325X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q986087" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02egcpy68.json b/v1.52/v1/02egcpy68.json new file mode 100644 index 000000000..0ac912b97 --- /dev/null +++ b/v1.52/v1/02egcpy68.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/02egcpy68", + "name": "Indian Institute of Management Ahmedabad", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.02579, + "lng": 72.58727, + "state": null, + "state_code": null, + "city": "Ahmedabad", + "geonames_city": { + "id": 1279233, + "city": "Ahmedabad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iima.ac.in" + ], + "aliases": [ + "IIM Ahmedabad" + ], + "acronyms": [ + "IIMA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Indian_Institute_of_Management_Ahmedabad", + "labels": [ + { + "label": "इंडियन इन्स्टिट्यूट ऑफ मॅनेजमेन्ट", + "iso639": "mr" + }, + { + "label": "भारतीय प्रबंध संस्थान", + "iso639": "hi" + }, + { + "label": "આઇ.આઇ.એમ. અમદાવાદ", + "iso639": "gu" + }, + { + "label": "இந்திய மேலாண்மை கழகம் அகமதாபாத்", + "iso639": "ta" + }, + { + "label": "ഇന്ത്യൻ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് മാനേജ്മെന്റ്", + "iso639": "ml" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002381" + ], + "preferred": null + }, + "GRID": { + "all": "grid.418226.b", + "preferred": "grid.418226.b" + }, + "ISNI": { + "all": [ + "0000 0000 9244 1719" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q46027" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02emx6223.json b/v1.52/v1/02emx6223.json new file mode 100644 index 000000000..c7a7b9923 --- /dev/null +++ b/v1.52/v1/02emx6223.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02emx6223", + "name": "Nepal Bureau of Standards and Metrology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.70169, + "lng": 85.3206, + "state": null, + "state_code": null, + "city": "Kathmandu", + "geonames_city": { + "id": 1283240, + "city": "Kathmandu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nbsm.gov.np" + ], + "aliases": [], + "acronyms": [ + "NBSM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "नेपाल गुणस्तर तथा नापतौल विभाग", + "iso639": "ne" + } + ], + "country": { + "country_name": "Nepal", + "country_code": "NP" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q96395216" + ], + "preferred": "Q96395216" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02en5vm52.json b/v1.52/v1/02en5vm52.json new file mode 100644 index 000000000..8bf97da28 --- /dev/null +++ b/v1.52/v1/02en5vm52.json @@ -0,0 +1,1131 @@ +{ + "id": "https://ror.org/02en5vm52", + "name": "Sorbonne Université", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Adaptation et Diversité en Milieu Marin", + "type": "Child", + "id": "https://ror.org/0293jn610" + }, + { + "label": "Laboratoire d'Ecogéochimie des Environnements Benthiques", + "type": "Child", + "id": "https://ror.org/049xh5y45" + }, + { + "label": "Biologie Intégrative des Organismes Marins", + "type": "Child", + "id": "https://ror.org/03wg93s13" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "Child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Centre André-Chastel", + "type": "Child", + "id": "https://ror.org/03jqm0b89" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre d’étude de la langue et des littératures françaises", + "type": "Child", + "id": "https://ror.org/059v8sw69" + }, + { + "label": "Centre de Recherche Saint-Antoine", + "type": "Child", + "id": "https://ror.org/03wxndv36" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "Child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de recherches sur la pensée antique", + "type": "Child", + "id": "https://ror.org/02d19mr69" + }, + { + "label": "Centre d'Écologie et des Sciences de la Conservation", + "type": "Child", + "id": "https://ror.org/00sad8321" + }, + { + "label": "Chimie de la Matière Condensée de Paris", + "type": "Child", + "id": "https://ror.org/028ta1f94" + }, + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "Child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Biologie évolutive et écologie des algues", + "type": "Child", + "id": "https://ror.org/051k70002" + }, + { + "label": "Géoazur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Groupe d'Étude des Méthodes de l'Analyse Sociologique de la Sorbonne", + "type": "Child", + "id": "https://ror.org/00kzsxx38" + }, + { + "label": "Institut Henri Poincaré", + "type": "Child", + "id": "https://ror.org/05dfxeg46" + }, + { + "label": "Institut Jean Le Rond d'Alembert", + "type": "Child", + "id": "https://ror.org/043we9s22" + }, + { + "label": "Institut Parisien de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04qwfwm19" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "Child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "Child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "Child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "Child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institut du Cerveau", + "type": "Child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "Child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "Child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institut de minéralogie, de physique des matériaux et de cosmochimie", + "type": "Child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "Institut de Myologie", + "type": "Child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "Child", + "id": "https://ror.org/01h14ww21" + }, + { + "label": "Laboratoire Interfaces et Systèmes Électrochimiques", + "type": "Child", + "id": "https://ror.org/00jb20a14" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "Child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Perrin", + "type": "Child", + "id": "https://ror.org/01ghvgs84" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "Child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Biodiversité et Biotechnologies Microbiennes", + "type": "Child", + "id": "https://ror.org/039p01270" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "Child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire de Biologie du Développement de Villefranche-sur-Mer", + "type": "Child", + "id": "https://ror.org/04hke8425" + }, + { + "label": "Laboratoire de Chimie Physique - Matière et Rayonnement", + "type": "Child", + "id": "https://ror.org/03z20vp15" + }, + { + "label": "Laboratoire de Chimie Théorique", + "type": "Child", + "id": "https://ror.org/00tmb7y09" + }, + { + "label": "Laboratoire de chimie des processus biologiques", + "type": "Child", + "id": "https://ror.org/02fv42846" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Physique Nucléaire et de Hautes Énergies", + "type": "Child", + "id": "https://ror.org/01hg8p552" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "Child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Laboratoire de Recherche en Informatique de Paris 6", + "type": "Child", + "id": "https://ror.org/05krcen59" + }, + { + "label": "Laboratoire de Réactivité de Surface", + "type": "Child", + "id": "https://ror.org/04vthwx70" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "Child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire d’Archéologie Moléculaire et Structurale", + "type": "Child", + "id": "https://ror.org/02ctqqq48" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratoire de Biologie Computationnelle et Quantitative", + "type": "Child", + "id": "https://ror.org/00pcqj134" + }, + { + "label": "Laboratoire de Biologie Intégrative des Modèles Marins", + "type": "Child", + "id": "https://ror.org/001c8pb03" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "Child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Laboratoire d'Océanographie Microbienne", + "type": "Child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratoire de Biologie Moléculaire et Cellulaire des Eucaryotes", + "type": "Child", + "id": "https://ror.org/05mx55f96" + }, + { + "label": "Laboratoire de Physique et d’Étude des Matériaux", + "type": "Child", + "id": "https://ror.org/00a72jq18" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratoire de Physique Théorique de la Matière Condensée", + "type": "Child", + "id": "https://ror.org/04zaaa143" + }, + { + "label": "Laboratoire de Physique Théorique et Hautes Energies", + "type": "Child", + "id": "https://ror.org/02mph9k76" + }, + { + "label": "Institut Langevin", + "type": "Child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Milieux environnementaux, transferts et interactions dans les hydrosystèmes et les sols", + "type": "Child", + "id": "https://ror.org/0229z0679" + }, + { + "label": "Molécule aux Nanos-objets : Réactivité, Interactions et Spectroscopies", + "type": "Child", + "id": "https://ror.org/02jkg8m11" + }, + { + "label": "Dynamique du noyau", + "type": "Child", + "id": "https://ror.org/04team556" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Orient & Méditerranée", + "type": "Child", + "id": "https://ror.org/051gvfp41" + }, + { + "label": "Institut des NanoSciences de Paris", + "type": "Child", + "id": "https://ror.org/03t2f0a12" + }, + { + "label": "Physique des Cellules et Cancers", + "type": "Child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "PHENIX laboratory", + "type": "Child", + "id": "https://ror.org/046htjf88" + }, + { + "label": "Biologie du chloroplaste et perception de la lumière chez les micro-algues", + "type": "Child", + "id": "https://ror.org/001r32c80" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "Child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "Child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "Child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "Child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Station Biologique de Roscoff", + "type": "Child", + "id": "https://ror.org/03s0pzj56" + }, + { + "label": "Sciences et Ingénierie de la Matière Molle", + "type": "Child", + "id": "https://ror.org/03f0z1g15" + }, + { + "label": "Chimie du Solide et Energie", + "type": "Child", + "id": "https://ror.org/03s877y45" + }, + { + "label": "Sorbonne - Identités, Relations Internationales et Civilisations de l’Europe", + "type": "Child", + "id": "https://ror.org/03ae8w006" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "Child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Systèmes de Référence Temps-Espace", + "type": "Child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Unité de Modélisation Mathématique et Informatique des Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/053kxkj53" + }, + { + "label": "Laboratoire d’Océanographie de Villefranche", + "type": "Child", + "id": "https://ror.org/05r5y6641" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "Child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre de Recherche sur l'Amérique Pré-hispanique", + "type": "Child", + "id": "https://ror.org/000nfmp17" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "Child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "Child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "Child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "Child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "Child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "Child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Institut de la Vision", + "type": "Child", + "id": "https://ror.org/000zhpw23" + }, + { + "label": "École des Neurosciences de Paris", + "type": "Child", + "id": "https://ror.org/05re0sm29" + }, + { + "label": "Laboratoire atmosphères, milieux, observations spatiales", + "type": "Child", + "id": "https://ror.org/05ppf7q77" + }, + { + "label": "ITER", + "type": "Child", + "id": "https://ror.org/01d7n9638" + }, + { + "label": "UMI MajuLab", + "type": "Child", + "id": "https://ror.org/027jrtw17" + }, + { + "label": "Laboratoire de Physique de l'ENS", + "type": "Child", + "id": "https://ror.org/03a26mh11" + }, + { + "label": "Institut Pierre-Simon Laplace", + "type": "Child", + "id": "https://ror.org/02haar591" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "Child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "UMS-Autonomie", + "type": "Child", + "id": "https://ror.org/01ms54x07" + }, + { + "label": "Edition, Interprétation et traduction des textes anciens", + "type": "Child", + "id": "https://ror.org/015cf0x85" + }, + { + "label": "Centre de Recherches Interdisciplinaires sur les Mondes Ibéro-américains Contemporains", + "type": "Child", + "id": "https://ror.org/006jv0w93" + }, + { + "label": "Centre de Recherches sur l’Extrême Orient de Paris – Sorbonne", + "type": "Child", + "id": "https://ror.org/04vwsc311" + }, + { + "label": "Centre d'histoire du XIXe siècle", + "type": "Child", + "id": "https://ror.org/04hrxxd90" + }, + { + "label": "Métaphysique, histoires, transformations, actualités", + "type": "Child", + "id": "https://ror.org/04sv5r538" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "Child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "Child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "Fédération de recherche en sciences mathématiques de Paris centre", + "type": "Child", + "id": "https://ror.org/02jwwk370" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "Child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "Child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Troubles psychiatriques et développement", + "type": "Child", + "id": "https://ror.org/04nc8v966" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Centre Expert en Endométriose", + "type": "Child", + "id": "https://ror.org/00s0m4j44" + }, + { + "label": "Robotique et Innovation Chirurgicale", + "type": "Child", + "id": "https://ror.org/04shr9s31" + }, + { + "label": "Handicap moteur et cognitif et réadaptation", + "type": "Child", + "id": "https://ror.org/011gr5n11" + }, + { + "label": "Analyse, Recherche, Développement et Evaluation en Endourologie et Lithiase Urinaire", + "type": "Child", + "id": "https://ror.org/03f1mtj27" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Groupe de recherche interdisciplinaire sur les processus d'information et de communication", + "type": "Child", + "id": "https://ror.org/04p8das24" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "Child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Centre de linguistique en Sorbonne", + "type": "Child", + "id": "https://ror.org/02zzf0m94" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Réanimation et soins intensifs du patient en Insuffisance respiratoire aigüe", + "type": "Child", + "id": "https://ror.org/02qvhgb32" + }, + { + "label": "Méthodes et Outils pour les Sciences Participatives", + "type": "Child", + "id": "https://ror.org/05kytrf83" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "Child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Laboratoire Médiations", + "type": "Child", + "id": "https://ror.org/04tb23024" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Transplantation et Thérapies Innovantes de la Cornée", + "type": "Child", + "id": "https://ror.org/02g0s3c07" + }, + { + "label": "Biomarqueurs d’urgence et de réanimation", + "type": "Child", + "id": "https://ror.org/01jnrzt83" + }, + { + "label": "Groupe de REcherche en Cardio Oncologie", + "type": "Child", + "id": "https://ror.org/00b4yme84" + }, + { + "label": "Rome et ses renaissances", + "type": "Child", + "id": "https://ror.org/011hja523" + }, + { + "label": "CERES - Centre d'expérimentation en méthodes numériques pour les recherches en sciences humaines et sociales", + "type": "Child", + "id": "https://ror.org/00fyy4d45" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "Child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Institut des Sciences du Calcul et des Données", + "type": "Child", + "id": "https://ror.org/00y16rm59" + }, + { + "label": "Complications Cardiovasculaires et Métaboliques chez les patients vivant avec le VIH", + "type": "Child", + "id": "https://ror.org/00njafa27" + }, + { + "label": "Groupe de Recherche Clinique en Neuro-urologie", + "type": "Child", + "id": "https://ror.org/05gzcy376" + }, + { + "label": "Alzheimer Precision Medicine", + "type": "Child", + "id": "https://ror.org/058qr4y65" + }, + { + "label": "Onco-Urologie Prédictive", + "type": "Child", + "id": "https://ror.org/0138eq662" + }, + { + "label": "Histoire et Archéologie Maritimes", + "type": "Child", + "id": "https://ror.org/011mac819" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "Child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "Child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénierie des Connaissances en e-Santé", + "type": "Child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Enzymologie de l'ARN", + "type": "Child", + "id": "https://ror.org/05n2mnn68" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "Child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "Child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Histoire et Dynamique des Espaces Anglophones: du Réel au Virtuel", + "type": "Child", + "id": "https://ror.org/03vkkad71" + }, + { + "label": "Étude et Édition de Textes Médiévaux", + "type": "Child", + "id": "https://ror.org/037ptrs19" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Représentations et Identités. Espaces Germanique, Nordique et Néerlandophone", + "type": "Child", + "id": "https://ror.org/053sj3y70" + }, + { + "label": "Centre d'Études Médiévales Anglaises", + "type": "Child", + "id": "https://ror.org/01acw3598" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "Drépanocytose : groupe de Recherche de Paris – Sorbonne Université", + "type": "Child", + "id": "https://ror.org/015tg7676" + }, + { + "label": "IMAGES : La médecine de la femme et de l’enfant assistée par l’image", + "type": "Child", + "id": "https://ror.org/00x677422" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "Child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "Civilisations et littératures d'Espagne et d'Amérique du Moyen-Age aux Lumières", + "type": "Child", + "id": "https://ror.org/04xy2by41" + }, + { + "label": "Sens, Texte, Informatique, Histoire", + "type": "Child", + "id": "https://ror.org/02q5emw59" + }, + { + "label": "Centre de Recherche en Littérature Comparée", + "type": "Child", + "id": "https://ror.org/015th7t48" + }, + { + "label": "Équipe Littérature et Culture italiennes", + "type": "Child", + "id": "https://ror.org/05ntgv723" + }, + { + "label": "Groupe d’Étude sur l’HyperTension Intra Crânienne idiopathique", + "type": "Child", + "id": "https://ror.org/013s2ts57" + }, + { + "label": "Groupe de recherche clinique en anesthésie réanimation médecine périopératoire", + "type": "Child", + "id": "https://ror.org/02zn90974" + }, + { + "label": "Groupe de recherche clinique – Tumeurs Thyroïdiennes", + "type": "Child", + "id": "https://ror.org/04n40rk24" + }, + { + "label": "THERANOSCAN : Biomarqueurs Théranostiques des Cancers Bronchiques Non à Petites Cellules", + "type": "Child", + "id": "https://ror.org/02qe0rk31" + }, + { + "label": "Groupe de recherche clinique Amylose AA Sorbonne Université", + "type": "Child", + "id": "https://ror.org/01zpxh127" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "Child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "NeurON : Interface Neuro-machine", + "type": "Child", + "id": "https://ror.org/00a8q8z31" + }, + { + "label": "PremUP", + "type": "Child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "Child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Voix Anglophones : Littérature et Esthétique", + "type": "Child", + "id": "https://ror.org/02m26fm05" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "Child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Remodelage et Reparation du Tissu Renal", + "type": "Child", + "id": "https://ror.org/01sra1980" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "Child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Child", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Related", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "European Marine Biological Resource Centre", + "type": "Related", + "id": "https://ror.org/0038zss60" + }, + { + "label": "Hôpital Armand-Trousseau", + "type": "Related", + "id": "https://ror.org/00yfbr841" + }, + { + "label": "Hôpital Tenon", + "type": "Related", + "id": "https://ror.org/05h5v3c50" + }, + { + "label": "Hôpital Charles-Foix", + "type": "Related", + "id": "https://ror.org/04v3xcy66" + }, + { + "label": "Hôpital Rothschild", + "type": "Related", + "id": "https://ror.org/009kb8w74" + }, + { + "label": "Hôpital Saint-Antoine", + "type": "Related", + "id": "https://ror.org/01875pg84" + }, + { + "label": "Pitié-Salpêtrière Hospital", + "type": "Related", + "id": "https://ror.org/02mh9a093" + }, + { + "label": "Hôpital de la Roche-Guyon", + "type": "Related", + "id": "https://ror.org/02t1zz428" + }, + { + "label": "Centre hospitalier national d'ophtalmologie des Quinze-Vingts", + "type": "Related", + "id": "https://ror.org/024v1ns19" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sorbonne-universite.fr" + ], + "aliases": [ + "Pierre and Marie Curie University", + "University of Paris-Sorbonne" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Sorbonne_University", + "labels": [ + { + "label": "Sorbonne University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005737", + "501100019125", + "100012946" + ], + "preferred": "501100019125" + }, + "GRID": { + "all": "grid.462844.8", + "preferred": "grid.462844.8" + }, + "ISNI": { + "all": [ + "0000 0001 2308 1657" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q41497113", + "Q3491150", + "Q546118", + "Q1144549" + ], + "preferred": "Q41497113" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02feahw73.json b/v1.52/v1/02feahw73.json new file mode 100644 index 000000000..aba669bf7 --- /dev/null +++ b/v1.52/v1/02feahw73.json @@ -0,0 +1,2006 @@ +{ + "id": "https://ror.org/02feahw73", + "name": "Centre National de la Recherche Scientifique", + "email_address": null, + "ip_addresses": [], + "established": 1939, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre de Recherche en Cancérologie de Toulouse", + "type": "Child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Centre Max Weber", + "type": "Child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "Child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "Child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Child", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Direction Générale Déléguée à la Science", + "type": "Child", + "id": "https://ror.org/043nepn57" + }, + { + "label": "Délégation Bretagne et Pays de la Loire", + "type": "Child", + "id": "https://ror.org/02t220m45" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "Child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Image and Pervasive Access Laboratory", + "type": "Child", + "id": "https://ror.org/00m3mb357" + }, + { + "label": "Institut Clément Ader", + "type": "Child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Institut Français d'Études Anatoliennes", + "type": "Child", + "id": "https://ror.org/0331qyx19" + }, + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "Child", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "Child", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "Child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Chimie", + "type": "Child", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Institut de Physique", + "type": "Child", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "Child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Child", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Child", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "Child", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "CNRS Ingénierie", + "type": "Child", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Child", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institut de Mécanique et d'Ingénierie", + "type": "Child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Aménagement Économie Transports", + "type": "Child", + "id": "https://ror.org/01yw97595" + }, + { + "label": "Laboratoire d'Annecy-le-Vieux de Physique Théorique", + "type": "Child", + "id": "https://ror.org/010hz2d37" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "Child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "Child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratoire Souterrain à Bas Bruit", + "type": "Child", + "id": "https://ror.org/05gscwg02" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Réseau sur le Stockage Electrochimique de l'énergie", + "type": "Child", + "id": "https://ror.org/00190j002" + }, + { + "label": "CEA Paris-Saclay - Etablissement de Saclay", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Synchrotron soleil", + "type": "Child", + "id": "https://ror.org/01ydb3330" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "Child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Histoire Judiciaire", + "type": "Child", + "id": "https://ror.org/00g32ep81" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "Child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "Child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "AERIS/ICARE Data and Services Center", + "type": "Child", + "id": "https://ror.org/013z99a51" + }, + { + "label": "Institut de Recherche sur les Composants logiciels et matériels pour l'Information et la Communication Avancée", + "type": "Child", + "id": "https://ror.org/010nk4c68" + }, + { + "label": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "type": "Child", + "id": "https://ror.org/04f5rw142" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Arènes: politique, santé publique, environnement, médias", + "type": "Child", + "id": "https://ror.org/00m4rxj18" + }, + { + "label": "Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "Institut de génétique et de développement de Rennes", + "type": "Child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "Child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "Child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "Child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Ethologie animale et humaine", + "type": "Child", + "id": "https://ror.org/02evk6c51" + }, + { + "label": "Laboratoire d'études de genre et de sexualité", + "type": "Child", + "id": "https://ror.org/005w2mm89" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "Child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Institut de l'Ouest : Droit et Europe", + "type": "Child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Maison des Sciences de l'Homme Mondes", + "type": "Child", + "id": "https://ror.org/00wx1mx58" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Centre Émile Durkheim", + "type": "Child", + "id": "https://ror.org/01k7w0p97" + }, + { + "label": "Laboratoire de Mathématiques de Besançon", + "type": "Child", + "id": "https://ror.org/04nrhwg12" + }, + { + "label": "Laboratoire architecture anthropologie", + "type": "Child", + "id": "https://ror.org/05wy2cj05" + }, + { + "label": "Biologie du Développement et Cellules Souches", + "type": "Child", + "id": "https://ror.org/02af93v77" + }, + { + "label": "Centre de recherche sur les Inégalités Sociales", + "type": "Child", + "id": "https://ror.org/02a4c5q78" + }, + { + "label": "Centre International de Rencontres Mathématiques", + "type": "Child", + "id": "https://ror.org/04e3d6y73" + }, + { + "label": "Musée Curie", + "type": "Child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Architecture, Milieu, Paysage", + "type": "Child", + "id": "https://ror.org/048289s82" + }, + { + "label": "Géographie de l'environnement", + "type": "Child", + "id": "https://ror.org/01p4g5p84" + }, + { + "label": "Geo-Ocean", + "type": "Child", + "id": "https://ror.org/007dbrz84" + }, + { + "label": "Centre d'Études et de Recherches sur le Développement International", + "type": "Child", + "id": "https://ror.org/01hg13988" + }, + { + "label": "Laboratoire d'Acoustique de l'Université du Mans", + "type": "Child", + "id": "https://ror.org/001aevc89" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "Child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Laboratoire de Médiévistique Occidentale de Paris", + "type": "Child", + "id": "https://ror.org/00z0af360" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "Child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Laboratoire d'Ecologie des Hydrosystèmes Naturels et Anthropisés", + "type": "Child", + "id": "https://ror.org/05pny1q12" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Centre de droit comparé du travail et de la sécurité sociale", + "type": "Child", + "id": "https://ror.org/041ctrc20" + }, + { + "label": "Enzyme and Cell Engineering - Molecular Recognition and Biocatalysis", + "type": "Child", + "id": "https://ror.org/001tmq304" + }, + { + "label": "Sciences pour l'Environnement", + "type": "Child", + "id": "https://ror.org/016nwev19" + }, + { + "label": "Laboratoire Morphodynamique Continentale et Côtière", + "type": "Child", + "id": "https://ror.org/05k1a6w82" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "Child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Langues et Civilisations à Tradition Orale", + "type": "Child", + "id": "https://ror.org/025esck76" + }, + { + "label": "Laboratoire de Mathématiques Nicolas Oresme", + "type": "Child", + "id": "https://ror.org/03jm2hc44" + }, + { + "label": "Centre d'études sociologiques et politiques Raymond-Aron", + "type": "Child", + "id": "https://ror.org/04aq4ab28" + }, + { + "label": "Laboratoire Caribéen de Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00srrcb42" + }, + { + "label": "Laboratoire de Physique Théorique et Modélisation", + "type": "Child", + "id": "https://ror.org/05nhcdk38" + }, + { + "label": "Institut des sciences juridique et philosophique de la Sorbonne", + "type": "Child", + "id": "https://ror.org/0041am420" + }, + { + "label": "RIATE - Centre pour l'analyse spatiale et la géovisualisation", + "type": "Child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "France, Amériques, Espagne, Sociétés, Pouvoirs, Acteurs", + "type": "Child", + "id": "https://ror.org/04daj8721" + }, + { + "label": "Laboratoire des Fluides Complexes et leurs Réservoirs", + "type": "Child", + "id": "https://ror.org/03dg47v24" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "Child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Maison des Sciences de l'Homme et de la Société Sud-Est", + "type": "Child", + "id": "https://ror.org/02ygac863" + }, + { + "label": "Maison Asie Pacifique", + "type": "Child", + "id": "https://ror.org/03e2syc87" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "Child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "Center for Mathematical Modeling", + "type": "Child", + "id": "https://ror.org/00wz2vk41" + }, + { + "label": "Service des Avions Français Instrumentés pour la Recherche en Environnement", + "type": "Child", + "id": "https://ror.org/02qdgbw61" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "Child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "Child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Archéologie des Sociétés Méditerranéennes", + "type": "Child", + "id": "https://ror.org/04n9eyw42" + }, + { + "label": "Laboratoire de Microbiologie Fondamentale et Pathogénicité", + "type": "Child", + "id": "https://ror.org/03e4tg734" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Praxiling", + "type": "Child", + "id": "https://ror.org/03ym2w748" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "Child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Centre d'études franco-russe de Moscou", + "type": "Child", + "id": "https://ror.org/00zmdjj30" + }, + { + "label": "Centre d'Études et de Documentation Économiques, Juridiques et sociales", + "type": "Child", + "id": "https://ror.org/008bf9746" + }, + { + "label": "Maison Française d'Oxford", + "type": "Child", + "id": "https://ror.org/022psxk94" + }, + { + "label": "Centre de recherche français à Jérusalem", + "type": "Child", + "id": "https://ror.org/04ahb2147" + }, + { + "label": "Centre d'études Alexandrines", + "type": "Child", + "id": "https://ror.org/02km70587" + }, + { + "label": "Institut français du Proche-Orient", + "type": "Child", + "id": "https://ror.org/02t9nm044" + }, + { + "label": "Institut français d'études sur l'Asie centrale", + "type": "Child", + "id": "https://ror.org/026t9b832" + }, + { + "label": "Lieux, Identités, eSpaces, Activités", + "type": "Child", + "id": "https://ror.org/00nbhg292" + }, + { + "label": "Ecology and Conservation Science for Sustainable Seas", + "type": "Child", + "id": "https://ror.org/021zcv334" + }, + { + "label": "AMURE - Centre de droit et d'économie de la mer", + "type": "Child", + "id": "https://ror.org/00ss0a232" + }, + { + "label": "Maison méditerranéenne des sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/01ejp3f31" + }, + { + "label": "Centre Franco-Égyptien d’Étude des Temples de Karnak", + "type": "Child", + "id": "https://ror.org/0502mw613" + }, + { + "label": "Centre de Recherche sur la Conservation", + "type": "Child", + "id": "https://ror.org/05q3pap39" + }, + { + "label": "Institut d'Histoire du Droit Jean Gaudemet", + "type": "Child", + "id": "https://ror.org/04j9ztm78" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "Child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Observatoire de Recherche Montpelliérain de l'Environnement OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "Child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Savoirs et Mondes Indiens", + "type": "Child", + "id": "https://ror.org/04gxn9h90" + }, + { + "label": "Laboratoire de Mathématiques de Reims", + "type": "Child", + "id": "https://ror.org/01xkfnd03" + }, + { + "label": "Centre Michel de Boüard", + "type": "Child", + "id": "https://ror.org/03rnz7p05" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "Child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "Child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Sommeil, Addiction et Neuropsychiatrie", + "type": "Child", + "id": "https://ror.org/04k8wt746" + }, + { + "label": "Plateforme d'Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/05r25mc45" + }, + { + "label": "TBM-Core", + "type": "Child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Génomique évolutive, modélisation et santé", + "type": "Child", + "id": "https://ror.org/026ddbz68" + }, + { + "label": "Takuvik Joint International Laboratory", + "type": "Child", + "id": "https://ror.org/04bzgtz06" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Bordeaux Imaging Center", + "type": "Child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "Child", + "id": "https://ror.org/034bena10" + }, + { + "label": "CEPN - Centre d'Economie de l'Université Paris Nord", + "type": "Child", + "id": "https://ror.org/03k32n603" + }, + { + "label": "Chimie, Structures et Propriétés de Biomatériaux et d'Agents Thérapeutiques", + "type": "Child", + "id": "https://ror.org/0343fpq57" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "Child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Laboratoire écologie, évolution, interactions des systèmes amazoniens", + "type": "Child", + "id": "https://ror.org/00gj7r351" + }, + { + "label": "STELLA MARE", + "type": "Child", + "id": "https://ror.org/040r8ry56" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "Child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Bases de données sur la Biodiversité, Ecologie, Environnement et Sociétés", + "type": "Child", + "id": "https://ror.org/034gk7456" + }, + { + "label": "DMEX Centre for X-ray Imaging", + "type": "Child", + "id": "https://ror.org/0213f8g15" + }, + { + "label": "Unité en Sciences Biologiques et Biotechnologies de Nantes", + "type": "Child", + "id": "https://ror.org/05ef4v550" + }, + { + "label": "Matrice Extracellulaire et Dynamique Cellulaire MEDyC", + "type": "Child", + "id": "https://ror.org/017p6sq53" + }, + { + "label": "Institut de Recherche sur la Biologie de l'Insecte UMR 7261", + "type": "Child", + "id": "https://ror.org/04rp2mn26" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "Child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "Laboratoire Ligérien de Linguistique", + "type": "Child", + "id": "https://ror.org/04s6f1186" + }, + { + "label": "Droit International Comparé et Européen", + "type": "Child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Lasers, Plasmas et Procédés Photoniques", + "type": "Child", + "id": "https://ror.org/01qfjp710" + }, + { + "label": "Centre universitaire de recherches sur l'Action Publique et le Politique Épistémologie & Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00rxdng69" + }, + { + "label": "Centre Gilles-Gaston Granger", + "type": "Child", + "id": "https://ror.org/00axatv03" + }, + { + "label": "Irasia Recherche", + "type": "Child", + "id": "https://ror.org/03bcyhr16" + }, + { + "label": "Institut de Recherches et d'Etudes sur les Mondes Arabes et Musulmans", + "type": "Child", + "id": "https://ror.org/037f3ga09" + }, + { + "label": "Laboratoire d'Archéologie Médiévale et Moderne en Méditerranée", + "type": "Child", + "id": "https://ror.org/05tb4mb78" + }, + { + "label": "Institut d'ethnologie méditerranéenne européenne et comparative", + "type": "Child", + "id": "https://ror.org/050gdsq06" + }, + { + "label": "Temps, espaces, langages, Europe méridionale, Méditerranée", + "type": "Child", + "id": "https://ror.org/010bhn875" + }, + { + "label": "Matériaux Divisés, Interfaces, Réactivité, Electrochimie", + "type": "Child", + "id": "https://ror.org/00m587853" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Macromoléculaires", + "type": "Child", + "id": "https://ror.org/02hwc1z56" + }, + { + "label": "Centre d'études supérieures de civilisation médiévale", + "type": "Child", + "id": "https://ror.org/005hw9085" + }, + { + "label": "Laboratoire de Mathématiques et Applications", + "type": "Child", + "id": "https://ror.org/02p2rk609" + }, + { + "label": "Laboratoire Interdisciplinaire de Recherches \"Sociétés, Sensibilités, Soin\"", + "type": "Child", + "id": "https://ror.org/01rb31945" + }, + { + "label": "Centre d’études en sciences sociales du religieux", + "type": "Child", + "id": "https://ror.org/01kysxr05" + }, + { + "label": "Trajectoires. De la sédentarisation à l’État", + "type": "Child", + "id": "https://ror.org/03wdx6c48" + }, + { + "label": "Structure et Dynamique des Langues", + "type": "Child", + "id": "https://ror.org/019df2r84" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "Child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Laboratoire Information Génomique et Structurale", + "type": "Child", + "id": "https://ror.org/05v0fms67" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "Child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Chimie Biologique pour le Vivant", + "type": "Child", + "id": "https://ror.org/03cjyj977" + }, + { + "label": "Biologie Moléculaire Structurale et Processus Infectieux", + "type": "Child", + "id": "https://ror.org/009b91528" + }, + { + "label": "Centre de Recherche d'Albi en génie des Procédés, des SOlides Divisés, de l'Énergie et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03cxnrt47" + }, + { + "label": "Acquisition et Analyse de Données pour l'Histoire naturelle", + "type": "Child", + "id": "https://ror.org/05qhnf349" + }, + { + "label": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "Child", + "id": "https://ror.org/00t7axd27" + }, + { + "label": "Chronobiotron", + "type": "Child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Observatoire pour la Conservation de la Mégafaune Marine", + "type": "Child", + "id": "https://ror.org/04wbg2z51" + }, + { + "label": "Architecture Histoire Technique Territoire Patrimoine", + "type": "Child", + "id": "https://ror.org/05j8sgr10" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "Child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Maison des Sciences de l'Homme Val de Loire", + "type": "Child", + "id": "https://ror.org/03v4gsj38" + }, + { + "label": "GeoRessources", + "type": "Child", + "id": "https://ror.org/04mq2px33" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Observatoire Terre et environnement de Lorraine", + "type": "Child", + "id": "https://ror.org/02cyw3861" + }, + { + "label": "Huma-Num", + "type": "Child", + "id": "https://ror.org/04ces3204" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "Child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Laboratoire de Mathématiques et Modélisation d'Évry", + "type": "Child", + "id": "https://ror.org/03jca6281" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie Biologie Innovation", + "type": "Child", + "id": "https://ror.org/04bgzse17" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "Child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "Child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "Child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "Child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "CALMIP", + "type": "Child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Plateforme de chimie biologique intégrative de Strasbourg", + "type": "Child", + "id": "https://ror.org/052pqt102" + }, + { + "label": "LINK - Laboratory for Innovative Key Materials and Structures", + "type": "Child", + "id": "https://ror.org/03qt6f440" + }, + { + "label": "OpenEdition Center", + "type": "Child", + "id": "https://ror.org/02aja8v82" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Laboratoire de Chimie-Physique Macromoléculaire", + "type": "Child", + "id": "https://ror.org/0371yc337" + }, + { + "label": "Centre pour les humanités numériques et l'histoire de la justice", + "type": "Child", + "id": "https://ror.org/02yvha224" + }, + { + "label": "AlgoSolis", + "type": "Child", + "id": "https://ror.org/05481me13" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "Child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Passages", + "type": "Child", + "id": "https://ror.org/00s40r567" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "Child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "Child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Climat, Environnement, Couplages et Incertitudes", + "type": "Child", + "id": "https://ror.org/05t8ct211" + }, + { + "label": "Laboratoire de Linguistique de Nantes", + "type": "Child", + "id": "https://ror.org/0009eec40" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "Child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "Child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "Child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "Child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "ScanMAT", + "type": "Child", + "id": "https://ror.org/04fsxy317" + }, + { + "label": "PatriNat", + "type": "Child", + "id": "https://ror.org/037eda396" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "Child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Institut Denis Poisson", + "type": "Child", + "id": "https://ror.org/05djhd259" + }, + { + "label": "Temps, Mondes, Sociétés", + "type": "Child", + "id": "https://ror.org/01nhp3z94" + }, + { + "label": "Laboratoire Lorrain de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/020azc393" + }, + { + "label": "Laboratoire de Physique et Chimie Théoriques", + "type": "Child", + "id": "https://ror.org/02atkd403" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Vision pour la Robotique", + "type": "Child", + "id": "https://ror.org/02v6phz91" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "Child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Epigenetics, Data, Politics", + "type": "Child", + "id": "https://ror.org/00rg8bd79" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Centre Neurosciences intégratives et Cognition", + "type": "Child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "Child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "Child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire interdisciplinaire d’études sur les réflexivités - Fonds Yan Thomas", + "type": "Child", + "id": "https://ror.org/046dap961" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "Child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Light, nanomaterials, nanotechnologies", + "type": "Child", + "id": "https://ror.org/01waxag60" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "Child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Centre de recherche sur le monde iranien", + "type": "Child", + "id": "https://ror.org/0302qeq32" + }, + { + "label": "RESTORE", + "type": "Child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "Child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "Child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "Child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Transitions Energétiques et Environnementales", + "type": "Child", + "id": "https://ror.org/04cms1b08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "Child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "Child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Bordeaux Sciences Économiques", + "type": "Child", + "id": "https://ror.org/014vz2d20" + }, + { + "label": "Microscopies, imageries et ressources analytiques en région Centre-Val de Loire", + "type": "Child", + "id": "https://ror.org/050x42563" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "Child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Catalyse, Polymérisation, Procédés et Matériaux", + "type": "Child", + "id": "https://ror.org/02f6tst70" + }, + { + "label": "Fédération de recherche Matière et Interactions", + "type": "Child", + "id": "https://ror.org/02wq1s711" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "Child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "Child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "Child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "Child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "Child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "Child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "Child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "Child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "Child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "Child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "Child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "Child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Archéologie, Terre, Histoire, Sociétés", + "type": "Child", + "id": "https://ror.org/011hdpx94" + }, + { + "label": "Institut de Chimie Moléculaire de l'Université de Bourgogne", + "type": "Child", + "id": "https://ror.org/011ygpb73" + }, + { + "label": "Institut Chevreul", + "type": "Child", + "id": "https://ror.org/048k52v18" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "Child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "Laboratoire Ondes et Milieux Complexes", + "type": "Child", + "id": "https://ror.org/02sb3b652" + }, + { + "label": "Centre de Nanosciences et de Nanotechnologies", + "type": "Child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Département de mathématiques et applications", + "type": "Child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "Child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "Child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Intégrité du génome, ARN et cancer", + "type": "Child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "Child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "Child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "Child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "Child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "Child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut de Biologie Intégrative de la Cellule", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "Child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "Child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "Child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "Child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratoire de Physique Théorique et Modèles Statistiques", + "type": "Child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "Child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "Child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "Child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratoire Leprince-Ringuet", + "type": "Child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "Laboratoire de Recherche sur la Croissance Cellulaire, la Réparation et la Régénération Tissulaires", + "type": "Child", + "id": "https://ror.org/041dsyz88" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Laboratoire interdisciplinaire en études culturelles", + "type": "Child", + "id": "https://ror.org/03820wq39" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "Child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Centre de Recherche en Économie et Management", + "type": "Child", + "id": "https://ror.org/0047rmf80" + }, + { + "label": "Institut de Physique de Rennes", + "type": "Child", + "id": "https://ror.org/022b0h879" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "Child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Pacte", + "type": "Child", + "id": "https://ror.org/026j45x50" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "Child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Institut Carnot PolyNat", + "type": "Child", + "id": "https://ror.org/047p7mf25" + }, + { + "label": "Centre de Recherche et de Documentation sur l'Océanie (CREDO)", + "type": "Child", + "id": "https://ror.org/00jj62164" + }, + { + "label": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "type": "Child", + "id": "https://ror.org/005yfhm28" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "Child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "Child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Laboratoire Interdisciplinaire de Physique", + "type": "Child", + "id": "https://ror.org/023n9q531" + }, + { + "label": "Centre d'études sud-asiatiques et himalayennes", + "type": "Child", + "id": "https://ror.org/039bex249" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "Child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Techniques, Territoires et Sociétés", + "type": "Child", + "id": "https://ror.org/05fc1hn07" + }, + { + "label": "Laboratoire Navier", + "type": "Child", + "id": "https://ror.org/029hkd614" + }, + { + "label": "Imagerie et Stratégies Thérapeutiques pour les Cancers et Tissus cérébraux", + "type": "Child", + "id": "https://ror.org/04b9vs620" + }, + { + "label": "Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scène", + "type": "Child", + "id": "https://ror.org/055q9jt53" + }, + { + "label": "Laboratory of Pathogens and Host Immunity", + "type": "Child", + "id": "https://ror.org/00rt27171" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Child", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Maison des sciences de l'homme Lorraine", + "type": "Child", + "id": "https://ror.org/01petg633" + }, + { + "label": "Institut de Biologie Moléculaire et Cellulaire", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Centre d'Anthropobiologie et de Génomique de Toulouse", + "type": "Child", + "id": "https://ror.org/045p8nc06" + }, + { + "label": "Haute Technologie Animale Grenobloise", + "type": "Child", + "id": "https://ror.org/03vyv3y87" + }, + { + "label": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "type": "Child", + "id": "https://ror.org/0535cbn94" + }, + { + "label": "Institut Universitaire Européen de la Mer", + "type": "Child", + "id": "https://ror.org/04pfr1b11" + }, + { + "label": "Indo-French Centre for Applied Mathematics", + "type": "Child", + "id": "https://ror.org/05rnj8444" + }, + { + "label": "Institut d'Études Scientifiques de Cargèse", + "type": "Child", + "id": "https://ror.org/044mrv955" + }, + { + "label": "Groupe de Recherche en Management", + "type": "Child", + "id": "https://ror.org/023cs7p87" + }, + { + "label": "Centre de Radiofréquences, Optique et Micro-nanoélectronique des Alpes", + "type": "Child", + "id": "https://ror.org/050rs7291" + }, + { + "label": "Modèles et simulations pour l'Architecture et le Patrimoine", + "type": "Child", + "id": "https://ror.org/050a1gn71" + }, + { + "label": "Centre de Recherche sur la Biodiversité et l'Environnement", + "type": "Child", + "id": "https://ror.org/03v2c3v44" + }, + { + "label": "Structure Fédérative de Recherche Santé Lyon Est", + "type": "Child", + "id": "https://ror.org/05dh21g53" + }, + { + "label": "UMR Géographie-cités", + "type": "Related", + "id": "https://ror.org/05yqfzf35" + }, + { + "label": "Campus Condorcet", + "type": "Related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "Institut Montpelliérain Alexander Grothendieck", + "type": "Related", + "id": "https://ror.org/044kxby82" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Institut des Sciences des Plantes de Montpellier", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Maison des Sciences de l'Homme SUD", + "type": "Child", + "id": "https://ror.org/05s6hm275" + }, + { + "label": "Interactions, Corpus, Apprentissages, Représentations", + "type": "Child", + "id": "https://ror.org/04mn0nr69" + }, + { + "label": "Laboratoire Dynamique du Langage", + "type": "Child", + "id": "https://ror.org/01fvx3s14" + }, + { + "label": "Histoire, Archéologie, Littératures des Mondes Chrétiens et Musulmans Médiévaux", + "type": "Child", + "id": "https://ror.org/05mqwtr17" + }, + { + "label": "BioCampus Montpellier", + "type": "Child", + "id": "https://ror.org/04x7ec535" + }, + { + "label": "Archéologie et Archéométrie", + "type": "Child", + "id": "https://ror.org/02bq56641" + }, + { + "label": "Archéorient", + "type": "Child", + "id": "https://ror.org/059xs3104" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CNRS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Centre_national_de_la_recherche_scientifique", + "labels": [ + { + "label": "French National Centre for Scientific Research", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004794" + ], + "preferred": null + }, + "GRID": { + "all": "grid.4444.0", + "preferred": "grid.4444.0" + }, + "ISNI": { + "all": [ + "0000 0001 2259 7504" + ], + "preferred": "0000 0001 2259 7504" + }, + "Wikidata": { + "all": [ + "Q280413", + "Q39411466" + ], + "preferred": "Q280413" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02fjgwn28.json b/v1.52/v1/02fjgwn28.json new file mode 100644 index 000000000..fe3c6f600 --- /dev/null +++ b/v1.52/v1/02fjgwn28.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02fjgwn28", + "name": "Escuela Normal Rural \"Justo Sierra Méndez\"", + "email_address": null, + "ip_addresses": [], + "established": 1937, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.88234, + "lng": -102.28259, + "state": null, + "state_code": null, + "city": "Aguascalientes", + "geonames_city": { + "id": 4019233, + "city": "Aguascalientes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.enrjsm.edu.mx" + ], + "aliases": [ + "Escuela Normal Rural Justo Sierra Méndez" + ], + "acronyms": [ + "ENRJSM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q114312336" + ], + "preferred": "Q114312336" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02fke9256.json b/v1.52/v1/02fke9256.json new file mode 100644 index 000000000..1f9e6b54c --- /dev/null +++ b/v1.52/v1/02fke9256.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02fke9256", + "name": "Laboratoire de Mécanique et Génie Civil", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lmgc.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "LMGC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503312.6", + "preferred": "grid.503312.6" + }, + "ISNI": { + "all": [ + "0000 0004 0609 831X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51782347" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02ftce284.json b/v1.52/v1/02ftce284.json new file mode 100644 index 000000000..4f6779482 --- /dev/null +++ b/v1.52/v1/02ftce284.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/02ftce284", + "name": "Laboratoire Charles Coulomb", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://coulomb.umontpellier.fr" + ], + "aliases": [ + "UMR 5221" + ], + "acronyms": [ + "L2C" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462669.9", + "preferred": "grid.462669.9" + }, + "ISNI": { + "all": [ + "0000 0004 4687 2402" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02fty0943.json b/v1.52/v1/02fty0943.json new file mode 100644 index 000000000..7f10a1add --- /dev/null +++ b/v1.52/v1/02fty0943.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02fty0943", + "name": "Great Lakes Indian Fish & Wildlife Commission", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.60828, + "lng": -90.69685, + "state": null, + "state_code": null, + "city": "Odanah", + "geonames_city": { + "id": 5265548, + "city": "Odanah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://glifwc.org" + ], + "aliases": [ + "Great Lakes Indian Fish and Wildlife Commission" + ], + "acronyms": [ + "GLIFWC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Great_Lakes_Indian_Fish_%26_Wildlife_Commission", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0266 6429" + ], + "preferred": "0000 0001 0266 6429" + }, + "Wikidata": { + "all": [ + "Q5599455" + ], + "preferred": "Q5599455" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02g0s4z48.json b/v1.52/v1/02g0s4z48.json new file mode 100644 index 000000000..3f3d04d4f --- /dev/null +++ b/v1.52/v1/02g0s4z48.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02g0s4z48", + "name": "Harrisburg University of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.2737, + "lng": -76.88442, + "state": null, + "state_code": null, + "city": "Harrisburg", + "geonames_city": { + "id": 5192726, + "city": "Harrisburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.harrisburgu.edu" + ], + "aliases": [], + "acronyms": [ + "HU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Harrisburg_University_of_Science_and_Technology", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.256835.f", + "preferred": "grid.256835.f" + }, + "ISNI": { + "all": [ + "0000 0004 0609 3260" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5665307" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02g1jdz81.json b/v1.52/v1/02g1jdz81.json new file mode 100644 index 000000000..08fa4bbdc --- /dev/null +++ b/v1.52/v1/02g1jdz81.json @@ -0,0 +1,72 @@ +{ + "id": "https://ror.org/02g1jdz81", + "name": "Al Hikma University", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 15.35472, + "lng": 44.20667, + "state": null, + "state_code": null, + "city": "Sanaa", + "geonames_city": { + "id": 71137, + "city": "Sanaa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hikma.edu.ye" + ], + "aliases": [ + "Hikma University", + "جامعة الحكمة" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Yemen", + "country_code": "YE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02g5p4n58.json b/v1.52/v1/02g5p4n58.json new file mode 100644 index 000000000..fb32f59e0 --- /dev/null +++ b/v1.52/v1/02g5p4n58.json @@ -0,0 +1,138 @@ +{ + "id": "https://ror.org/02g5p4n58", + "name": "AbbVie (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "AbbVie (Bahamas)", + "type": "Child", + "id": "https://ror.org/024e28c54" + }, + { + "label": "AbbVie (Bermuda)", + "type": "Child", + "id": "https://ror.org/049pb5632" + }, + { + "label": "AbbVie (Germany)", + "type": "Child", + "id": "https://ror.org/03538jp08" + }, + { + "label": "AbbVie (Ireland)", + "type": "Child", + "id": "https://ror.org/00g7fhp37" + }, + { + "label": "AbbVie (Netherlands)", + "type": "Child", + "id": "https://ror.org/01qa0ew63" + }, + { + "label": "AbbVie (Spain)", + "type": "Child", + "id": "https://ror.org/04p6dqe59" + }, + { + "label": "AbbVie (United Kingdom)", + "type": "Child", + "id": "https://ror.org/04tnbfn25" + }, + { + "label": "AbbVie (Japan)", + "type": "Child", + "id": "https://ror.org/036wkxc84" + }, + { + "label": "AbbVie (Australia)", + "type": "Child", + "id": "https://ror.org/00t09mq63" + } + ], + "addresses": [ + { + "lat": 42.32558, + "lng": -87.84118, + "state": null, + "state_code": null, + "city": "North Chicago", + "geonames_city": { + "id": 4903862, + "city": "North Chicago", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.abbvie.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/AbbVie", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006483" + ], + "preferred": null + }, + "GRID": { + "all": "grid.431072.3", + "preferred": "grid.431072.3" + }, + "ISNI": { + "all": [ + "0000 0004 0572 4227" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q14662364" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02gh4kt33.json b/v1.52/v1/02gh4kt33.json new file mode 100644 index 000000000..ddb4666dc --- /dev/null +++ b/v1.52/v1/02gh4kt33.json @@ -0,0 +1,190 @@ +{ + "id": "https://ror.org/02gh4kt33", + "name": "National Institute for Astrophysics", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Arcetri Astrophysical Observatory", + "type": "Child", + "id": "https://ror.org/00fbze943" + }, + { + "label": "Astronomical Observatory of Capodimonte", + "type": "Child", + "id": "https://ror.org/02fwden70" + }, + { + "label": "Astronomical Observatory of Rome", + "type": "Child", + "id": "https://ror.org/02hnp4676" + }, + { + "label": "Brera Astronomical Observatory", + "type": "Child", + "id": "https://ror.org/02kx1hs47" + }, + { + "label": "Collurania Teramo Observatory", + "type": "Child", + "id": "https://ror.org/02ttb5s67" + }, + { + "label": "Institute for Space Astrophysics and Planetology", + "type": "Child", + "id": "https://ror.org/0141xw169" + }, + { + "label": "Istituto di Astrofisica Spaziale e Fisica Cosmica di Milano", + "type": "Child", + "id": "https://ror.org/01jgp6d54" + }, + { + "label": "Istituto di Astrofisica Spaziale e Fisica cosmica di Palermo", + "type": "Child", + "id": "https://ror.org/03qafph14" + }, + { + "label": "Istituto di Radioastronomia di Bologna", + "type": "Child", + "id": "https://ror.org/029st3z03" + }, + { + "label": "Osservatorio Astrofisico di Catania", + "type": "Child", + "id": "https://ror.org/02my7ff12" + }, + { + "label": "Osservatorio Astrofisico di Torino", + "type": "Child", + "id": "https://ror.org/00yrf4e35" + }, + { + "label": "Osservatorio Astronomico di Cagliari", + "type": "Child", + "id": "https://ror.org/045dz8764" + }, + { + "label": "Osservatorio Astronomico di Padova", + "type": "Child", + "id": "https://ror.org/04z3y3f62" + }, + { + "label": "Osservatorio Astronomico di Palermo", + "type": "Child", + "id": "https://ror.org/02txwfx92" + }, + { + "label": "Telescopio Nazionale Galileo", + "type": "Child", + "id": "https://ror.org/054y9c036" + }, + { + "label": "Trieste Astronomical Observatory", + "type": "Child", + "id": "https://ror.org/00c9gth79" + }, + { + "label": "Osservatorio di Astrofisica e Scienza dello Spazio", + "type": "Child", + "id": "https://ror.org/00gqsp710" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.inaf.it/en" + ], + "aliases": [], + "acronyms": [ + "INAF" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/INAF", + "labels": [ + { + "label": "Istituto Nazionale di Astrofisica", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005184" + ], + "preferred": null + }, + "GRID": { + "all": "grid.4293.c", + "preferred": "grid.4293.c" + }, + "ISNI": { + "all": [ + "0000 0004 1792 8585" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q542656" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02gz4qm35.json b/v1.52/v1/02gz4qm35.json new file mode 100644 index 000000000..160378d4d --- /dev/null +++ b/v1.52/v1/02gz4qm35.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02gz4qm35", + "name": "Thames Valley Air Ambulance", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.65831, + "lng": -0.8974, + "state": null, + "state_code": null, + "city": "Stokenchurch", + "geonames_city": { + "id": 2636844, + "city": "Stokenchurch", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tvairambulance.org.uk" + ], + "aliases": [], + "acronyms": [ + "TVAA" + ], + "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.52/v1/02h21fy63.json b/v1.52/v1/02h21fy63.json new file mode 100644 index 000000000..da9514065 --- /dev/null +++ b/v1.52/v1/02h21fy63.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02h21fy63", + "name": "Swiss Academy of Engineering Sciences SATW", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Swiss Academies of Arts and Sciences", + "type": "Parent", + "id": "https://ror.org/05b2r4b98" + } + ], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.satw.ch" + ], + "aliases": [ + "Swiss Academy of Engineering Sciences" + ], + "acronyms": [ + "SATW" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Schweizerische_Akademie_der_Technischen_Wissenschaften", + "labels": [ + { + "label": "Académie suisse des sciences techniques", + "iso639": "fr" + }, + { + "label": "Accademia svizzera delle scienze tecniche", + "iso639": "it" + }, + { + "label": "Schweizerische Akademie der Technischen Wissenschaften", + "iso639": "de" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q2256437" + ], + "preferred": "Q2256437" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02h3vcz70.json b/v1.52/v1/02h3vcz70.json new file mode 100644 index 000000000..f1fd9af22 --- /dev/null +++ b/v1.52/v1/02h3vcz70.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/02h3vcz70", + "name": "Sciences Po Lyon", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Equipe de recherche de Lyon en Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/04y24xj84" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Institut d'Asie Orientale", + "type": "Child", + "id": "https://ror.org/007dy3y92" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sciencespo-lyon.fr/accueil" + ], + "aliases": [ + "Institut d'études politiques de Lyon" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_d%27%C3%A9tudes_politiques_de_Lyon", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482734.e", + "preferred": "grid.482734.e" + }, + "ISNI": { + "all": [ + "0000 0004 1806 159X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2253344" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02heqqj04.json b/v1.52/v1/02heqqj04.json new file mode 100644 index 000000000..41fecc18d --- /dev/null +++ b/v1.52/v1/02heqqj04.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02heqqj04", + "name": "Pingtan Environmental Monitoring Center of Fujian", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Fujian Provincial Department of Ecology and Environment", + "type": "Parent", + "id": "https://ror.org/0102dvb40" + } + ], + "addresses": [ + { + "lat": 26.06139, + "lng": 119.30611, + "state": null, + "state_code": null, + "city": "Fuzhou", + "geonames_city": { + "id": 1810821, + "city": "Fuzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Pingtan Environmental Monitoring Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "福建省平潭环境监测中心站", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02hjfaw18.json b/v1.52/v1/02hjfaw18.json new file mode 100644 index 000000000..ec1f1f712 --- /dev/null +++ b/v1.52/v1/02hjfaw18.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02hjfaw18", + "name": "National Information Society Agency", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.566, + "lng": 126.9784, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835848, + "city": "Seoul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nia.or.kr" + ], + "aliases": [ + "Korea Information Society Agency", + "Korea Information Technology Agency" + ], + "acronyms": [ + "NIA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "한국지능정보사회진흥원", + "iso639": "en" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "GRID": { + "all": "grid.496237.d", + "preferred": "grid.496237.d" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02jet3w32.json b/v1.52/v1/02jet3w32.json new file mode 100644 index 000000000..f8f1853d5 --- /dev/null +++ b/v1.52/v1/02jet3w32.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/02jet3w32", + "name": "LMU Klinikum", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Klinik und Poliklinik für Orthopädie, Physikalische Medizin und Rehabilitation", + "type": "Child", + "id": "https://ror.org/05fw3y429" + }, + { + "label": "Klinik und Poliklinik für Psychiatrie und Psychotherapie", + "type": "Child", + "id": "https://ror.org/03j546b66" + }, + { + "label": "Klinik und Poliklinik für Strahlentherapie und Radioonkologie", + "type": "Child", + "id": "https://ror.org/01trny179" + }, + { + "label": "Klinik und Poliklinik für Frauenheilkunde und Geburtshilfe", + "type": "Child", + "id": "https://ror.org/02794jc95" + }, + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Parent", + "id": "https://ror.org/05591te55" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lmu-klinikum.de/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Klinikum_der_Universit%C3%A4t_M%C3%BCnchen", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.411095.8", + "preferred": "grid.411095.8" + }, + "ISNI": { + "all": [ + "0000 0004 0477 2585" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q598814" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02k8f5n40.json b/v1.52/v1/02k8f5n40.json new file mode 100644 index 000000000..19fddbc19 --- /dev/null +++ b/v1.52/v1/02k8f5n40.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/02k8f5n40", + "name": "Laboratoire Cognitions Humaine et Artificielle", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "Université Paris-Est Créteil", + "type": "Parent", + "id": "https://ror.org/05ggc9x40" + }, + { + "label": "École Pratique des Hautes Études", + "type": "Parent", + "id": "https://ror.org/046b3cj80" + }, + { + "label": "CY Cergy Paris Université", + "type": "Parent", + "id": "https://ror.org/043htjv09" + } + ], + "addresses": [ + { + "lat": 48.93564, + "lng": 2.35387, + "state": null, + "state_code": null, + "city": "Saint-Denis", + "geonames_city": { + "id": 2980916, + "city": "Saint-Denis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://laboratoire-chart.fr" + ], + "aliases": [ + "Laboratoire CHArt" + ], + "acronyms": [ + "CHArt" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503126.3", + "preferred": "grid.503126.3" + }, + "ISNI": { + "all": [ + "0000 0004 0495 272X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51782494" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02kj53224.json b/v1.52/v1/02kj53224.json new file mode 100644 index 000000000..11fefa647 --- /dev/null +++ b/v1.52/v1/02kj53224.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/02kj53224", + "name": "Tecnológico Nacional de México Campus Ciudad Serdán", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 18.98856, + "lng": -97.44643, + "state": null, + "state_code": null, + "city": "Ciudad Serdán", + "geonames_city": { + "id": 3530584, + "city": "Ciudad Serdán", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://itsciudadserdan.edu.mx" + ], + "aliases": [ + "Instituto Tecnológico Superior De Ciudad Serdán", + "TecNM Campus Ciudad Serdán", + "TecSerdan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Tecnol%C3%B3gico_Nacional_de_M%C3%A9xico", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02kxw0b63.json b/v1.52/v1/02kxw0b63.json new file mode 100644 index 000000000..212f3d68f --- /dev/null +++ b/v1.52/v1/02kxw0b63.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02kxw0b63", + "name": "Zhijiang College of Zhejiang University of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zhejiang University of Technology", + "type": "Parent", + "id": "https://ror.org/02djqfd08" + } + ], + "addresses": [ + { + "lat": 30.00237, + "lng": 120.57864, + "state": null, + "state_code": null, + "city": "Shaoxing", + "geonames_city": { + "id": 1795855, + "city": "Shaoxing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.zzjc.edu.cn" + ], + "aliases": [], + "acronyms": [ + "ZJC", + "之江学院" + ], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/zh-hans/%E6%B5%99%E6%B1%9F%E5%B7%A5%E4%B8%9A%E5%A4%A7%E5%AD%A6%E4%B9%8B%E6%B1%9F%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "浙江工业大学之江学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q17221658" + ], + "preferred": "Q17221658" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02m4c1x70.json b/v1.52/v1/02m4c1x70.json new file mode 100644 index 000000000..a14881ca7 --- /dev/null +++ b/v1.52/v1/02m4c1x70.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/02m4c1x70", + "name": "Air Force Materiel Command", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Air Force Research Laboratory", + "type": "Child", + "id": "https://ror.org/02e2egq70" + }, + { + "label": "Air Force Test Center", + "type": "Child", + "id": "https://ror.org/04k0tth05" + }, + { + "label": "Air Force Installation and Mission Support Center", + "type": "Child", + "id": "https://ror.org/02cznc894" + }, + { + "label": "United States Air Force", + "type": "Parent", + "id": "https://ror.org/006gmme17" + }, + { + "label": "Air Force Life Cycle Management Center", + "type": "Child", + "id": "https://ror.org/0595f4b08" + }, + { + "label": "Air Force Sustainment Center", + "type": "Child", + "id": "https://ror.org/01m7hcv15" + } + ], + "addresses": [ + { + "lat": 39.82201, + "lng": -84.0368, + "state": null, + "state_code": null, + "city": "Wright-Patterson Air Force Base", + "geonames_city": { + "id": 7701733, + "city": "Wright-Patterson Air Force Base", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.afmc.af.mil" + ], + "aliases": [ + "U.S. Air Force Materiel Command", + "USAF Materiel Command", + "United States Air Force Materiel Command" + ], + "acronyms": [ + "AFMC", + "USAFMC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Air_Force_Materiel_Command", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0605 3584" + ], + "preferred": "0000 0004 0605 3584" + }, + "Wikidata": { + "all": [ + "Q407147" + ], + "preferred": "Q407147" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02mw21745.json b/v1.52/v1/02mw21745.json new file mode 100644 index 000000000..1cf2e4215 --- /dev/null +++ b/v1.52/v1/02mw21745.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/02mw21745", + "name": "Rudjer Boskovic Institute", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 45.81444, + "lng": 15.97798, + "state": null, + "state_code": null, + "city": "Zagreb", + "geonames_city": { + "id": 3186886, + "city": "Zagreb", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.irb.hr/" + ], + "aliases": [], + "acronyms": [ + "IRB", + "RBI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ru%C4%91er_Bo%C5%A1kovi%C4%87_Institute", + "labels": [ + { + "label": "Institut Ruđer Bošković", + "iso639": "hr" + } + ], + "country": { + "country_name": "Croatia", + "country_code": "HR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007259" + ], + "preferred": null + }, + "GRID": { + "all": "grid.4905.8", + "preferred": "grid.4905.8" + }, + "ISNI": { + "all": [ + "0000 0004 0635 7705" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7383690" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02n1c7856.json b/v1.52/v1/02n1c7856.json new file mode 100644 index 000000000..6ad2ff0ba --- /dev/null +++ b/v1.52/v1/02n1c7856.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/02n1c7856", + "name": "New York State College of Ceramics", + "email_address": null, + "ip_addresses": [], + "established": 1900, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Alfred University", + "type": "Parent", + "id": "https://ror.org/01k81gt67" + }, + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.25424, + "lng": -77.79055, + "state": null, + "state_code": null, + "city": "Alfred", + "geonames_city": { + "id": 5106955, + "city": "Alfred", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.alfred.edu/academics/colleges-schools/college-ceramics/" + ], + "aliases": [ + "NYS College of Ceramics" + ], + "acronyms": [ + "NYSCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/New_York_State_College_of_Ceramics", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.507867.b", + "preferred": "grid.507867.b" + }, + "ISNI": { + "all": [ + "0000 0001 2308 3513" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7014056" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02n6w8087.json b/v1.52/v1/02n6w8087.json new file mode 100644 index 000000000..a6df7e3df --- /dev/null +++ b/v1.52/v1/02n6w8087.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/02n6w8087", + "name": "Air Force Communication NCO Academy", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "People's Liberation Army Air Force", + "type": "Parent", + "id": "https://ror.org/04f13ze88" + } + ], + "addresses": [ + { + "lat": 38.91222, + "lng": 121.60222, + "state": null, + "state_code": null, + "city": "Dalian", + "geonames_city": { + "id": 1814087, + "city": "Dalian", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Chinese People's Liberation Army Air Force Communication Non commissioned Officer School", + "Dalian Communications NCO Academy", + "PLA Air Force Communication Non commissioned Officer School" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "中国人民解放军空军通信士官学校", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02nsq4g28.json b/v1.52/v1/02nsq4g28.json new file mode 100644 index 000000000..9baf2f2ea --- /dev/null +++ b/v1.52/v1/02nsq4g28.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/02nsq4g28", + "name": "Faculdade de Direito de Franca", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -20.53861, + "lng": -47.40083, + "state": null, + "state_code": null, + "city": "Franca", + "geonames_city": { + "id": 3463011, + "city": "Franca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://direitofranca.br" + ], + "aliases": [ + "Law School of Franca" + ], + "acronyms": [ + "FDF" + ], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Faculdade_de_Direito_de_Franca", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02nwb8925.json b/v1.52/v1/02nwb8925.json new file mode 100644 index 000000000..a9cde4cc7 --- /dev/null +++ b/v1.52/v1/02nwb8925.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02nwb8925", + "name": "Ecole de droit social de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://eds-montpellier.fr" + ], + "aliases": [], + "acronyms": [ + "EDSM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02nymkz75.json b/v1.52/v1/02nymkz75.json new file mode 100644 index 000000000..fafd1bbc0 --- /dev/null +++ b/v1.52/v1/02nymkz75.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/02nymkz75", + "name": "Faculdade Faci Wyden", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -1.45583, + "lng": -48.50444, + "state": null, + "state_code": null, + "city": "Belém", + "geonames_city": { + "id": 3405870, + "city": "Belém", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.wyden.com.br" + ], + "aliases": [ + "Faci Wyden" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02p0gd045.json b/v1.52/v1/02p0gd045.json new file mode 100644 index 000000000..47a257894 --- /dev/null +++ b/v1.52/v1/02p0gd045.json @@ -0,0 +1,135 @@ +{ + "id": "https://ror.org/02p0gd045", + "name": "Universidad Complutense de Madrid", + "email_address": null, + "ip_addresses": [], + "established": 1293, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ORFEO-CINQA Research Network", + "type": "Child", + "id": "https://ror.org/03xw5ev35" + }, + { + "label": "Hospital Clínico San Carlos", + "type": "Related", + "id": "https://ror.org/04d0ybj29" + }, + { + "label": "Hospital General Universitario Gregorio Marañón", + "type": "Related", + "id": "https://ror.org/0111es613" + }, + { + "label": "Hospital Universitario 12 De Octubre", + "type": "Related", + "id": "https://ror.org/00qyh5r35" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ucm.es" + ], + "aliases": [ + "Universidad de Madrid" + ], + "acronyms": [ + "UCM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Complutense_University_of_Madrid", + "labels": [ + { + "label": "Complutense University of Madrid", + "iso639": "en" + }, + { + "label": "Madrilgo Complutense Unibertsitatea", + "iso639": "eu" + }, + { + "label": "Universidade Complutense de Madrid", + "iso639": "gl" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002911" + ], + "preferred": null + }, + "GRID": { + "all": "grid.4795.f", + "preferred": "grid.4795.f" + }, + "ISNI": { + "all": [ + "0000 0001 2157 7667" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q219694" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02p2bgp27.json b/v1.52/v1/02p2bgp27.json new file mode 100644 index 000000000..a948865bf --- /dev/null +++ b/v1.52/v1/02p2bgp27.json @@ -0,0 +1,176 @@ +{ + "id": "https://ror.org/02p2bgp27", + "name": "Philips (Netherlands)", + "email_address": null, + "ip_addresses": [], + "established": 1891, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "ASML (Netherlands)", + "type": "Child", + "id": "https://ror.org/01vxknj13" + }, + { + "label": "Philips (Belgium)", + "type": "Child", + "id": "https://ror.org/05bsjqt55" + }, + { + "label": "Philips (Canada)", + "type": "Child", + "id": "https://ror.org/0326cx138" + }, + { + "label": "Philips (China)", + "type": "Child", + "id": "https://ror.org/001tk4253" + }, + { + "label": "Philips (Finland)", + "type": "Child", + "id": "https://ror.org/01g4jev56" + }, + { + "label": "Philips (France)", + "type": "Child", + "id": "https://ror.org/05jz46060" + }, + { + "label": "Philips (Germany)", + "type": "Child", + "id": "https://ror.org/05san5604" + }, + { + "label": "Philips (India)", + "type": "Child", + "id": "https://ror.org/0435vfk93" + }, + { + "label": "Philips (Israel)", + "type": "Child", + "id": "https://ror.org/03cb8f280" + }, + { + "label": "Philips (Italy)", + "type": "Child", + "id": "https://ror.org/0050s9w54" + }, + { + "label": "Philips (Spain)", + "type": "Child", + "id": "https://ror.org/01rswjc57" + }, + { + "label": "Philips (Sweden)", + "type": "Child", + "id": "https://ror.org/02ykjqt50" + }, + { + "label": "Philips (United Kingdom)", + "type": "Child", + "id": "https://ror.org/04ktqp584" + }, + { + "label": "Philips (United States)", + "type": "Child", + "id": "https://ror.org/03kw6wr76" + }, + { + "label": "Signify (Netherlands)", + "type": "Related", + "id": "https://ror.org/0532vdr17" + } + ], + "addresses": [ + { + "lat": 52.37403, + "lng": 4.88969, + "state": null, + "state_code": null, + "city": "Amsterdam", + "geonames_city": { + "id": 2759794, + "city": "Amsterdam", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.philips.nl/?locale_org=global" + ], + "aliases": [ + "Royal Philips" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Philips", + "labels": [ + { + "label": "Koninklijke Philips", + "iso639": "nl" + } + ], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "FundRef": { + "all": [ + "100004320" + ], + "preferred": null + }, + "GRID": { + "all": "grid.417284.c", + "preferred": "grid.417284.c" + }, + "ISNI": { + "all": [ + "0000 0004 0398 9387" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q170416", + "Q1741148" + ], + "preferred": "Q170416" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02pjdv450.json b/v1.52/v1/02pjdv450.json new file mode 100644 index 000000000..352f49c38 --- /dev/null +++ b/v1.52/v1/02pjdv450.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/02pjdv450", + "name": "Florida Museum of Natural History", + "email_address": null, + "ip_addresses": [], + "established": 1891, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "University of Florida", + "type": "Parent", + "id": "https://ror.org/02y3ad647" + } + ], + "addresses": [ + { + "lat": 29.65163, + "lng": -82.32483, + "state": null, + "state_code": null, + "city": "Gainesville", + "geonames_city": { + "id": 4156404, + "city": "Gainesville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.floridamuseum.ufl.edu" + ], + "aliases": [ + "Florida Natural History Museum" + ], + "acronyms": [ + "FLMNH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Florida_Museum_of_Natural_History", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006594", + "100012310" + ], + "preferred": null + }, + "GRID": { + "all": "grid.466677.2", + "preferred": "grid.466677.2" + }, + "ISNI": { + "all": [ + "0000 0001 2166 957X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3074272" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02pjx9m11.json b/v1.52/v1/02pjx9m11.json new file mode 100644 index 000000000..2e79e955a --- /dev/null +++ b/v1.52/v1/02pjx9m11.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02pjx9m11", + "name": "Univesity of Life Science \"King Mihai I\" from Timisoara", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.75372, + "lng": 21.22571, + "state": null, + "state_code": null, + "city": "Timișoara", + "geonames_city": { + "id": 665087, + "city": "Timișoara", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.usab-tm.ro" + ], + "aliases": [ + "Banat University of Agricultural Sciences and Veterinary Medicine", + "Banat's University of Agricultural Sciences and Veterinary Medicine “King Michael I of Romania” from Timișoara", + "Universitatea de Științe Agricole și Medicină Veterinară a Banatului din Timișoara" + ], + "acronyms": [ + "USAMVBT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Banat_University_of_Agricultural_Sciences_and_Veterinary_Medicine", + "labels": [ + { + "label": "Universitatea de Științele Vieții “Regele Mihai I” din Timișoara", + "iso639": "ro" + } + ], + "country": { + "country_name": "Romania", + "country_code": "RO" + }, + "external_ids": { + "GRID": { + "all": "grid.472275.1", + "preferred": "grid.472275.1" + }, + "ISNI": { + "all": [ + "0000 0001 1033 9276" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q824493" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02pq29p90.json b/v1.52/v1/02pq29p90.json new file mode 100644 index 000000000..17020fab0 --- /dev/null +++ b/v1.52/v1/02pq29p90.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02pq29p90", + "name": "INFN Sezione di Catania", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "University of Catania", + "type": "Parent", + "id": "https://ror.org/03a64bh57" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 37.49223, + "lng": 15.07041, + "state": null, + "state_code": null, + "city": "Catania", + "geonames_city": { + "id": 2525068, + "city": "Catania", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ct.infn.it/" + ], + "aliases": [ + "Istituto Nazionale di Fisica Nucleare Sezione di Catania" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.470198.3", + "preferred": "grid.470198.3" + }, + "ISNI": { + "all": [ + "0000 0004 1755 400X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30265280" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02ps2mz85.json b/v1.52/v1/02ps2mz85.json new file mode 100644 index 000000000..893b6a6db --- /dev/null +++ b/v1.52/v1/02ps2mz85.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02ps2mz85", + "name": "Mohawk Valley Community College", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 43.1009, + "lng": -75.23266, + "state": null, + "state_code": null, + "city": "Utica", + "geonames_city": { + "id": 5142056, + "city": "Utica", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mvcc.edu/" + ], + "aliases": [ + "Mohawk Valley Technical Institute", + "New York State Institute of Applied Arts and Sciences at Utica", + "SUNY Mohawk Valley Community College", + "State University of New York Mohawk Valley Community College" + ], + "acronyms": [ + "MVCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mohawk_Valley_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.507861.d", + "preferred": "grid.507861.d" + }, + "ISNI": { + "all": [ + "0000 0000 9203 7839" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6893825" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02q398w70.json b/v1.52/v1/02q398w70.json new file mode 100644 index 000000000..899a728e0 --- /dev/null +++ b/v1.52/v1/02q398w70.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02q398w70", + "name": "DGA Techniques aérospatiales", + "email_address": null, + "ip_addresses": [], + "established": 1940, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Direction Générale de l'Armement", + "type": "Parent", + "id": "https://ror.org/04wsqd844" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.defense.gouv.fr/dga/la-dga2/expertise-et-essais/dga-techniques-aeronautiques" + ], + "aliases": [ + "Centre d'essais aéronautiques de Toulouse", + "DGA Techniques aéronautiques" + ], + "acronyms": [ + "CEAT", + "DGA TA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.423556.3", + "preferred": "grid.423556.3" + }, + "ISNI": { + "all": [ + "0000 0004 1782 0435" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02qmrr889.json b/v1.52/v1/02qmrr889.json new file mode 100644 index 000000000..d9cd2e07d --- /dev/null +++ b/v1.52/v1/02qmrr889.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/02qmrr889", + "name": "Yibin Vocational and Technical College", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 28.7593, + "lng": 104.63994, + "state": null, + "state_code": null, + "city": "Yibin", + "geonames_city": { + "id": 1786770, + "city": "Yibin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ybzy.cn" + ], + "aliases": [ + "Yibin Vocational & Technical College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "宜宾职业技术学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 8343 6693" + ], + "preferred": "0000 0004 8343 6693" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02qzfnk68.json b/v1.52/v1/02qzfnk68.json new file mode 100644 index 000000000..98d6ed337 --- /dev/null +++ b/v1.52/v1/02qzfnk68.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02qzfnk68", + "name": "Instituto Pedro Nunes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.20564, + "lng": -8.41955, + "state": null, + "state_code": null, + "city": "Coimbra", + "geonames_city": { + "id": 2740637, + "city": "Coimbra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Pedro Nunes Institute" + ], + "acronyms": [ + "IPN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9443 4969" + ], + "preferred": "0000 0000 9443 4969" + }, + "Wikidata": { + "all": [ + "Q4179041" + ], + "preferred": "Q4179041" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02r0wp596.json b/v1.52/v1/02r0wp596.json new file mode 100644 index 000000000..490e75371 --- /dev/null +++ b/v1.52/v1/02r0wp596.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02r0wp596", + "name": "SUNY Ulster", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 41.85315, + "lng": -74.13903, + "state": null, + "state_code": null, + "city": "Stone Ridge", + "geonames_city": { + "id": 5139832, + "city": "Stone Ridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunyulster.edu" + ], + "aliases": [ + "Ulster County Community College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/SUNY_Ulster", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.462910.8", + "preferred": "grid.462910.8" + }, + "ISNI": { + "all": [ + "0000 0004 0388 4278" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7395016" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02r2qbj91.json b/v1.52/v1/02r2qbj91.json new file mode 100644 index 000000000..c5e202e4b --- /dev/null +++ b/v1.52/v1/02r2qbj91.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02r2qbj91", + "name": "SUNY Westchester Community College", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 41.07482, + "lng": -73.77513, + "state": null, + "state_code": null, + "city": "Valhalla", + "geonames_city": { + "id": 5142090, + "city": "Valhalla", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunywcc.edu/" + ], + "aliases": [ + "State University of New York Westchester Community College", + "Westchester Community College" + ], + "acronyms": [ + "WCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Westchester_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.507866.a", + "preferred": "grid.507866.a" + }, + "ISNI": { + "all": [ + "0000 0000 9561 7222" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7987232" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02regkz96.json b/v1.52/v1/02regkz96.json new file mode 100644 index 000000000..c6a77353a --- /dev/null +++ b/v1.52/v1/02regkz96.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02regkz96", + "name": "Guangdong Teachers College of Foreign Language and Arts", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gtcfla.edu.cn" + ], + "aliases": [ + "Guangdong Teachers' College of Foreign Language and Arts" + ], + "acronyms": [ + "GTCFLA", + "广外艺" + ], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E5%B9%BF%E4%B8%9C%E7%9C%81%E5%A4%96%E8%AF%AD%E8%89%BA%E6%9C%AF%E8%81%8C%E4%B8%9A%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "广东省外语艺术职业学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1766 417X" + ], + "preferred": "0000 0004 1766 417X" + }, + "Wikidata": { + "all": [ + "Q97780209" + ], + "preferred": "Q97780209" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02rm8h934.json b/v1.52/v1/02rm8h934.json new file mode 100644 index 000000000..ff2cd6de7 --- /dev/null +++ b/v1.52/v1/02rm8h934.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02rm8h934", + "name": "UNESCO-UNEVOC International Centre for Technical and Vocational Education and Training", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "UNESCO", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + } + ], + "addresses": [ + { + "lat": 50.73438, + "lng": 7.09549, + "state": null, + "state_code": null, + "city": "Bonn", + "geonames_city": { + "id": 2946447, + "city": "Bonn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unevoc.unesco.org/" + ], + "aliases": [], + "acronyms": [ + "UNESCO-UNEVOC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/UNESCO-UNEVOC", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.470033.3", + "preferred": "grid.470033.3" + }, + "Wikidata": { + "all": [ + "Q18355797" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02rrhsz92.json b/v1.52/v1/02rrhsz92.json new file mode 100644 index 000000000..71da6b601 --- /dev/null +++ b/v1.52/v1/02rrhsz92.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/02rrhsz92", + "name": "SUNY Old Westbury", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 40.78871, + "lng": -73.59957, + "state": null, + "state_code": null, + "city": "Old Westbury", + "geonames_city": { + "id": 5129770, + "city": "Old Westbury", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.oldwestbury.edu" + ], + "aliases": [ + "SUNY College at Old Westbury", + "State University of New York College at Old Westbury" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Old_Westbury", + "labels": [ + { + "label": "SUNY College at Old Westbury", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010964" + ], + "preferred": "100010964" + }, + "GRID": { + "all": "grid.264271.4", + "preferred": "grid.264271.4" + }, + "ISNI": { + "all": [ + "0000 0000 9827 7702" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7603624" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02rx3b187.json b/v1.52/v1/02rx3b187.json new file mode 100644 index 000000000..744f50d9a --- /dev/null +++ b/v1.52/v1/02rx3b187.json @@ -0,0 +1,565 @@ +{ + "id": "https://ror.org/02rx3b187", + "name": "Université Grenoble Alpes", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Interuniversitaire de MicroElectronique et Nanotechnologies", + "type": "Child", + "id": "https://ror.org/000tdrn36" + }, + { + "label": "Laboratoire d'Economie Appliquée de Grenoble", + "type": "Child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Institut polytechnique de Grenoble", + "type": "Child", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut Néel", + "type": "Child", + "id": "https://ror.org/04dbzz632" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut des Géosciences de l'Environnement", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "Child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Interdisciplinaire de Physique", + "type": "Child", + "id": "https://ror.org/023n9q531" + }, + { + "label": "Laboratoire de Linguistique et Didactique des Langues Etrangères et Maternelles", + "type": "Child", + "id": "https://ror.org/05588ks88" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratoire de Physique Subatomique et de Cosmologie", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "Child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "Institut Carnot PolyNat", + "type": "Child", + "id": "https://ror.org/047p7mf25" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "Child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Laboratoire de Recherche sur les Apprentissages en Contexte", + "type": "Child", + "id": "https://ror.org/05c99vk74" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "Child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Laboratoire Inter-universitaire de Psychologie: Personnalité, Cognition, Changement Social", + "type": "Child", + "id": "https://ror.org/03jrb0276" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "Child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Laboratoire Modélisation et Exploration des Matériaux", + "type": "Child", + "id": "https://ror.org/00ndvqf03" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "Child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "Child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "Child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "Child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Centre d'Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique", + "type": "Child", + "id": "https://ror.org/04ndt7n58" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "Child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Centre d'Etudes et de Recherches Appliquées à la Gestion", + "type": "Child", + "id": "https://ror.org/0509qp208" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "Child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Laboratoire d'Informatique de Grenoble", + "type": "Child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "Child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "Child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Pacte", + "type": "Child", + "id": "https://ror.org/026j45x50" + }, + { + "label": "Laboratoire de Conception et d'Intégration des Systèmes", + "type": "Child", + "id": "https://ror.org/04eg25g76" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "Child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scène", + "type": "Child", + "id": "https://ror.org/055q9jt53" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "Child", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Centre de recherches juridiques de Grenoble", + "type": "Child", + "id": "https://ror.org/04e2ndp15" + }, + { + "label": "Centre de recherche en économie de Grenoble", + "type": "Child", + "id": "https://ror.org/05bw7ad85" + }, + { + "label": "Laboratoire EcoSystèmes et Sociétés En Montagne", + "type": "Child", + "id": "https://ror.org/01a0ez112" + }, + { + "label": "Méthodes et Histoire de l'architecture", + "type": "Child", + "id": "https://ror.org/00genbz89" + }, + { + "label": "Centre d'études sur la sécurité internationale et les coopérations européennes", + "type": "Child", + "id": "https://ror.org/033d95m27" + }, + { + "label": "Sport et environnement social", + "type": "Child", + "id": "https://ror.org/00t9pwh21" + }, + { + "label": "Architecture, Environnement & Cultures Constructives", + "type": "Child", + "id": "https://ror.org/02wrd4e19" + }, + { + "label": "Laboratoire Universitaire Histoire Cultures Italie Europe", + "type": "Child", + "id": "https://ror.org/00y523k32" + }, + { + "label": "Institut de philosophie de Grenoble", + "type": "Child", + "id": "https://ror.org/01554y636" + }, + { + "label": "Groupe de recherche sur les enjeux de la communication", + "type": "Child", + "id": "https://ror.org/00awrf758" + }, + { + "label": "Laboratoire des Sciences pour la Conception, l'Optimisation et la Production", + "type": "Child", + "id": "https://ror.org/00rv5x925" + }, + { + "label": "Institut Fourier", + "type": "Child", + "id": "https://ror.org/05rwrfh97" + }, + { + "label": "Techniques of Informatics and Microelectronics for Integrated Systems Architecture", + "type": "Child", + "id": "https://ror.org/000063q30" + }, + { + "label": "Translational Innovation in Medicine and Complexity", + "type": "Child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "Child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Autonomie, Gérontologie, E-santé, Imagerie et Société", + "type": "Child", + "id": "https://ror.org/01aj0bf86" + }, + { + "label": "Laboratoire Biosciences et bioingénierie pour la Santé", + "type": "Child", + "id": "https://ror.org/039j4x695" + }, + { + "label": "Brain Tech Laboratory", + "type": "Child", + "id": "https://ror.org/01027m165" + }, + { + "label": "Laboratoire Biologie et Biotechnologie pour la Santé", + "type": "Child", + "id": "https://ror.org/0557vhy43" + }, + { + "label": "Institut de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Centre de Recherches sur les Macromolécules Végétales", + "type": "Child", + "id": "https://ror.org/0003ege03" + }, + { + "label": "Département de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/010rs2a38" + }, + { + "label": "Hypoxie et Physiopathologies cardiovasculaires et respiratoires", + "type": "Child", + "id": "https://ror.org/0459x4g44" + }, + { + "label": "Haute Technologie Animale Grenobloise", + "type": "Child", + "id": "https://ror.org/03vyv3y87" + }, + { + "label": "Institut pour l'avancée des biosciences", + "type": "Child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "Child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire d'Écologie Alpine", + "type": "Child", + "id": "https://ror.org/03x1z2w73" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "Child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire de Radiopharmaceutiques Biocliniques", + "type": "Child", + "id": "https://ror.org/01273vs09" + }, + { + "label": "Laboratory of Fundamental and Applied Bioenergetics", + "type": "Child", + "id": "https://ror.org/05514hp74" + }, + { + "label": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "type": "Child", + "id": "https://ror.org/0535cbn94" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Laboratoire Rhéologie et Procédés", + "type": "Child", + "id": "https://ror.org/044ggyg50" + }, + { + "label": "Laboratoire National des Champs Magnétiques Intenses", + "type": "Child", + "id": "https://ror.org/045ktmd28" + }, + { + "label": "Laboratoire de génie des procédés pour la bioraffinerie, les matériaux bio-sourcés et l’impression fonctionnelle", + "type": "Child", + "id": "https://ror.org/02z8yps18" + }, + { + "label": "Institut de Planétologie et d'Astrophysique de Grenoble", + "type": "Child", + "id": "https://ror.org/01kcrnc96" + }, + { + "label": "Laboratoire des Écoulements Géophysiques et Industriels", + "type": "Child", + "id": "https://ror.org/043pfpy19" + }, + { + "label": "Sols, Solides, Structures, Risques", + "type": "Child", + "id": "https://ror.org/03bcdsr62" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "Child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Laboratoire des Matériaux et du Génie Physique", + "type": "Child", + "id": "https://ror.org/014n97s28" + }, + { + "label": "Laboratoire de Physique et Modélisation des Milieux Condensés", + "type": "Child", + "id": "https://ror.org/02mc6qk71" + }, + { + "label": "Laboratoire des Technologies de la Microélectronique", + "type": "Child", + "id": "https://ror.org/036zswm25" + }, + { + "label": "Laboratoire de Génie Électrique de Grenoble", + "type": "Child", + "id": "https://ror.org/05hyx5a17" + }, + { + "label": "Science et Ingénierie des Matériaux et Procédés", + "type": "Child", + "id": "https://ror.org/00m7zca23" + }, + { + "label": "Centre de Radiofréquences, Optique et Micro-nanoélectronique des Alpes", + "type": "Child", + "id": "https://ror.org/050rs7291" + }, + { + "label": "Département des Systèmes Basses Températures", + "type": "Child", + "id": "https://ror.org/009ps2x93" + }, + { + "label": "Université Pierre Mendès France", + "type": "Predecessor", + "id": "https://ror.org/02f7wz369" + }, + { + "label": "Centre Hospitalier Universitaire de Grenoble", + "type": "Related", + "id": "https://ror.org/041rhpw39" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Synchrotron Radiation for Biomedicine", + "type": "Child", + "id": "https://ror.org/01hrtf583" + } + ], + "addresses": [ + { + "lat": 45.1787, + "lng": 5.76281, + "state": null, + "state_code": null, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 2978317, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-grenoble-alpes.fr" + ], + "aliases": [], + "acronyms": [ + "UGA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Grenoble_Alpes_University", + "labels": [ + { + "label": "Grenoble Alpes University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012952", + "100013349" + ], + "preferred": "100012952" + }, + "GRID": { + "all": "grid.450307.5", + "preferred": "grid.450307.5" + }, + "Wikidata": { + "all": [ + "Q945876" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02ryfmr77.json b/v1.52/v1/02ryfmr77.json new file mode 100644 index 000000000..1b06ab8ac --- /dev/null +++ b/v1.52/v1/02ryfmr77.json @@ -0,0 +1,140 @@ +{ + "id": "https://ror.org/02ryfmr77", + "name": "Université des Antilles", + "email_address": null, + "ip_addresses": [], + "established": 1850, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Biologie Intégrée du Globule Rouge", + "type": "Child", + "id": "https://ror.org/048cbmc89" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "Child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Laboratoire Caribéen de Sciences Sociales", + "type": "Child", + "id": "https://ror.org/00srrcb42" + }, + { + "label": "Centre d'Investigation Clinique Antilles Guyane", + "type": "Child", + "id": "https://ror.org/029hdt144" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "Child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Pathogenesis and Control of Chronic and Emerging Infections", + "type": "Child", + "id": "https://ror.org/01yw9jt43" + } + ], + "addresses": [ + { + "lat": 16.24125, + "lng": -61.53614, + "state": null, + "state_code": null, + "city": "Pointe-à-Pitre", + "geonames_city": { + "id": 3578599, + "city": "Pointe-à-Pitre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-ag.fr/" + ], + "aliases": [ + "University of the French West Indies", + "University of the French West Indies and Guiana" + ], + "acronyms": [ + "UAG" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_the_French_Antilles", + "labels": [ + { + "label": "University of the French Antilles", + "iso639": "en" + } + ], + "country": { + "country_name": "Guadeloupe", + "country_code": "GP" + }, + "external_ids": { + "GRID": { + "all": "grid.412130.5", + "preferred": "grid.412130.5" + }, + "ISNI": { + "all": [ + "0000 0001 2197 3053", + "0000 0004 0593 5227", + "0000 0004 9471 2972" + ], + "preferred": "0000 0004 9471 2972" + }, + "Wikidata": { + "all": [ + "Q829169", + "Q16682075" + ], + "preferred": "Q16682075" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02sftkh09.json b/v1.52/v1/02sftkh09.json new file mode 100644 index 000000000..5153adfc2 --- /dev/null +++ b/v1.52/v1/02sftkh09.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02sftkh09", + "name": "Instituto Tecnológico Superior de Centla", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 18.54326, + "lng": -92.6453, + "state": null, + "state_code": null, + "city": "Frontera", + "geonames_city": { + "id": 3527545, + "city": "Frontera", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://centla.tecnm.mx" + ], + "aliases": [ + "ITS Centla", + "TecNM Centla" + ], + "acronyms": [ + "ITSCe" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 0169" + ], + "preferred": "0000 0004 1770 0169" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02sndnx77.json b/v1.52/v1/02sndnx77.json new file mode 100644 index 000000000..3218690b9 --- /dev/null +++ b/v1.52/v1/02sndnx77.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/02sndnx77", + "name": "Viet-Hung Industrial University", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ministry of Industry and Trade", + "type": "Parent", + "id": "https://ror.org/01bvv5f54" + } + ], + "addresses": [ + { + "lat": 21.0245, + "lng": 105.84117, + "state": null, + "state_code": null, + "city": "Hanoi", + "geonames_city": { + "id": 1581130, + "city": "Hanoi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://viu.edu.vn" + ], + "aliases": [ + "Vietnam – Hungary Industrial University", + "Đại học Công nghiệp Việt - Hung" + ], + "acronyms": [ + "VIU" + ], + "status": "active", + "wikipedia_url": "https://vi.wikipedia.org/wiki/Tr%C6%B0%E1%BB%9Dng_%C4%90%E1%BA%A1i_h%E1%BB%8Dc_C%C3%B4ng_nghi%E1%BB%87p_Vi%E1%BB%87t_%E2%80%93_Hung", + "labels": [ + { + "label": "Trường Đại học Công nghiệp Việt – Hung", + "iso639": "vi" + } + ], + "country": { + "country_name": "Vietnam", + "country_code": "VN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02t42bb94.json b/v1.52/v1/02t42bb94.json new file mode 100644 index 000000000..00c462780 --- /dev/null +++ b/v1.52/v1/02t42bb94.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02t42bb94", + "name": "Naval Research Academy", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.22222, + "lng": 121.45806, + "state": null, + "state_code": null, + "city": "Shanghai", + "geonames_city": { + "id": 1796236, + "city": "Shanghai", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Naval Research Institute of PLA", + "PLA Navy Equipment Academy", + "PLA Navy Research Academy", + "People's Liberation Army Navy Equipment Academy", + "People's Liberation Army Navy Research Academy", + "中国人民解放军海军装备研究院", + "中国人民解放军海军装备论证研究中心", + "海军研究院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/zh-hans/%E4%B8%AD%E5%9B%BD%E4%BA%BA%E6%B0%91%E8%A7%A3%E6%94%BE%E5%86%9B%E6%B5%B7%E5%86%9B%E7%A0%94%E7%A9%B6%E9%99%A2", + "labels": [ + { + "label": "中国人民解放军海军研究院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02v9m6h26.json b/v1.52/v1/02v9m6h26.json new file mode 100644 index 000000000..b41dc8c3e --- /dev/null +++ b/v1.52/v1/02v9m6h26.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02v9m6h26", + "name": "SUNY College of Optometry", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunyopt.edu" + ], + "aliases": [ + "State University of New York College of Optometry" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_College_of_Optometry", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.410412.2", + "preferred": "grid.410412.2" + }, + "ISNI": { + "all": [ + "0000 0004 0384 8998" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q14707354" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02vjkv261.json b/v1.52/v1/02vjkv261.json new file mode 100644 index 000000000..f91ea2f3d --- /dev/null +++ b/v1.52/v1/02vjkv261.json @@ -0,0 +1,1399 @@ +{ + "id": "https://ror.org/02vjkv261", + "name": "Inserm", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Adaptateurs de Signalisation en Hématologie", + "type": "Child", + "id": "https://ror.org/03837fc46" + }, + { + "label": "Laboratoire Adhésion et inflammation", + "type": "Child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "Child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Centre de Recherche en Cancérologie de Lyon", + "type": "Child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Centre de Recherche en Cancérologie de Toulouse", + "type": "Child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Institut Thématique Cancer", + "type": "Child", + "id": "https://ror.org/04zdwr798" + }, + { + "label": "Institut thématique Biologie cellulaire, développement et évolution", + "type": "Child", + "id": "https://ror.org/024k3xe80" + }, + { + "label": "Centre Interdisciplinaire de Recherche en Biologie", + "type": "Child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "Child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Centre de Recherche Médecine, Sciences, Santé, Santé Mentale, Société", + "type": "Child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Centre de Recherche sur l'Inflammation", + "type": "Child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre Méditerranéen de Médecine Moléculaire", + "type": "Child", + "id": "https://ror.org/029rfe283" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "Child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "Child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "Child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "Child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Référence Déficits Immunitaires Héréditaires", + "type": "Child", + "id": "https://ror.org/009p5nb11" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "Child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Cognition, Action, and Sensorimotor Plasticity", + "type": "Child", + "id": "https://ror.org/03xe54902" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "Child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Délégation Paris 11", + "type": "Child", + "id": "https://ror.org/0589k3111" + }, + { + "label": "Délégation Paris 12", + "type": "Child", + "id": "https://ror.org/00sbttv49" + }, + { + "label": "Délégation Paris 5", + "type": "Child", + "id": "https://ror.org/02e0y6e06" + }, + { + "label": "Délégation Paris 6", + "type": "Child", + "id": "https://ror.org/03rt48n94" + }, + { + "label": "Délégation Paris 7", + "type": "Child", + "id": "https://ror.org/00bw5n526" + }, + { + "label": "Délégation Régionale Auvergne-Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/0530j9m17" + }, + { + "label": "Délégation Régionale Est", + "type": "Child", + "id": "https://ror.org/04kv7c795" + }, + { + "label": "Délégation Régionale Grand Ouest", + "type": "Child", + "id": "https://ror.org/01qa4rf46" + }, + { + "label": "Délégation Régionale Nord Ouest", + "type": "Child", + "id": "https://ror.org/00jmxvy70" + }, + { + "label": "Délégation Régionale Nouvelle-Aquitaine", + "type": "Child", + "id": "https://ror.org/044rb3f07" + }, + { + "label": "Délégation Régionale Occitanie Méditerranée", + "type": "Child", + "id": "https://ror.org/01ddr6d46" + }, + { + "label": "Délégation Régionale Occitanie Pyrénées", + "type": "Child", + "id": "https://ror.org/03xssrp53" + }, + { + "label": "Délégation Régionale Provence-Alpes-Côte d’Azur et Corse", + "type": "Child", + "id": "https://ror.org/01s8rwd67" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "Child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Equipe Soutenue par la Région et par l'Inserm", + "type": "Child", + "id": "https://ror.org/03e801006" + }, + { + "label": "Institut thématique Génétique, génomique et bioinformatique", + "type": "Child", + "id": "https://ror.org/01rfstj90" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "Child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "Child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "Child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Institut des Maladies Génétiques Imagine", + "type": "Child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Imagerie et Cerveau", + "type": "Child", + "id": "https://ror.org/01eem7c55" + }, + { + "label": "Immunité et Cancer", + "type": "Child", + "id": "https://ror.org/01zefvs55" + }, + { + "label": "Institut thématique Immunologie, inflammation, infectiologie et microbiologie", + "type": "Child", + "id": "https://ror.org/00r454w59" + }, + { + "label": "Inserm Transfert", + "type": "Child", + "id": "https://ror.org/01wftfc57" + }, + { + "label": "Institut pour l'avancée des biosciences", + "type": "Child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Institut Cochin", + "type": "Child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "Child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut Jacques Monod", + "type": "Child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "Child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "Child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut d'Économie Publique", + "type": "Child", + "id": "https://ror.org/014ycqe77" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "Child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie de Lille", + "type": "Child", + "id": "https://ror.org/05gd4yq49" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Neurobiologie de la Méditerranée", + "type": "Child", + "id": "https://ror.org/02jthx987" + }, + { + "label": "Institut de Neurosciences des Systèmes", + "type": "Child", + "id": "https://ror.org/019kqby73" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "Child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Institut de Recherche en Santé, Environnement et Travail", + "type": "Child", + "id": "https://ror.org/01p178v10" + }, + { + "label": "Institut du Cerveau", + "type": "Child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "Child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut du Thorax", + "type": "Child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "Child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "Child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institut de Biologie Valrose", + "type": "Child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institut de génétique et de biologie moléculaire et cellulaire", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institut de Myologie", + "type": "Child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institut de Recherche sur le Cancer et le Vieillissement de Nice", + "type": "Child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "Centre International de Recherche en Infectiologie", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire CarMeN", + "type": "Child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "Child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "Child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire d'Optique et Biosciences", + "type": "Child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratoire de Recherche Vasculaire Translationnelle", + "type": "Child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "Child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Institut Langevin", + "type": "Child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Lipides, Nutrition, Cancer", + "type": "Child", + "id": "https://ror.org/04d70nb60" + }, + { + "label": "Centre de Recherche en Neurosciences de Lyon", + "type": "Child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Institut thématique Bases moléculaires et structurales du vivant", + "type": "Child", + "id": "https://ror.org/00j5dj575" + }, + { + "label": "Institut Mondor de Recherche Biomédicale", + "type": "Child", + "id": "https://ror.org/04qe59j94" + }, + { + "label": "Institut thématique Neurosciences, sciences cognitives, neurologie, psychiatrie", + "type": "Child", + "id": "https://ror.org/05e7p5n27" + }, + { + "label": "Nutrition, Obésité et Risque Thrombotique", + "type": "Child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Oncogenesis Stress Signaling", + "type": "Child", + "id": "https://ror.org/00bf6bf92" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "Child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Génomes, biologie cellulaire et thérapeutiques", + "type": "Child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "Child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "Child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physiopathologie, métabolisme et nutrition", + "type": "Child", + "id": "https://ror.org/00cmmh940" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "Child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Institut thématique Santé Publique", + "type": "Child", + "id": "https://ror.org/04wbsq162" + }, + { + "label": "Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète", + "type": "Child", + "id": "https://ror.org/05xanhp90" + }, + { + "label": "Skin Research Center", + "type": "Child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "Institut Cellule Souche et Cerveau", + "type": "Child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "Child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "Child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Theories and Approaches of Genomic Complexity", + "type": "Child", + "id": "https://ror.org/025sfbe73" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "Child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "Child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Systèmes avancés de délivrance de principes actifs", + "type": "Child", + "id": "https://ror.org/053ppfe96" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "Child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Investigation Clinique - Innovation Technologique de Lille", + "type": "Child", + "id": "https://ror.org/04p4jgt68" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "Child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "IMPact de l'Environnement Chimique sur la Santé humaine", + "type": "Child", + "id": "https://ror.org/0455vgw31" + }, + { + "label": "Institute for Translational Research in Inflammation", + "type": "Child", + "id": "https://ror.org/03qy9z186" + }, + { + "label": "Lille Neurosciences & Cognition", + "type": "Child", + "id": "https://ror.org/04p94ax69" + }, + { + "label": "Médicaments et Molécules pour Agir sur les Systèmes Vivants", + "type": "Child", + "id": "https://ror.org/0086epd30" + }, + { + "label": "OncoThAI", + "type": "Child", + "id": "https://ror.org/04q29nn62" + }, + { + "label": "Laboratoire de Physiologie Cellulaire", + "type": "Child", + "id": "https://ror.org/05fjffm04" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "Child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Recherche translationnelle sur le diabète", + "type": "Child", + "id": "https://ror.org/03pbmtd68" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "Child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Bacterial RNAs & Medicine", + "type": "Child", + "id": "https://ror.org/031y0x195" + }, + { + "label": "Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer", + "type": "Child", + "id": "https://ror.org/05p7fmf80" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "Child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "Child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre d’Investigation Clinique 1436", + "type": "Child", + "id": "https://ror.org/033z83z59" + }, + { + "label": "Hypoxie et Poumon", + "type": "Child", + "id": "https://ror.org/02mtpz628" + }, + { + "label": "Centre d'Investigation Clinique - Epidémiologie Clinique Saint-Etienne", + "type": "Child", + "id": "https://ror.org/044dp1584" + }, + { + "label": "NeuroDiderot", + "type": "Child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Besançon", + "type": "Child", + "id": "https://ror.org/04nk3ny21" + }, + { + "label": "Empenn", + "type": "Child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "Child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "Child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Institute for Translational Medicine and Liver Disease", + "type": "Child", + "id": "https://ror.org/00jvqbw52" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "Child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "Child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "Child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde", + "type": "Child", + "id": "https://ror.org/05vqkgf08" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "Biologie des maladies cardiovasculaires", + "type": "Child", + "id": "https://ror.org/0463z7496" + }, + { + "label": "Nutrition, Diabète et Cerveau", + "type": "Child", + "id": "https://ror.org/052yj6c27" + }, + { + "label": "Pharmacologie et Transplantation", + "type": "Child", + "id": "https://ror.org/013dngs07" + }, + { + "label": "Pathologies Pulmonaires et Plasticité Cellulaire", + "type": "Child", + "id": "https://ror.org/02w7ezv91" + }, + { + "label": "Physiopathologie, autoimmunité, maladies neuromusculaire et thérapie régénératrice", + "type": "Child", + "id": "https://ror.org/034feyf26" + }, + { + "label": "Centre de Génétique Médicale de Marseille", + "type": "Child", + "id": "https://ror.org/01e4wd589" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "Child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Centre d'Investigation Clinique Antilles Guyane", + "type": "Child", + "id": "https://ror.org/029hdt144" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "Child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "Child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "Child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "HIPI - Immunologie humaine, physiopathologie et immunithérapie", + "type": "Child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "Child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Institut Droit et Santé", + "type": "Child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "Child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Etude longitudinale française depuis l'enfance", + "type": "Child", + "id": "https://ror.org/03cxgcr75" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "Child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Laboratory for the Bioengineering of Tissues", + "type": "Child", + "id": "https://ror.org/012zmcc30" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "Child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "TBM-Core", + "type": "Child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "Child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Centre d’Investigation Clinique des Hôpitaux Universitaires de Strasbourg", + "type": "Child", + "id": "https://ror.org/03zsnyg10" + }, + { + "label": "Bordeaux Imaging Center", + "type": "Child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "Child", + "id": "https://ror.org/034bena10" + }, + { + "label": "RMeS - Regenerative Medicine and Skeleton", + "type": "Child", + "id": "https://ror.org/025agbr41" + }, + { + "label": "Pharmacologie des anti-infectieux et antibiorésistance", + "type": "Child", + "id": "https://ror.org/041v99f68" + }, + { + "label": "Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau", + "type": "Child", + "id": "https://ror.org/040d87505" + }, + { + "label": "Ischémie Reperfusion, Métabolisme et Inflammation Stérile en Transplantation", + "type": "Child", + "id": "https://ror.org/05kkw6065" + }, + { + "label": "Laboratoire de Neurosciences Expérimentales et Cliniques", + "type": "Child", + "id": "https://ror.org/04rfxk768" + }, + { + "label": "Anti-infectieux : supports moléculaires des résistances et innovations thérapeutiques", + "type": "Child", + "id": "https://ror.org/0458p8g61" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "Child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "Centre d'Étude des Pathologies Respiratoires", + "type": "Child", + "id": "https://ror.org/01vxptj17" + }, + { + "label": "Groupe de Recherches sur l’Analyse Multimodale de la Fonction Cérébrale", + "type": "Child", + "id": "https://ror.org/02a9mrq41" + }, + { + "label": "Plateforme d'information et de services pour les maladies rares et les médicaments orphelins", + "type": "Child", + "id": "https://ror.org/05thj7870" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "Child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "Child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre de Recherche Épidémiologie et Statistique", + "type": "Child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Anti-microbiens, Modélisation, Evolution", + "type": "Child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "Child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "France Génomique", + "type": "Child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "Child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Organisation Nucléaire et Oncogenèse", + "type": "Child", + "id": "https://ror.org/05q8d3662" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "Child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "Child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Pathogenèse des infections vasculaires", + "type": "Child", + "id": "https://ror.org/00gjnk018" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "Child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Maladies Rares: Génétique et Métabolisme", + "type": "Child", + "id": "https://ror.org/01wvg5605" + }, + { + "label": "Research on healthcare performance", + "type": "Child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "Child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "Child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Physiopathologie et imagerie des troubles neurologiques", + "type": "Child", + "id": "https://ror.org/00vsvph51" + }, + { + "label": "Neuropsychologie et Imagerie de la Mémoire Humaine", + "type": "Child", + "id": "https://ror.org/04f6tkx67" + }, + { + "label": "Mobilités: Vieillissement, Pathologie, Santé", + "type": "Child", + "id": "https://ror.org/028rasm92" + }, + { + "label": "Imagerie Moléculaire et Stratégies Théranostiques", + "type": "Child", + "id": "https://ror.org/03y61y350" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "Child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Physique pour la médecine Paris", + "type": "Child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "Child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Laboratoire d'imagerie translationnelle en oncologie", + "type": "Child", + "id": "https://ror.org/05qy9ka59" + }, + { + "label": "RESTORE", + "type": "Child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "Child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Génomique fonctionnelle comparative", + "type": "Child", + "id": "https://ror.org/016nv8j08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "Child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "L’Inserm dans Paris et l’Île-de-France Centre Nord", + "type": "Child", + "id": "https://ror.org/00jyt4d57" + }, + { + "label": "Défaillance Cardiovasculaire Aiguë et Chronique", + "type": "Child", + "id": "https://ror.org/05ft9wv42" + }, + { + "label": "Nutrition-Génétique et Exposition aux Risques Environnementaux", + "type": "Child", + "id": "https://ror.org/053d03003" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "Child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "The Enteric Nervous System in Gut and Brain Disorders", + "type": "Child", + "id": "https://ror.org/01kbkse74" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "Child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "Child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "Child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "Child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "Child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "Child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "Child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "Child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénierie des Connaissances en e-Santé", + "type": "Child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "Child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "PremUP", + "type": "Child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "Child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "Child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "Child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "Child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Infection et inflammation", + "type": "Child", + "id": "https://ror.org/021sh3243" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Laboratoire physiopathologie et pharmacologie clinique de la douleur", + "type": "Child", + "id": "https://ror.org/02k243t26" + }, + { + "label": "Handicap neuromusculaire : Physiopathologie, Biothérapie et Pharmacologie appliquées", + "type": "Child", + "id": "https://ror.org/02nxezb95" + }, + { + "label": "COMETE - Mobilités : Vieillissement, pathologie, santé", + "type": "Child", + "id": "https://ror.org/018z38380" + }, + { + "label": "Endothélium, valvulopathies et insuffisance cardiaque", + "type": "Child", + "id": "https://ror.org/017ed2k28" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/035gq6r08" + }, + { + "label": "Center for Research in Transplantation and Translational Immunology", + "type": "Child", + "id": "https://ror.org/01165k395" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "Child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "methodS in Patient-centered outcomes and HEalth ResEarch", + "type": "Child", + "id": "https://ror.org/013m8h627" + }, + { + "label": "Translational Research in Gene Therapy", + "type": "Child", + "id": "https://ror.org/02tg88m31" + }, + { + "label": "Dynamique Microbienne associée aux Infections Urinaires et Respiratoires", + "type": "Child", + "id": "https://ror.org/01a6c6c20" + }, + { + "label": "Génomique du cancer et du cerveau", + "type": "Child", + "id": "https://ror.org/05k71g406" + }, + { + "label": "Unité de recherche interdisciplinaire pour la prévention et le traitement des cancers", + "type": "Child", + "id": "https://ror.org/04b8tg719" + }, + { + "label": "Neuroendocrine, Endocrine and Germinal Differentiation Communication", + "type": "Child", + "id": "https://ror.org/02yvdat18" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "Child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "Child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "Child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Neuroscience et Psychiatrie Translationnelle de Strasbourg", + "type": "Child", + "id": "https://ror.org/05dd6kb95" + }, + { + "label": "Immuno-Rhumathologie moléculaire", + "type": "Child", + "id": "https://ror.org/03k7yrw82" + }, + { + "label": "Laboratoire de Génétique Médicale", + "type": "Child", + "id": "https://ror.org/016wpzq40" + }, + { + "label": "CIC Rennes", + "type": "Child", + "id": "https://ror.org/02baj6743" + }, + { + "label": "UMS BioCore", + "type": "Child", + "id": "https://ror.org/04r5nwv94" + }, + { + "label": "Brain Tech Laboratory", + "type": "Child", + "id": "https://ror.org/01027m165" + }, + { + "label": "Laboratoire Biologie et Biotechnologie pour la Santé", + "type": "Child", + "id": "https://ror.org/0557vhy43" + }, + { + "label": "Hypoxie et Physiopathologies cardiovasculaires et respiratoires", + "type": "Child", + "id": "https://ror.org/0459x4g44" + }, + { + "label": "Haute Technologie Animale Grenobloise", + "type": "Child", + "id": "https://ror.org/03vyv3y87" + }, + { + "label": "Laboratoire Biosciences et bioingénierie pour la Santé", + "type": "Child", + "id": "https://ror.org/039j4x695" + }, + { + "label": "Adaptation, mesure et évaluation en santé. Approches interdisciplinaires", + "type": "Child", + "id": "https://ror.org/04dx32582" + }, + { + "label": "Structure Fédérative de Recherche Santé Lyon Est", + "type": "Child", + "id": "https://ror.org/05dh21g53" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Synchrotron Radiation for Biomedicine", + "type": "Child", + "id": "https://ror.org/01hrtf583" + }, + { + "label": "Pathogenesis and Control of Chronic and Emerging Infections", + "type": "Child", + "id": "https://ror.org/01yw9jt43" + }, + { + "label": "Institut Desbrest d'Epidémiologie et de Santé Publique", + "type": "Child", + "id": "https://ror.org/01dwzy755" + }, + { + "label": "Développement Embryonnaire, Fertilité et Environnement", + "type": "Child", + "id": "https://ror.org/019v7sr25" + }, + { + "label": "BioCampus Montpellier", + "type": "Child", + "id": "https://ror.org/04x7ec535" + }, + { + "label": "Institute for Neurosciences of Montpellier", + "type": "Child", + "id": "https://ror.org/0428ctr80" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.inserm.fr" + ], + "aliases": [], + "acronyms": [ + "INSERM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Inserm", + "labels": [ + { + "label": "French Institute of Health and Medical Research", + "iso639": "en" + }, + { + "label": "Institut National de la Santé et de la Recherche Médicale", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001677" + ], + "preferred": null + }, + "GRID": { + "all": "grid.7429.8", + "preferred": "grid.7429.8" + }, + "ISNI": { + "all": [ + "0000 0001 2186 6389" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1474517" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02vnd0e65.json b/v1.52/v1/02vnd0e65.json new file mode 100644 index 000000000..282aec21e --- /dev/null +++ b/v1.52/v1/02vnd0e65.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/02vnd0e65", + "name": "Laboratoire de Probabilités, Statistique et Modélisation", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Laboratoire de Probabilités et Modèles Aléatoires", + "type": "Predecessor", + "id": "https://ror.org/04hjc7403" + }, + { + "label": "Laboratoire de Statistique Théorique et Appliquée", + "type": "Predecessor", + "id": "https://ror.org/01vnn4t89" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lpsm.paris" + ], + "aliases": [ + "UMR 8001" + ], + "acronyms": [ + "LPSM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52605327" + ], + "preferred": "Q52605327" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02w0r2764.json b/v1.52/v1/02w0r2764.json new file mode 100644 index 000000000..8a8d274d3 --- /dev/null +++ b/v1.52/v1/02w0r2764.json @@ -0,0 +1,309 @@ +{ + "id": "https://ror.org/02w0r2764", + "name": "MAGIC Telescopes", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Institute for Physics", + "type": "Related", + "id": "https://ror.org/0079jjr10" + }, + { + "label": "Institute for High Energy Physics", + "type": "Related", + "id": "https://ror.org/01sdrjx85" + }, + { + "label": "University of Bergen", + "type": "Related", + "id": "https://ror.org/03zga2b32" + }, + { + "label": "Centro Brasileiro de Pesquisas Físicas", + "type": "Related", + "id": "https://ror.org/02wnmk332" + }, + { + "label": "Centro de Investigaciones Energéticas, Medioambientales y Tecnológicas", + "type": "Related", + "id": "https://ror.org/05xx77y52" + }, + { + "label": "Faculty of Electrical Engineering and Computing in Zagreb", + "type": "Related", + "id": "https://ror.org/04e90ca47" + }, + { + "label": "Rudjer Boskovic Institute", + "type": "Related", + "id": "https://ror.org/02mw21745" + }, + { + "label": "University of Osijek", + "type": "Related", + "id": "https://ror.org/05sw4wc49" + }, + { + "label": "University of Rijeka", + "type": "Related", + "id": "https://ror.org/05r8dqr10" + }, + { + "label": "University of Split", + "type": "Related", + "id": "https://ror.org/00m31ft63" + }, + { + "label": "Deutsches Elektronen-Synchrotron DESY", + "type": "Related", + "id": "https://ror.org/01js2sh04" + }, + { + "label": "TU Dortmund University", + "type": "Related", + "id": "https://ror.org/01k97gp34" + }, + { + "label": "ETH Zurich", + "type": "Related", + "id": "https://ror.org/05a28rw58" + }, + { + "label": "University of Oulu", + "type": "Related", + "id": "https://ror.org/03yj89h83" + }, + { + "label": "University of Turku", + "type": "Related", + "id": "https://ror.org/05vghhr25" + }, + { + "label": "University of Geneva", + "type": "Related", + "id": "https://ror.org/01swzsf04" + }, + { + "label": "Instituto de Astrofísica de Andalucía", + "type": "Related", + "id": "https://ror.org/04ka0vh05" + }, + { + "label": "Instituto de Astrofísica de Canarias", + "type": "Related", + "id": "https://ror.org/03cmntr54" + }, + { + "label": "National Institute for Astrophysics", + "type": "Related", + "id": "https://ror.org/02gh4kt33" + }, + { + "label": "INFN Sezione di Bari", + "type": "Related", + "id": "https://ror.org/022hq6c49" + }, + { + "label": "INFN Sezione di Catania", + "type": "Related", + "id": "https://ror.org/02pq29p90" + }, + { + "label": "INFN Sezione di Napoli", + "type": "Related", + "id": "https://ror.org/015kcdd40" + }, + { + "label": "INFN Sezione di Perugia", + "type": "Related", + "id": "https://ror.org/05478fx36" + }, + { + "label": "INFN Sezione di Roma II", + "type": "Related", + "id": "https://ror.org/025rrx658" + }, + { + "label": "INFN Sezione di Torino", + "type": "Related", + "id": "https://ror.org/01vj6ck58" + }, + { + "label": "Chiba University", + "type": "Related", + "id": "https://ror.org/01hjzeq58" + }, + { + "label": "Hiroshima University", + "type": "Related", + "id": "https://ror.org/03t78wx29" + }, + { + "label": "Institute for Cosmic Ray Research", + "type": "Related", + "id": "https://ror.org/008td3p62" + }, + { + "label": "Konan University", + "type": "Related", + "id": "https://ror.org/059b5pb30" + }, + { + "label": "Nagoya University", + "type": "Related", + "id": "https://ror.org/04chrp450" + }, + { + "label": "RIKEN", + "type": "Related", + "id": "https://ror.org/01sjwvz98" + }, + { + "label": "Tokai University", + "type": "Related", + "id": "https://ror.org/01p7qe739" + }, + { + "label": "Yamagata University", + "type": "Related", + "id": "https://ror.org/00xy44n04" + }, + { + "label": "University of Łódź", + "type": "Related", + "id": "https://ror.org/05cq64r17" + }, + { + "label": "Universidad Complutense de Madrid", + "type": "Related", + "id": "https://ror.org/02p0gd045" + }, + { + "label": "INFN Sezione di Padova", + "type": "Related", + "id": "https://ror.org/00z34yn88" + }, + { + "label": "INFN Sezione di Pisa", + "type": "Related", + "id": "https://ror.org/05symbg58" + }, + { + "label": "Saha Institute of Nuclear Physics", + "type": "Related", + "id": "https://ror.org/0491yz035" + }, + { + "label": "Institute for Nuclear Research and Nuclear Energy", + "type": "Related", + "id": "https://ror.org/0276rjc88" + }, + { + "label": "Universitat Autònoma de Barcelona", + "type": "Related", + "id": "https://ror.org/052g8jq94" + }, + { + "label": "Universitat de Barcelona", + "type": "Related", + "id": "https://ror.org/021018s57" + }, + { + "label": "INFN Sezione di Trieste", + "type": "Related", + "id": "https://ror.org/05j3snm48" + }, + { + "label": "University of Würzburg", + "type": "Related", + "id": "https://ror.org/00fbnyb24" + }, + { + "label": "International Center for Relativistic Astrophysics Network", + "type": "Related", + "id": "https://ror.org/03r97y618" + }, + { + "label": "A. Alikhanyan National Laboratory", + "type": "Related", + "id": "https://ror.org/00ad27c73" + } + ], + "addresses": [ + { + "lat": 28.81667, + "lng": -17.93333, + "state": null, + "state_code": null, + "city": "Garafía", + "geonames_city": { + "id": 2517346, + "city": "Garafía", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://magic.mpp.mpg.de" + ], + "aliases": [ + "MAGIC Collaboration", + "MAGIC Telescope", + "MAGIC Telescopes Collaboration", + "MAGIC Teleskope" + ], + "acronyms": [ + "MAGIC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/MAGIC_%28telescope%29", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q117227123" + ], + "preferred": "Q117227123" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02w0trx84.json b/v1.52/v1/02w0trx84.json new file mode 100644 index 000000000..da5be0de9 --- /dev/null +++ b/v1.52/v1/02w0trx84.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/02w0trx84", + "name": "Montana State University", + "email_address": null, + "ip_addresses": [], + "established": 1893, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Museum of the Rockies", + "type": "Child", + "id": "https://ror.org/01ve2ed25" + }, + { + "label": "Montana State University System", + "type": "Parent", + "id": "https://ror.org/0343myz07" + }, + { + "label": "Rocky Mountain Advanced Computing Consortium", + "type": "Related", + "id": "https://ror.org/019q0z051" + }, + { + "label": "Montana State University Foundation", + "type": "Child", + "id": "https://ror.org/01bj4g149" + } + ], + "addresses": [ + { + "lat": 45.67965, + "lng": -111.03856, + "state": null, + "state_code": null, + "city": "Bozeman", + "geonames_city": { + "id": 5641727, + "city": "Bozeman", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.montana.edu/" + ], + "aliases": [ + "Agricultural College of the State of Montana" + ], + "acronyms": [ + "MSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Montana_State_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100009501", + "100009502" + ], + "preferred": "100009501" + }, + "GRID": { + "all": "grid.41891.35", + "preferred": "grid.41891.35" + }, + "ISNI": { + "all": [ + "0000 0001 2156 6108" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1861687" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02w4exq36.json b/v1.52/v1/02w4exq36.json new file mode 100644 index 000000000..254720e7a --- /dev/null +++ b/v1.52/v1/02w4exq36.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/02w4exq36", + "name": "Genetic Improvement and Adaptation of Mediterranean and Tropical Plants", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://umr-agap.cirad.fr" + ], + "aliases": [ + "Agap Institut", + "Agap Institut Joint Research Unit", + "L'Unité Mixte de Recherche Agap Institut" + ], + "acronyms": [ + "AGAP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Amélioration Génétique et Adaptation des Plantes méditerranéennes et tropicales", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463758.b", + "preferred": "grid.463758.b" + }, + "ISNI": { + "all": [ + "0000 0004 0445 8705" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02w7rbf39.json b/v1.52/v1/02w7rbf39.json new file mode 100644 index 000000000..8f229b43a --- /dev/null +++ b/v1.52/v1/02w7rbf39.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02w7rbf39", + "name": "Chr. Michelsen Institute", + "email_address": null, + "ip_addresses": [], + "established": 1930, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 60.39299, + "lng": 5.32415, + "state": null, + "state_code": null, + "city": "Bergen", + "geonames_city": { + "id": 3161732, + "city": "Bergen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cmi.no" + ], + "aliases": [ + "Christian Michelsen Institute" + ], + "acronyms": [ + "CMI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Chr._Michelsen_Institute", + "labels": [], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "GRID": { + "all": "grid.424027.7", + "preferred": "grid.424027.7" + }, + "ISNI": { + "all": [ + "0000 0001 1089 4923" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5105606" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02wddde16.json b/v1.52/v1/02wddde16.json new file mode 100644 index 000000000..f15652f80 --- /dev/null +++ b/v1.52/v1/02wddde16.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02wddde16", + "name": "Distributed System of Scientific Collections", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Naturalis Biodiversity Center", + "type": "Related", + "id": "https://ror.org/0566bfb96" + } + ], + "addresses": [ + { + "lat": 52.15833, + "lng": 4.49306, + "state": null, + "state_code": null, + "city": "Leiden", + "geonames_city": { + "id": 2751773, + "city": "Leiden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dissco.eu" + ], + "aliases": [], + "acronyms": [ + "DiSSCo" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02we8vm03.json b/v1.52/v1/02we8vm03.json new file mode 100644 index 000000000..e0cceac75 --- /dev/null +++ b/v1.52/v1/02we8vm03.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/02we8vm03", + "name": "Fiat Chrysler Automobiles (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Fiat Chrysler Automobiles (France)", + "type": "Child", + "id": "https://ror.org/04fyd6s73" + }, + { + "label": "Fiat Chrysler Automobiles (Germany)", + "type": "Child", + "id": "https://ror.org/03n3c3r21" + }, + { + "label": "Fiat Chrysler Automobiles (Italy)", + "type": "Child", + "id": "https://ror.org/005m6rn77" + }, + { + "label": "Fiat Chrysler Automobiles (Japan)", + "type": "Child", + "id": "https://ror.org/058zth179" + }, + { + "label": "Fiat Chrysler Automobiles (United States)", + "type": "Child", + "id": "https://ror.org/03qxrge70" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fcagroup.com/en-US/Pages/home.aspx" + ], + "aliases": [ + "Fiat Group Automobiles" + ], + "acronyms": [ + "FCA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Fiat_Chrysler_Automobiles", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100019240" + ], + "preferred": "501100019240" + }, + "GRID": { + "all": "grid.497108.3", + "preferred": "grid.497108.3" + }, + "ISNI": { + "all": [ + "0000 0004 4901 9482" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q55454107" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02wnejx52.json b/v1.52/v1/02wnejx52.json new file mode 100644 index 000000000..740531fdc --- /dev/null +++ b/v1.52/v1/02wnejx52.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/02wnejx52", + "name": "National Academy of Legal Sciences of Ukraine", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "State Scientific Institution \"Institute of Information, Security and Law of the National Academy of Legal Sciences of Ukraine\"", + "type": "Child", + "id": "https://ror.org/05at5an04" + }, + { + "label": "National Academy of Sciences of Ukraine", + "type": "Parent", + "id": "https://ror.org/00je4t102" + }, + { + "label": "Scientific Research Institute of State Building and Local Government of the NALS of Ukraine", + "type": "Child", + "id": "https://ror.org/040jq3y94" + } + ], + "addresses": [ + { + "lat": 49.98081, + "lng": 36.25272, + "state": null, + "state_code": null, + "city": "Kharkiv", + "geonames_city": { + "id": 706483, + "city": "Kharkiv", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "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": { + "all": [ + "0000 0004 9517 9524" + ], + "preferred": "0000 0004 9517 9524" + }, + "Wikidata": { + "all": [ + "Q4314802" + ], + "preferred": "Q4314802" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02wwzvj46.json b/v1.52/v1/02wwzvj46.json new file mode 100644 index 000000000..380b74f71 --- /dev/null +++ b/v1.52/v1/02wwzvj46.json @@ -0,0 +1,206 @@ +{ + "id": "https://ror.org/02wwzvj46", + "name": "Université de Tours", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Biologie des Oiseaux et Aviculture", + "type": "Child", + "id": "https://ror.org/02y3mfk39" + }, + { + "label": "CItés, Territoires, Environnement et Sociétés", + "type": "Child", + "id": "https://ror.org/04ahza989" + }, + { + "label": "Centre d'Etudes Supérieures de la Renaissance", + "type": "Child", + "id": "https://ror.org/03cv31q28" + }, + { + "label": "Conditions Extrêmes et Matériaux Haute Température et Irradiation", + "type": "Child", + "id": "https://ror.org/02zs48f23" + }, + { + "label": "Imagerie et Cerveau", + "type": "Child", + "id": "https://ror.org/01eem7c55" + }, + { + "label": "Infectiologie Animale et Santé Publique", + "type": "Child", + "id": "https://ror.org/0454zjr22" + }, + { + "label": "Laboratoire d’Économie d’Orléans", + "type": "Child", + "id": "https://ror.org/03hp7bq97" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "Child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Centre de Recherches sur la Cognition et l'Apprentissage", + "type": "Child", + "id": "https://ror.org/01sdp1y98" + }, + { + "label": "Centre d'Étude des Pathologies Respiratoires", + "type": "Child", + "id": "https://ror.org/01vxptj17" + }, + { + "label": "Institut de Recherche sur la Biologie de l'Insecte UMR 7261", + "type": "Child", + "id": "https://ror.org/04rp2mn26" + }, + { + "label": "Laboratoire Ligérien de Linguistique", + "type": "Child", + "id": "https://ror.org/04s6f1186" + }, + { + "label": "Val de Loire Recherche en Management", + "type": "Child", + "id": "https://ror.org/04wgee362" + }, + { + "label": "Maison des Sciences de l'Homme Val de Loire", + "type": "Child", + "id": "https://ror.org/03v4gsj38" + }, + { + "label": "Laboratoire de Mécanique Gabriel Lamé", + "type": "Child", + "id": "https://ror.org/04f9thq51" + }, + { + "label": "Institut Denis Poisson", + "type": "Child", + "id": "https://ror.org/05djhd259" + }, + { + "label": "Niche leucémique et métabolisme oxydatif", + "type": "Child", + "id": "https://ror.org/03cvwf620" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "methodS in Patient-centered outcomes and HEalth ResEarch", + "type": "Child", + "id": "https://ror.org/013m8h627" + }, + { + "label": "Laboratoire d'Informatique Fondamentale et Appliquée de Tours", + "type": "Child", + "id": "https://ror.org/03r938j26" + }, + { + "label": "Centre Tourangeau d’Histoire et d’Études des Sources", + "type": "Child", + "id": "https://ror.org/01n9yr226" + } + ], + "addresses": [ + { + "lat": 47.39484, + "lng": 0.70398, + "state": null, + "state_code": null, + "city": "Tours", + "geonames_city": { + "id": 2972191, + "city": "Tours", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-tours.fr" + ], + "aliases": [ + "François Rabelais University", + "François Rabelais University of Tours" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Fran%C3%A7ois_Rabelais_University", + "labels": [ + { + "label": "University of Tours", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007526" + ], + "preferred": null + }, + "GRID": { + "all": "grid.12366.30", + "preferred": "grid.12366.30" + }, + "ISNI": { + "all": [ + "0000 0001 2182 6141" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q494335" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02wy3s959.json b/v1.52/v1/02wy3s959.json new file mode 100644 index 000000000..2768b48f7 --- /dev/null +++ b/v1.52/v1/02wy3s959.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/02wy3s959", + "name": "Laboratoire d'Énergétique Moléculaire et Macroscopique, Combustion", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CentraleSupélec", + "type": "Parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://em2c.centralesupelec.fr" + ], + "aliases": [ + "Laboratoire EM2C" + ], + "acronyms": [ + "EM2C" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462542.3", + "preferred": "grid.462542.3" + }, + "ISNI": { + "all": [ + "0000 0004 0369 2292" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261487" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02x722129.json b/v1.52/v1/02x722129.json new file mode 100644 index 000000000..cecb06bbc --- /dev/null +++ b/v1.52/v1/02x722129.json @@ -0,0 +1,70 @@ +{ + "id": "https://ror.org/02x722129", + "name": "Central Geological Laboratory of Mongolia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.90771, + "lng": 106.88324, + "state": null, + "state_code": null, + "city": "Ulaanbaatar", + "geonames_city": { + "id": 2028462, + "city": "Ulaanbaatar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "CGL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mongolia", + "country_code": "MN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02y1pfw65.json b/v1.52/v1/02y1pfw65.json new file mode 100644 index 000000000..881d684c0 --- /dev/null +++ b/v1.52/v1/02y1pfw65.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/02y1pfw65", + "name": "Tecnológico de Estudios Superiores de Ixtapaluca", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 19.31556, + "lng": -98.88284, + "state": null, + "state_code": null, + "city": "Ixtapaluca", + "geonames_city": { + "id": 3526682, + "city": "Ixtapaluca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tesi.org.mx" + ], + "aliases": [ + "Tec de Ixtapaluca, TESI", + "Tecnológico Nacional de México-Tecnológico de Estudios Superiores de Ixtapaluca", + "Tecnológico Nacional de México/Tecnológico de Estudios Superiores de Ixtapaluca" + ], + "acronyms": [ + "TESI" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Tecnol%C3%B3gico_de_Estudios_Superiores_de_Ixtapaluca", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02y22ws83.json b/v1.52/v1/02y22ws83.json new file mode 100644 index 000000000..528286a90 --- /dev/null +++ b/v1.52/v1/02y22ws83.json @@ -0,0 +1,130 @@ +{ + "id": "https://ror.org/02y22ws83", + "name": "Institute of Natural Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1846, + "types": [ + "Archive", + "Facility" + ], + "relationships": [ + { + "label": "European Marine Biological Resource Centre", + "type": "Related", + "id": "https://ror.org/0038zss60" + } + ], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.naturalsciences.be/" + ], + "aliases": [ + "Institut royal des Sciences Naturelles de Belgique", + "Koninklijk Belgisch Instituut voor Natuurwetenschappen", + "Königliches belgisches Institut für Naturwissenschaften", + "Museum of Natural Sciences", + "Royal Belgian Institute of Natural Sciences" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut des Sciences naturelles", + "iso639": "fr" + }, + { + "label": "Institut für Naturwissenschaften", + "iso639": "de" + }, + { + "label": "Institut royal des Sciences Naturelles de Belgique", + "iso639": "fr" + }, + { + "label": "Koninklijk Belgisch Instituut voor Natuurwetenschappen", + "iso639": "nl" + }, + { + "label": "Königliches belgisches Institut für Naturwissenschaften", + "iso639": "de" + }, + { + "label": "Royal Belgian Institute of Natural Sciences", + "iso639": "en" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100015628" + ], + "preferred": "501100015628" + }, + "GRID": { + "all": "grid.20478.39", + "preferred": "grid.20478.39" + }, + "ISNI": { + "all": [ + "0000 0001 2171 9581" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16665660" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02y3ad647.json b/v1.52/v1/02y3ad647.json new file mode 100644 index 000000000..ade8fd9df --- /dev/null +++ b/v1.52/v1/02y3ad647.json @@ -0,0 +1,158 @@ +{ + "id": "https://ror.org/02y3ad647", + "name": "University of Florida", + "email_address": null, + "ip_addresses": [], + "established": 1853, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Florida Medical Entomology Laboratory", + "type": "Child", + "id": "https://ror.org/02x2kaq51" + }, + { + "label": "Florida Sea Grant", + "type": "Child", + "id": "https://ror.org/01j5kpq29" + }, + { + "label": "National High Magnetic Field Laboratory", + "type": "Child", + "id": "https://ror.org/03s53g630" + }, + { + "label": "The Herbert Wertheim UF Scripps Institute for Biomedical Innovation & Technology", + "type": "Child", + "id": "https://ror.org/056pdzs28" + }, + { + "label": "State University System of Florida", + "type": "Parent", + "id": "https://ror.org/05sqd3t97" + }, + { + "label": "UF Health Shands Hospital", + "type": "Related", + "id": "https://ror.org/03kvbr153" + }, + { + "label": "University of Florida Health Science Center", + "type": "Related", + "id": "https://ror.org/0419bgt07" + }, + { + "label": "Konza Prairie Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/02wavzm11" + }, + { + "label": "Florida Museum of Natural History", + "type": "Child", + "id": "https://ror.org/02pjdv450" + } + ], + "addresses": [ + { + "lat": 29.65163, + "lng": -82.32483, + "state": null, + "state_code": null, + "city": "Gainesville", + "geonames_city": { + "id": 4156404, + "city": "Gainesville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ufl.edu/" + ], + "aliases": [ + "University of the State of Florida" + ], + "acronyms": [ + "UF" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Florida", + "labels": [ + { + "label": "Universidad de la Florida", + "iso639": "es" + }, + { + "label": "Université de floride", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007698", + "100007565", + "100007861", + "100008276", + "100001364", + "100009406", + "100008901", + "100016525" + ], + "preferred": "100007698" + }, + "GRID": { + "all": "grid.15276.37", + "preferred": "grid.15276.37" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8091" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q501758" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02ya5n776.json b/v1.52/v1/02ya5n776.json new file mode 100644 index 000000000..365ed0f82 --- /dev/null +++ b/v1.52/v1/02ya5n776.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/02ya5n776", + "name": "Technicolor (France)", + "email_address": null, + "ip_addresses": [], + "established": 1893, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Technicolor (Germany)", + "type": "Child", + "id": "https://ror.org/00besvm65" + }, + { + "label": "Technicolor (United States)", + "type": "Child", + "id": "https://ror.org/05ha8e826" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.technicolor.com/" + ], + "aliases": [ + "Thomson Inc", + "Thomson Multimedia" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Technicolor_SA", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.426216.5", + "preferred": "grid.426216.5" + }, + "ISNI": { + "all": [ + "0000 0004 4662 3510" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1365773" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02yg1pf55.json b/v1.52/v1/02yg1pf55.json new file mode 100644 index 000000000..2c8dedc8c --- /dev/null +++ b/v1.52/v1/02yg1pf55.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/02yg1pf55", + "name": "IBM Research (China)", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Company", + "Facility" + ], + "relationships": [ + { + "label": "IBM Research - Thomas J. Watson Research Center", + "type": "Parent", + "id": "https://ror.org/0265w5591" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://research.ibm.com/labs/china/index.shtml" + ], + "aliases": [ + "IBM China Research Laboratory", + "IBM Research - China" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/IBM_Research", + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.464581.a", + "preferred": "grid.464581.a" + }, + "ISNI": { + "all": [ + "0000 0004 0630 0661" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q16927991" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02ykxax89.json b/v1.52/v1/02ykxax89.json new file mode 100644 index 000000000..26541eb0e --- /dev/null +++ b/v1.52/v1/02ykxax89.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02ykxax89", + "name": "Kowa (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1894, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Kowa (Japan)", + "type": "Parent", + "id": "https://ror.org/009z2z347" + } + ], + "addresses": [ + { + "lat": 51.4112, + "lng": -0.83565, + "state": null, + "state_code": null, + "city": "Wokingham", + "geonames_city": { + "id": 2633708, + "city": "Wokingham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.kowapharmaceuticals.eu/" + ], + "aliases": [], + "acronyms": [ + "KRE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100011027" + ], + "preferred": "100011027" + }, + "GRID": { + "all": "grid.476468.f", + "preferred": "grid.476468.f" + }, + "ISNI": { + "all": [ + "0000 0004 0541 0615" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02ymav706.json b/v1.52/v1/02ymav706.json new file mode 100644 index 000000000..a053f7e13 --- /dev/null +++ b/v1.52/v1/02ymav706.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02ymav706", + "name": "British Association for Applied Linguistics", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.95763, + "lng": -1.08271, + "state": null, + "state_code": null, + "city": "York", + "geonames_city": { + "id": 2633352, + "city": "York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.baal.org.uk" + ], + "aliases": [], + "acronyms": [ + "BAAL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/British_Association_for_Applied_Linguistics", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100013491" + ], + "preferred": "100013491" + }, + "ISNI": { + "all": [ + "0000 0001 2034 9072" + ], + "preferred": "0000 0001 2034 9072" + }, + "Wikidata": { + "all": [ + "Q4969510" + ], + "preferred": "Q4969510" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02ymw8z06.json b/v1.52/v1/02ymw8z06.json new file mode 100644 index 000000000..39d3b9dd6 --- /dev/null +++ b/v1.52/v1/02ymw8z06.json @@ -0,0 +1,131 @@ +{ + "id": "https://ror.org/02ymw8z06", + "name": "University of Missouri", + "email_address": null, + "ip_addresses": [], + "established": 1839, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Missouri System", + "type": "Parent", + "id": "https://ror.org/032va1j59" + }, + { + "label": "Harry S. Truman Memorial Veterans' Hospital", + "type": "Related", + "id": "https://ror.org/01a4gqp27" + }, + { + "label": "University of Missouri Health System", + "type": "Related", + "id": "https://ror.org/03yp8z857" + }, + { + "label": "University of Missouri Hospital", + "type": "Related", + "id": "https://ror.org/05jadkj46" + }, + { + "label": "Taylor Geospatial Institute", + "type": "Related", + "id": "https://ror.org/0573j3j10" + } + ], + "addresses": [ + { + "lat": 38.95171, + "lng": -92.33407, + "state": null, + "state_code": null, + "city": "Columbia", + "geonames_city": { + "id": 4381982, + "city": "Columbia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://missouri.edu/" + ], + "aliases": [ + "University of Missouri–Columbia" + ], + "acronyms": [ + "MU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Missouri", + "labels": [ + { + "label": "Universidad de Misuri", + "iso639": "es" + }, + { + "label": "Université du Missouri", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007165" + ], + "preferred": "100007165" + }, + "GRID": { + "all": "grid.134936.a", + "preferred": "grid.134936.a" + }, + "ISNI": { + "all": [ + "0000 0001 2162 3504" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q579968" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02yqgb753.json b/v1.52/v1/02yqgb753.json new file mode 100644 index 000000000..347f4c7ac --- /dev/null +++ b/v1.52/v1/02yqgb753.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02yqgb753", + "name": "Life Sciences International Postgraduate Educational Center", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "UNESCO", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.biophys.am/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "GRID": { + "all": "grid.506497.9", + "preferred": "grid.506497.9" + }, + "Wikidata": { + "all": [ + "Q77077134" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02yt1th11.json b/v1.52/v1/02yt1th11.json new file mode 100644 index 000000000..33e75b686 --- /dev/null +++ b/v1.52/v1/02yt1th11.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/02yt1th11", + "name": "UR CONFLUENCE: Sciences et Humanités", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université catholique de lyon", + "type": "Parent", + "id": "https://ror.org/01anhj553" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ucly.fr/la-recherche/unite-de-recherche-confluence-sciences-humanites" + ], + "aliases": [ + "CONFLUENCE : Sciences et Humanités", + "CONFLUENCE Research Unit: Sciences and Humanities", + "Confluence: Sciences et Humanités", + "Confluence: Sciences et Humanités - UCLY", + "EA 1598", + "Sciences and Humanities Confluence Research Center", + "UR CONFLUENCE", + "UR CONFLUENCE: Sciences et Humanités (EA 1598)", + "Unité de Recherche CONFLUENCE: Sciences et Humanités (EA1598)" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/02za3fg58.json b/v1.52/v1/02za3fg58.json new file mode 100644 index 000000000..7182b3809 --- /dev/null +++ b/v1.52/v1/02za3fg58.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02za3fg58", + "name": "Eton College", + "email_address": null, + "ip_addresses": [], + "established": 1440, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.48333, + "lng": -0.6, + "state": null, + "state_code": null, + "city": "Windsor", + "geonames_city": { + "id": 2633842, + "city": "Windsor", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.etoncollege.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Eton_College", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100024088" + ], + "preferred": "501100024088" + }, + "GRID": { + "all": "grid.482809.f", + "preferred": "grid.482809.f" + }, + "ISNI": { + "all": [ + "0000 0001 2112 764X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q192088" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02zrwga81.json b/v1.52/v1/02zrwga81.json new file mode 100644 index 000000000..d92ff2a5e --- /dev/null +++ b/v1.52/v1/02zrwga81.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/02zrwga81", + "name": "Nekton", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nektonmission.org/" + ], + "aliases": [ + "Nekton Foundation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100024394" + ], + "preferred": "501100024394" + }, + "GRID": { + "all": "grid.511316.1", + "preferred": "grid.511316.1" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02zsxwr40.json b/v1.52/v1/02zsxwr40.json new file mode 100644 index 000000000..af3f9360b --- /dev/null +++ b/v1.52/v1/02zsxwr40.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/02zsxwr40", + "name": "University of Alabama in Huntsville", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Alabama Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/02rj8cx55" + }, + { + "label": "National Space Science and Technology Center", + "type": "Child", + "id": "https://ror.org/01s3dpm97" + }, + { + "label": "University of Alabama System", + "type": "Parent", + "id": "https://ror.org/051fvmk98" + }, + { + "label": "Severe Weather Institute - Radar & Lightning Laboratory", + "type": "Child", + "id": "https://ror.org/02abb9a79" + } + ], + "addresses": [ + { + "lat": 34.7304, + "lng": -86.58594, + "state": null, + "state_code": null, + "city": "Huntsville", + "geonames_city": { + "id": 4068590, + "city": "Huntsville", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uah.edu/" + ], + "aliases": [], + "acronyms": [ + "UAH" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Alabama_in_Huntsville", + "labels": [ + { + "label": "Université d'alabama à huntsville", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100011479" + ], + "preferred": "100011479" + }, + "GRID": { + "all": "grid.265893.3", + "preferred": "grid.265893.3" + }, + "ISNI": { + "all": [ + "0000 0000 8796 4945" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1783148" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/02zv2b697.json b/v1.52/v1/02zv2b697.json new file mode 100644 index 000000000..73892796b --- /dev/null +++ b/v1.52/v1/02zv2b697.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02zv2b697", + "name": "Tecnológico de Estudios Superiores de Valle de Bravo", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 19.19501, + "lng": -100.13132, + "state": null, + "state_code": null, + "city": "Valle de Bravo", + "geonames_city": { + "id": 3980621, + "city": "Valle de Bravo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tesvb.edomex.gob.mx" + ], + "aliases": [ + "TES Valle de Bravo", + "TecNM Valle de Bravo", + "Tecnológico Nacional de México de Valle de Bravo" + ], + "acronyms": [ + "TESVB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/0305k8y39.json b/v1.52/v1/0305k8y39.json new file mode 100644 index 000000000..2f65546fd --- /dev/null +++ b/v1.52/v1/0305k8y39.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0305k8y39", + "name": "NFDI4Health", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 53.07582, + "lng": 8.80717, + "state": null, + "state_code": null, + "city": "Bremen", + "geonames_city": { + "id": 2944388, + "city": "Bremen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nfdi4health.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "NFDI consortium for Personal Health Data", + "iso639": "en" + }, + { + "label": "Nationale Forschungsdateninfrastruktur für personenbezogene Gesundheitsdaten", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q98380343" + ], + "preferred": "Q98380343" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/030deh410.json b/v1.52/v1/030deh410.json new file mode 100644 index 000000000..7ae32e450 --- /dev/null +++ b/v1.52/v1/030deh410.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/030deh410", + "name": "IHE Delft Institute for Water Education", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "UNESCO", + "type": "Related", + "id": "https://ror.org/04h4z8k05" + } + ], + "addresses": [ + { + "lat": 52.00667, + "lng": 4.35556, + "state": null, + "state_code": null, + "city": "Delft", + "geonames_city": { + "id": 2757345, + "city": "Delft", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.un-ihe.org/" + ], + "aliases": [ + "International Institute for Hydraulic and Environmental Engineering", + "UNESCO-IHE", + "UNESCO-IHE Institute for Water Education" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/UNESCO-IHE", + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "GRID": { + "all": "grid.420326.1", + "preferred": "grid.420326.1" + }, + "ISNI": { + "all": [ + "0000 0004 0624 5658" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q834678" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/030syve83.json b/v1.52/v1/030syve83.json new file mode 100644 index 000000000..3332f9e7a --- /dev/null +++ b/v1.52/v1/030syve83.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/030syve83", + "name": "Observatoire Midi-Pyrénées", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.omp.eu" + ], + "aliases": [], + "acronyms": [ + "OMP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.440476.5", + "preferred": "grid.440476.5" + }, + "ISNI": { + "all": [ + "0000 0001 0730 0223" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3348333" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/030tbdr67.json b/v1.52/v1/030tbdr67.json new file mode 100644 index 000000000..2c427cf0b --- /dev/null +++ b/v1.52/v1/030tbdr67.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/030tbdr67", + "name": "Chittagong Medical University", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.3384, + "lng": 91.83168, + "state": null, + "state_code": null, + "city": "Chittagong", + "geonames_city": { + "id": 1205733, + "city": "Chittagong", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cmu.edu.bd" + ], + "aliases": [], + "acronyms": [ + "CMU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Chittagong_Medical_University", + "labels": [ + { + "label": "চট্টগ্রাম মেডিকেল বিশ্ববিদ্যালয়", + "iso639": "bn" + }, + { + "label": "சிட்டகாங் மருத்துவப் பல்கலைக்கழகம்", + "iso639": "ta" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q19891182" + ], + "preferred": "Q19891182" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0310v3480.json b/v1.52/v1/0310v3480.json new file mode 100644 index 000000000..94401fbc7 --- /dev/null +++ b/v1.52/v1/0310v3480.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/0310v3480", + "name": "NFDI4Memory", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 49.98419, + "lng": 8.2791, + "state": null, + "state_code": null, + "city": "Mainz", + "geonames_city": { + "id": 2874225, + "city": "Mainz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://4memory.de" + ], + "aliases": [ + "Consortium for the Historically Oriented Humanities", + "Konsortium für die historisch orientierten Geisteswissenschaften" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q98231721" + ], + "preferred": "Q98231721" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/031m8s392.json b/v1.52/v1/031m8s392.json new file mode 100644 index 000000000..b5b68d1f7 --- /dev/null +++ b/v1.52/v1/031m8s392.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/031m8s392", + "name": "New York Sea Grant", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Cornell University", + "type": "Parent", + "id": "https://ror.org/05bnh6r87" + }, + { + "label": "National Oceanic and Atmospheric Administration", + "type": "Parent", + "id": "https://ror.org/02z5nhe81" + }, + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Stony Brook University", + "type": "Parent", + "id": "https://ror.org/05qghxh33" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.seagrant.sunysb.edu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100005775" + ], + "preferred": null + }, + "GRID": { + "all": "grid.454120.6", + "preferred": "grid.454120.6" + }, + "ISNI": { + "all": [ + "0000 0004 1064 6382" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30297080" + ], + "preferred": "Q30297080" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/033200e31.json b/v1.52/v1/033200e31.json new file mode 100644 index 000000000..29c3b7bbf --- /dev/null +++ b/v1.52/v1/033200e31.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/033200e31", + "name": "Gryphon Scientific (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Deloitte (United States)", + "type": "Successor", + "id": "https://ror.org/03xkm6e60" + } + ], + "addresses": [ + { + "lat": 38.97789, + "lng": -77.00748, + "state": null, + "state_code": null, + "city": "Takoma Park", + "geonames_city": { + "id": 4370890, + "city": "Takoma Park", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.gryphonscientific.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.420517.5", + "preferred": "grid.420517.5" + }, + "ISNI": { + "all": [ + "0000 0004 0490 0428" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0336f3190.json b/v1.52/v1/0336f3190.json new file mode 100644 index 000000000..33cb213c5 --- /dev/null +++ b/v1.52/v1/0336f3190.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/0336f3190", + "name": "Tecnológico Nacional de México Campus Cancún", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 21.17429, + "lng": -86.84656, + "state": null, + "state_code": null, + "city": "Cancún", + "geonames_city": { + "id": 3531673, + "city": "Cancún", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cancun.tecnm.mx" + ], + "aliases": [ + "TecNM Campus Cancún" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/033xr5946.json b/v1.52/v1/033xr5946.json new file mode 100644 index 000000000..bd11797bd --- /dev/null +++ b/v1.52/v1/033xr5946.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/033xr5946", + "name": "Tecnológico Nacional de México Campus Ciudad Valles", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 21.99631, + "lng": -99.01093, + "state": null, + "state_code": null, + "city": "Ciudad Valles", + "geonames_city": { + "id": 3483849, + "city": "Ciudad Valles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tecvalles.mx/wp/" + ], + "aliases": [ + "Instituto Tecnológico de Ciudad Valles", + "TecNM Campus Ciudad Valles" + ], + "acronyms": [ + "ITCV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/033zmj163.json b/v1.52/v1/033zmj163.json new file mode 100644 index 000000000..3fd9bcfc2 --- /dev/null +++ b/v1.52/v1/033zmj163.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/033zmj163", + "name": "SUNY Plattsburgh", + "email_address": null, + "ip_addresses": [], + "established": 1889, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Lake Champlain Sea Grant", + "type": "Child", + "id": "https://ror.org/05k70qf45" + }, + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 44.69949, + "lng": -73.45291, + "state": null, + "state_code": null, + "city": "Plattsburgh", + "geonames_city": { + "id": 5131692, + "city": "Plattsburgh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.plattsburgh.edu" + ], + "aliases": [ + "Plattsburgh State", + "State University of New York Plattsburgh" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Plattsburgh", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007288" + ], + "preferred": null + }, + "GRID": { + "all": "grid.264274.1", + "preferred": "grid.264274.1" + }, + "ISNI": { + "all": [ + "0000 0001 0724 5877" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7603626" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/034741m06.json b/v1.52/v1/034741m06.json new file mode 100644 index 000000000..9976d37f5 --- /dev/null +++ b/v1.52/v1/034741m06.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/034741m06", + "name": "Institute of Advanced Manufacturing Technology", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Lukasiewicz Research Network - Krakow Institute of Technology", + "type": "Successor", + "id": "https://ror.org/039bged65" + } + ], + "addresses": [ + { + "lat": 50.06143, + "lng": 19.93658, + "state": null, + "state_code": null, + "city": "Krakow", + "geonames_city": { + "id": 3094802, + "city": "Krakow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ios.krakow.pl/" + ], + "aliases": [ + "Institute of Metal Cutting", + "Instytut Obrobki Skrawaniem", + "Instytut Zaawansowanych Technologii Wytwarzania" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "GRID": { + "all": "grid.438393.6", + "preferred": "grid.438393.6" + }, + "ISNI": { + "all": [ + "0000 0001 1017 6315" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/034jrey59.json b/v1.52/v1/034jrey59.json new file mode 100644 index 000000000..09eadb8f1 --- /dev/null +++ b/v1.52/v1/034jrey59.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/034jrey59", + "name": "Zhenhai District Center for Disease Control and Prevention", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 29.87819, + "lng": 121.54945, + "state": null, + "state_code": null, + "city": "Ningbo", + "geonames_city": { + "id": 1799397, + "city": "Ningbo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Zhenhai CDC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "镇海区疾病预防控制中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/034nc1205.json b/v1.52/v1/034nc1205.json new file mode 100644 index 000000000..b007f047f --- /dev/null +++ b/v1.52/v1/034nc1205.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/034nc1205", + "name": "Institut de Nanociència i Nanotecnologia de la Universitat de Barcelona", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Universitat de Barcelona", + "type": "Parent", + "id": "https://ror.org/021018s57" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ub.edu/in2ub/" + ], + "aliases": [ + "Institut de Nanociència i Nanotecnologia", + "Institute of Nanoscience and Nanotechnology", + "Instituto de Nanociencia y Nanotecnología" + ], + "acronyms": [ + "IN2", + "IN2UB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Nanoscience and Nanotechnology of the University of Barcelona", + "iso639": "en" + }, + { + "label": "Instituto de Nanociencia y Nanotecnología de la Universitat de Barcelona", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/034pbpe12.json b/v1.52/v1/034pbpe12.json new file mode 100644 index 000000000..35bd68f23 --- /dev/null +++ b/v1.52/v1/034pbpe12.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/034pbpe12", + "name": "FAIRmat", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fairmat-nfdi.eu" + ], + "aliases": [ + "FAIRmat" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "FAIRe Dateninfrastruktur für die Physik der kondensierten Materie und die chemische Physik fester Stoffe", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q108542373" + ], + "preferred": "Q108542373" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/034rkw812.json b/v1.52/v1/034rkw812.json new file mode 100644 index 000000000..29b639920 --- /dev/null +++ b/v1.52/v1/034rkw812.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/034rkw812", + "name": "BioIVT (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Sekisui XenoTech (United States)", + "type": "Child", + "id": "https://ror.org/04hjzsd20" + } + ], + "addresses": [ + { + "lat": 40.75566, + "lng": -73.58763, + "state": null, + "state_code": null, + "city": "Westbury", + "geonames_city": { + "id": 5144040, + "city": "Westbury", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bioivt.com" + ], + "aliases": [ + "BioreclamationIVT" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "BioIVT", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q124545356" + ], + "preferred": "Q124545356" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/034t30j35.json b/v1.52/v1/034t30j35.json new file mode 100644 index 000000000..2d6f1361d --- /dev/null +++ b/v1.52/v1/034t30j35.json @@ -0,0 +1,820 @@ +{ + "id": "https://ror.org/034t30j35", + "name": "Chinese Academy of Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Academy of Mathematics and Systems Science", + "type": "Child", + "id": "https://ror.org/02jkmyk67" + }, + { + "label": "Academy of Opto-Electronics", + "type": "Child", + "id": "https://ror.org/04acsr153" + }, + { + "label": "Aerospace Information Research Institute", + "type": "Child", + "id": "https://ror.org/0419fj215" + }, + { + "label": "Beijing Advanced Sciences and Innovation Center", + "type": "Child", + "id": "https://ror.org/05qm21180" + }, + { + "label": "Beijing Institute of Genomics", + "type": "Child", + "id": "https://ror.org/049gn7z52" + }, + { + "label": "Botanical Society of China", + "type": "Child", + "id": "https://ror.org/028fy7q25" + }, + { + "label": "Center for Excellence in Brain Science and Intelligence Technology", + "type": "Child", + "id": "https://ror.org/00vpwhm04" + }, + { + "label": "Center for Excellence in Molecular Cell Science", + "type": "Child", + "id": "https://ror.org/02rrdvm96" + }, + { + "label": "Center for Excellence in Molecular Plant Sciences", + "type": "Child", + "id": "https://ror.org/04ew43640" + }, + { + "label": "Changchun Institute of Applied Chemistry", + "type": "Child", + "id": "https://ror.org/00h52n341" + }, + { + "label": "Changchun Institute of Optics, Fine Mechanics and Physics", + "type": "Child", + "id": "https://ror.org/012rct222" + }, + { + "label": "Chengdu Institute of Biology", + "type": "Child", + "id": "https://ror.org/04w5etv87" + }, + { + "label": "Chongqing Institute of Green and Intelligent Technology", + "type": "Child", + "id": "https://ror.org/031npqv35" + }, + { + "label": "Computer Network Information Center", + "type": "Child", + "id": "https://ror.org/01s0wyf50" + }, + { + "label": "Dalian Institute of Chemical Physics", + "type": "Child", + "id": "https://ror.org/00prkya54" + }, + { + "label": "Fujian Institute of Research on the Structure of Matter", + "type": "Child", + "id": "https://ror.org/02j89k719" + }, + { + "label": "Guangzhou Institute of Energy Conversion", + "type": "Child", + "id": "https://ror.org/047qgg117" + }, + { + "label": "Guangzhou Institute of Geochemistry", + "type": "Child", + "id": "https://ror.org/0356cst02" + }, + { + "label": "Guangzhou Institutes of Biomedicine and Health", + "type": "Child", + "id": "https://ror.org/02c31t502" + }, + { + "label": "Hefei Institutes of Physical Science", + "type": "Child", + "id": "https://ror.org/046n57345" + }, + { + "label": "Institut Pasteur of Shanghai", + "type": "Child", + "id": "https://ror.org/00w78qy64" + }, + { + "label": "Institute for History of Natural Sciences", + "type": "Child", + "id": "https://ror.org/00qae8971" + }, + { + "label": "Institute of Acoustics", + "type": "Child", + "id": "https://ror.org/00v8rqv75" + }, + { + "label": "Institute of Applied Ecology", + "type": "Child", + "id": "https://ror.org/01thb7525" + }, + { + "label": "Institute of Atmospheric Physics", + "type": "Child", + "id": "https://ror.org/0424h4e32" + }, + { + "label": "Institute of Automation", + "type": "Child", + "id": "https://ror.org/022c3hy66" + }, + { + "label": "Institute of Biophysics", + "type": "Child", + "id": "https://ror.org/01tyv8576" + }, + { + "label": "Institute of Botany", + "type": "Child", + "id": "https://ror.org/05hr3ch11" + }, + { + "label": "Institute of Chemistry", + "type": "Child", + "id": "https://ror.org/048y1rc66" + }, + { + "label": "Institute of Coal Chemistry", + "type": "Child", + "id": "https://ror.org/05j73fd60" + }, + { + "label": "Institute of Computing Technology", + "type": "Child", + "id": "https://ror.org/0090r4d87" + }, + { + "label": "Institute of Deep-Sea Science and Engineering", + "type": "Child", + "id": "https://ror.org/050spgz68" + }, + { + "label": "Institute of Earth Environment", + "type": "Child", + "id": "https://ror.org/04nps9965" + }, + { + "label": "Institute of Electrical Engineering", + "type": "Child", + "id": "https://ror.org/033js6g46" + }, + { + "label": "Institute of Electronics", + "type": "Child", + "id": "https://ror.org/01z143507" + }, + { + "label": "Institute of Engineering Thermophysics", + "type": "Child", + "id": "https://ror.org/031zj0q48" + }, + { + "label": "Institute of Genetics and Developmental Biology", + "type": "Child", + "id": "https://ror.org/02aee5m12" + }, + { + "label": "Institute of Geochemistry", + "type": "Child", + "id": "https://ror.org/049d6bh38" + }, + { + "label": "Institute of Geodesy and Geophysics", + "type": "Child", + "id": "https://ror.org/01gkn6j11" + }, + { + "label": "Institute of Geographic Sciences and Natural Resources Research", + "type": "Child", + "id": "https://ror.org/04t1cdb72" + }, + { + "label": "Institute of Geology and Geophysics", + "type": "Child", + "id": "https://ror.org/030vmwa78" + }, + { + "label": "Institute of High Energy Physics", + "type": "Child", + "id": "https://ror.org/03v8tnc06" + }, + { + "label": "Institute of Hydrobiology", + "type": "Child", + "id": "https://ror.org/00b4mx203" + }, + { + "label": "Institute of Information Engineering", + "type": "Child", + "id": "https://ror.org/04r53se39" + }, + { + "label": "Institute of Mechanics", + "type": "Child", + "id": "https://ror.org/057jnjd73" + }, + { + "label": "Institute of Metals Research", + "type": "Child", + "id": "https://ror.org/03pa1rf77" + }, + { + "label": "Institute of Microbiology", + "type": "Child", + "id": "https://ror.org/047yhep71" + }, + { + "label": "Institute of Microelectronics", + "type": "Child", + "id": "https://ror.org/02s6gs133" + }, + { + "label": "Institute of Modern Physics", + "type": "Child", + "id": "https://ror.org/03x8rhq63" + }, + { + "label": "Institute of Mountain Hazards and Environment", + "type": "Child", + "id": "https://ror.org/02z0nsb22" + }, + { + "label": "Institute of Oceanology", + "type": "Child", + "id": "https://ror.org/018yw5541" + }, + { + "label": "Institute of Optics and Electronics, Chinese Academy of Sciences", + "type": "Child", + "id": "https://ror.org/02bn68w95" + }, + { + "label": "Institute of Physics", + "type": "Child", + "id": "https://ror.org/05cvf7v30" + }, + { + "label": "Institute of Process Engineering", + "type": "Child", + "id": "https://ror.org/03j4x9j18" + }, + { + "label": "Institute of Psychology, Chinese Academy of Sciences", + "type": "Child", + "id": "https://ror.org/03j7v5j15" + }, + { + "label": "Institute of Remote Sensing and Digital Earth", + "type": "Child", + "id": "https://ror.org/02cjszf03" + }, + { + "label": "Institute of Rock and Soil Mechanics", + "type": "Child", + "id": "https://ror.org/0366c6s65" + }, + { + "label": "Institute of Semiconductors", + "type": "Child", + "id": "https://ror.org/048dd0611" + }, + { + "label": "Institute of Software", + "type": "Child", + "id": "https://ror.org/033dfsn42" + }, + { + "label": "Institute of Soil Science", + "type": "Child", + "id": "https://ror.org/05nj8ma95" + }, + { + "label": "Institute of Subtropical Agriculture", + "type": "Child", + "id": "https://ror.org/01hh9ag93" + }, + { + "label": "Institute of Theoretical Physics", + "type": "Child", + "id": "https://ror.org/02xtbq882" + }, + { + "label": "Institute of Tibetan Plateau Research", + "type": "Child", + "id": "https://ror.org/03zn6c508" + }, + { + "label": "Institute of Urban Environment", + "type": "Child", + "id": "https://ror.org/025gq5q04" + }, + { + "label": "Institute of Vertebrate Paleontology and Paleoanthropology", + "type": "Child", + "id": "https://ror.org/0000pmw59" + }, + { + "label": "Institute of Zoology", + "type": "Child", + "id": "https://ror.org/05skxkv18" + }, + { + "label": "Institutes of Science and Development", + "type": "Child", + "id": "https://ror.org/02ce9qs13" + }, + { + "label": "Kunming Institute of Botany", + "type": "Child", + "id": "https://ror.org/02e5hx313" + }, + { + "label": "Kunming Institute of Zoology", + "type": "Child", + "id": "https://ror.org/03m0vk445" + }, + { + "label": "Lanzhou Institute of Chemical Physics", + "type": "Child", + "id": "https://ror.org/007ffzr57" + }, + { + "label": "Nanjing Institute of Geography and Limnology", + "type": "Child", + "id": "https://ror.org/03k6r8t20" + }, + { + "label": "Nanjing Institute of Geology and Paleontology", + "type": "Child", + "id": "https://ror.org/019av8481" + }, + { + "label": "National Astronomical Observatories", + "type": "Child", + "id": "https://ror.org/058pyyv44" + }, + { + "label": "National Center for Nanoscience and Technology", + "type": "Child", + "id": "https://ror.org/04f49ff35" + }, + { + "label": "National Science Library", + "type": "Child", + "id": "https://ror.org/04ndjyr10" + }, + { + "label": "National Space Science Center", + "type": "Child", + "id": "https://ror.org/02nnjtm50" + }, + { + "label": "National Time Service Center", + "type": "Child", + "id": "https://ror.org/00655qp86" + }, + { + "label": "Ningbo Institute of Industrial Technology", + "type": "Child", + "id": "https://ror.org/05nqg3g04" + }, + { + "label": "Northeast Institute of Geography and Agroecology", + "type": "Child", + "id": "https://ror.org/01a9z1q73" + }, + { + "label": "Northwest Institute of Eco-Environment and Resources", + "type": "Child", + "id": "https://ror.org/01jz1e142" + }, + { + "label": "Purple Mountain Observatory", + "type": "Child", + "id": "https://ror.org/02eb4t121" + }, + { + "label": "Qingdao Institute of Bioenergy and Bioprocess Technology", + "type": "Child", + "id": "https://ror.org/05h3vcy91" + }, + { + "label": "Research Center for Eco-Environmental Sciences", + "type": "Child", + "id": "https://ror.org/03rpsvy57" + }, + { + "label": "Shanghai Advanced Research Institute", + "type": "Child", + "id": "https://ror.org/02br7py06" + }, + { + "label": "Shanghai Astronomical Observatory", + "type": "Child", + "id": "https://ror.org/003n8re58" + }, + { + "label": "Shanghai Institute of Applied Physics", + "type": "Child", + "id": "https://ror.org/02w6gr951" + }, + { + "label": "Shanghai Institute of Ceramics", + "type": "Child", + "id": "https://ror.org/05etnz140" + }, + { + "label": "Shanghai Institute of Materia Medica", + "type": "Child", + "id": "https://ror.org/022syn853" + }, + { + "label": "Shanghai Institute of Microsystem and Information Technology", + "type": "Child", + "id": "https://ror.org/04nytyj38" + }, + { + "label": "Shanghai Institute of Nutrition and Health", + "type": "Child", + "id": "https://ror.org/00rytkh49" + }, + { + "label": "Shanghai Institute of Optics and Fine Mechanics", + "type": "Child", + "id": "https://ror.org/03g897070" + }, + { + "label": "Shanghai Institute of Organic Chemistry", + "type": "Child", + "id": "https://ror.org/01y3hvq34" + }, + { + "label": "Shanghai Institute of Technical Physics", + "type": "Child", + "id": "https://ror.org/02txedb84" + }, + { + "label": "Shanghai Institutes for Biological Sciences", + "type": "Child", + "id": "https://ror.org/011rf9d86" + }, + { + "label": "Shenyang Institute of Automation", + "type": "Child", + "id": "https://ror.org/00ft6nj33" + }, + { + "label": "Shenzhen Institutes of Advanced Technology", + "type": "Child", + "id": "https://ror.org/04gh4er46" + }, + { + "label": "South China Botanical Garden", + "type": "Child", + "id": "https://ror.org/01xqdxh54" + }, + { + "label": "South China Sea Institute Of Oceanology", + "type": "Child", + "id": "https://ror.org/0192yj155" + }, + { + "label": "Suzhou Institute of Biomedical Engineering and Technology", + "type": "Child", + "id": "https://ror.org/00f58mx93" + }, + { + "label": "Suzhou Institute of Nano-tech and Nano-bionics", + "type": "Child", + "id": "https://ror.org/0027d9x02" + }, + { + "label": "Technical Institute of Physics and Chemistry", + "type": "Child", + "id": "https://ror.org/04akaak77" + }, + { + "label": "Technology and Engineering Center for Space Utilization", + "type": "Child", + "id": "https://ror.org/00cn03n83" + }, + { + "label": "Tianjin Institute of Industrial Biotechnology", + "type": "Child", + "id": "https://ror.org/042pyga86" + }, + { + "label": "University of Chinese Academy of Sciences", + "type": "Child", + "id": "https://ror.org/05qbk4x57" + }, + { + "label": "University of Science and Technology of China", + "type": "Child", + "id": "https://ror.org/04c4dkn09" + }, + { + "label": "Wuhan Botanical Garden", + "type": "Child", + "id": "https://ror.org/02j0gyf89" + }, + { + "label": "Wuhan Institute of Physics and Mathematics", + "type": "Child", + "id": "https://ror.org/00zky9d41" + }, + { + "label": "Wuhan Institute of Virology", + "type": "Child", + "id": "https://ror.org/01jxjav08" + }, + { + "label": "Xi'an Institute of Optics and Precision Mechanics", + "type": "Child", + "id": "https://ror.org/0444j5556" + }, + { + "label": "Xinjiang Institute of Ecology and Geography", + "type": "Child", + "id": "https://ror.org/01a8ev928" + }, + { + "label": "Xinjiang Technical Institute of Physics & Chemistry", + "type": "Child", + "id": "https://ror.org/00x44h034" + }, + { + "label": "Xishuangbanna Tropical Botanical Garden", + "type": "Child", + "id": "https://ror.org/02rz58g17" + }, + { + "label": "Yantai Institute of Coastal Zone Research", + "type": "Child", + "id": "https://ror.org/01pab2602" + }, + { + "label": "Innovation Academy for Microsatellites of Chinese Academy of Sciences", + "type": "Child", + "id": "https://ror.org/05f6mer85" + }, + { + "label": "Northwest Institute of Plateau Biology", + "type": "Child", + "id": "https://ror.org/03ep8d157" + }, + { + "label": "Sino-Africa Joint Research Center", + "type": "Child", + "id": "https://ror.org/02t7c3b83" + }, + { + "label": "Key Laboratory of Zoological Systematics and Evolution", + "type": "Child", + "id": "https://ror.org/04dxnaz06" + }, + { + "label": "Beijing Institute of Nanoenergy and Nanosystems", + "type": "Related", + "id": "https://ror.org/030k21z47" + }, + { + "label": "Bureau of International Cooperation", + "type": "Related", + "id": "https://ror.org/01m909h91" + }, + { + "label": "Chengdu Organic Chemicals (China)", + "type": "Related", + "id": "https://ror.org/01nmxvn49" + }, + { + "label": "China Center of Advanced Science and Technology", + "type": "Related", + "id": "https://ror.org/02egfyg20" + }, + { + "label": "Cloud Computing Center", + "type": "Related", + "id": "https://ror.org/04aa0zm65" + }, + { + "label": "Fairy Lake Botanical Garden", + "type": "Related", + "id": "https://ror.org/00qzhtm25" + }, + { + "label": "Guangdong Academy of Sciences", + "type": "Related", + "id": "https://ror.org/01g9hkj35" + }, + { + "label": "Guangxi Institute of Botany", + "type": "Related", + "id": "https://ror.org/00ff97g12" + }, + { + "label": "Guangzhou Chemistry (China)", + "type": "Related", + "id": "https://ror.org/01mfkkh63" + }, + { + "label": "Guangzhou Electronic Technology (China)", + "type": "Related", + "id": "https://ror.org/03rq35s79" + }, + { + "label": "Guangzhou Institute of Advanced Technology", + "type": "Related", + "id": "https://ror.org/01vcw4681" + }, + { + "label": "Institute of Hydroecology", + "type": "Related", + "id": "https://ror.org/05bkrjx06" + }, + { + "label": "Institute of Industry Technology Guangzhou", + "type": "Related", + "id": "https://ror.org/01a1ft290" + }, + { + "label": "Institute of Porous Flow and Fluid Mechanics", + "type": "Related", + "id": "https://ror.org/01n1cbn15" + }, + { + "label": "Institute of Soil and Water Conservation", + "type": "Related", + "id": "https://ror.org/013wv8d67" + }, + { + "label": "Lushan Botanical Garden", + "type": "Related", + "id": "https://ror.org/02xr9bp50" + }, + { + "label": "Microbiology Institute of Shaanxi", + "type": "Related", + "id": "https://ror.org/02wt4jg41" + }, + { + "label": "National Center for Mathematics and Interdisciplinary Sciences", + "type": "Related", + "id": "https://ror.org/00s97k668" + }, + { + "label": "Quanzhou Institute of Equipment Manufacturing Haixi Institute", + "type": "Related", + "id": "https://ror.org/05ev3vr27" + }, + { + "label": "Shaanxi Institute of Zoology", + "type": "Related", + "id": "https://ror.org/05d5nhn14" + }, + { + "label": "Shanghai Chenshan Plant Science Research Center", + "type": "Related", + "id": "https://ror.org/03nb8cd76" + }, + { + "label": "Shenyang Institute of Computing Technology (China)", + "type": "Related", + "id": "https://ror.org/02xqp7x96" + }, + { + "label": "Tianjin Institute of Advanced Technology", + "type": "Related", + "id": "https://ror.org/02tthqe19" + }, + { + "label": "Xiamen Institute of Rare-earth Materials", + "type": "Related", + "id": "https://ror.org/00hwty226" + }, + { + "label": "Youth Innovation Promotion Association", + "type": "Related", + "id": "https://ror.org/031141b54" + }, + { + "label": "Zhong Ke San Huan (China)", + "type": "Related", + "id": "https://ror.org/031mqp384" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://english.cas.cn/" + ], + "aliases": [], + "acronyms": [ + "CAS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Chinese_Academy_of_Sciences", + "labels": [ + { + "label": "中国科学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002367", + "501100005151", + "501100003165", + "501100018527", + "501100012430", + "501100013494" + ], + "preferred": "501100002367" + }, + "GRID": { + "all": "grid.9227.e", + "preferred": "grid.9227.e" + }, + "ISNI": { + "all": [ + "0000 0001 1957 3309" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q530471" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/035f5f914.json b/v1.52/v1/035f5f914.json new file mode 100644 index 000000000..9db680032 --- /dev/null +++ b/v1.52/v1/035f5f914.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/035f5f914", + "name": "NIHR Leeds Musculoskeletal Biomedical Research Unit", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Leeds Teaching Hospitals NHS Trust", + "type": "Parent", + "id": "https://ror.org/00v4dac24" + }, + { + "label": "National Institute for Health Research", + "type": "Parent", + "id": "https://ror.org/0187kwz08" + }, + { + "label": "Chapel Allerton Hospital", + "type": "Related", + "id": "https://ror.org/00ng6k310" + }, + { + "label": "University of Leeds", + "type": "Related", + "id": "https://ror.org/024mrxd33" + } + ], + "addresses": [ + { + "lat": 53.79648, + "lng": -1.54785, + "state": null, + "state_code": null, + "city": "Leeds", + "geonames_city": { + "id": 2644688, + "city": "Leeds", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://lmbru.leeds.ac.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100018955" + ], + "preferred": "501100018955" + }, + "GRID": { + "all": "grid.454370.1", + "preferred": "grid.454370.1" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/036ftwn63.json b/v1.52/v1/036ftwn63.json new file mode 100644 index 000000000..63f00fd7b --- /dev/null +++ b/v1.52/v1/036ftwn63.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/036ftwn63", + "name": "Great Lakes Observing System", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "NOAA Integrated Ocean Observing System", + "type": "Related", + "id": "https://ror.org/01yvark48" + } + ], + "addresses": [ + { + "lat": 42.27756, + "lng": -83.74088, + "state": null, + "state_code": null, + "city": "Ann Arbor", + "geonames_city": { + "id": 4984247, + "city": "Ann Arbor", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://glos.org" + ], + "aliases": [], + "acronyms": [ + "GLOS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.448403.f", + "preferred": "grid.448403.f" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/036w79395.json b/v1.52/v1/036w79395.json new file mode 100644 index 000000000..25c4cd82e --- /dev/null +++ b/v1.52/v1/036w79395.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/036w79395", + "name": "Sekisui Kasei (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Sekisui Chemical (Japan)", + "type": "Parent", + "id": "https://ror.org/05hessd06" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sekisuikasei.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Sekisui Plastics", + "iso639": "en" + }, + { + "label": "積水化成品工業株式会社", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.510107.2", + "preferred": "grid.510107.2" + }, + "ISNI": { + "all": [ + "0000 0004 0621 2071" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q11597150" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/036wt8y39.json b/v1.52/v1/036wt8y39.json new file mode 100644 index 000000000..7f7e258d6 --- /dev/null +++ b/v1.52/v1/036wt8y39.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/036wt8y39", + "name": "Hudson Valley Community College", + "email_address": null, + "ip_addresses": [], + "established": 1953, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.72841, + "lng": -73.69179, + "state": null, + "state_code": null, + "city": "Troy", + "geonames_city": { + "id": 5141502, + "city": "Troy", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hvcc.edu" + ], + "aliases": [ + "SUNY Hudson Valley", + "State University of New York Hudson Valley Community College" + ], + "acronyms": [ + "HVCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hudson_Valley_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.435082.8", + "preferred": "grid.435082.8" + }, + "ISNI": { + "all": [ + "0000 0001 0708 8226" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5928989" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/037cnag11.json b/v1.52/v1/037cnag11.json new file mode 100644 index 000000000..26dfa512a --- /dev/null +++ b/v1.52/v1/037cnag11.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/037cnag11", + "name": "University of Missouri–St. Louis", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Whitney R. Harris World Ecology Center", + "type": "Child", + "id": "https://ror.org/04e6zkc05" + }, + { + "label": "University of Missouri System", + "type": "Parent", + "id": "https://ror.org/032va1j59" + }, + { + "label": "Taylor Geospatial Institute", + "type": "Related", + "id": "https://ror.org/0573j3j10" + } + ], + "addresses": [ + { + "lat": 38.62727, + "lng": -90.19789, + "state": null, + "state_code": null, + "city": "St Louis", + "geonames_city": { + "id": 4407066, + "city": "St Louis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umsl.edu/" + ], + "aliases": [], + "acronyms": [ + "UMSL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Missouri%E2%80%93St._Louis", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006818", + "100006000", + "100005576" + ], + "preferred": "100006818" + }, + "GRID": { + "all": "grid.266757.7", + "preferred": "grid.266757.7" + }, + "ISNI": { + "all": [ + "0000 0001 1480 9378" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q625103" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/037hby126.json b/v1.52/v1/037hby126.json new file mode 100644 index 000000000..8b2a908dc --- /dev/null +++ b/v1.52/v1/037hby126.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/037hby126", + "name": "Établissement Français du Sang", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Génétique, Génomique Fonctionnelle et Biotechnologies", + "type": "Child", + "id": "https://ror.org/05xxb2f26" + }, + { + "label": "Institut pour l'avancée des biosciences", + "type": "Child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer", + "type": "Child", + "id": "https://ror.org/05p7fmf80" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "Child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "RESTORE", + "type": "Child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Pathogenesis and Control of Chronic and Emerging Infections", + "type": "Child", + "id": "https://ror.org/01yw9jt43" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.efs.sante.fr/" + ], + "aliases": [], + "acronyms": [ + "EFS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010481" + ], + "preferred": "501100010481" + }, + "GRID": { + "all": "grid.443947.9", + "preferred": "grid.443947.9" + }, + "ISNI": { + "all": [ + "0000 0000 9751 7639" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/037xc1874.json b/v1.52/v1/037xc1874.json new file mode 100644 index 000000000..4854fe43f --- /dev/null +++ b/v1.52/v1/037xc1874.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/037xc1874", + "name": "Education, Cultures, Politiques", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Jean Monnet", + "type": "Parent", + "id": "https://ror.org/04yznqr36" + }, + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://recherche.univ-lyon2.fr/ecp/test?set_language=fr&cl=fr" + ], + "aliases": [], + "acronyms": [ + "ECP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Éducation, Cultures, Politiques", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482731.b", + "preferred": "grid.482731.b" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0387w4y93.json b/v1.52/v1/0387w4y93.json new file mode 100644 index 000000000..3d3a96d96 --- /dev/null +++ b/v1.52/v1/0387w4y93.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0387w4y93", + "name": "Maladies génétiques d’expression pédiatrique", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://geneticdiseases-lab.fr" + ], + "aliases": [ + "UMR S933" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Childhood genetic diseases laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123695173" + ], + "preferred": "Q123695173" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0389fzc60.json b/v1.52/v1/0389fzc60.json new file mode 100644 index 000000000..a5a4b6286 --- /dev/null +++ b/v1.52/v1/0389fzc60.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/0389fzc60", + "name": "Centre interdisciplinaire de recherche \"Culture, éducation, formation, travail\"", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "Université Paris-Est Créteil", + "type": "Parent", + "id": "https://ror.org/05ggc9x40" + } + ], + "addresses": [ + { + "lat": 48.93564, + "lng": 2.35387, + "state": null, + "state_code": null, + "city": "Saint-Denis", + "geonames_city": { + "id": 2980916, + "city": "Saint-Denis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://circeft.fr" + ], + "aliases": [], + "acronyms": [ + "CIRCEFT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51784774" + ], + "preferred": "Q51784774" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/038zhf168.json b/v1.52/v1/038zhf168.json new file mode 100644 index 000000000..ca8384856 --- /dev/null +++ b/v1.52/v1/038zhf168.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/038zhf168", + "name": "SMA Trust", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.19166, + "lng": -1.70734, + "state": null, + "state_code": null, + "city": "Stratford-upon-Avon", + "geonames_city": { + "id": 2636713, + "city": "Stratford-upon-Avon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.smatrust.org/" + ], + "aliases": [ + "Spinal Muscular Atrophy Trust" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008168", + "100011708", + "100015398" + ], + "preferred": "100015398" + }, + "GRID": { + "all": "grid.481241.a", + "preferred": "grid.481241.a" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/039a2re55.json b/v1.52/v1/039a2re55.json new file mode 100644 index 000000000..1e2d3f0ed --- /dev/null +++ b/v1.52/v1/039a2re55.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/039a2re55", + "name": "St. Pölten University of Applied Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Carl Ritter von Ghega Institute for Integrated Mobility Research", + "type": "Child", + "id": "https://ror.org/04rq2jb11" + } + ], + "addresses": [ + { + "lat": 48.2, + "lng": 15.63333, + "state": null, + "state_code": null, + "city": "St. Pölten", + "geonames_city": { + "id": 2766429, + "city": "St. Pölten", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fhstp.ac.at" + ], + "aliases": [ + "St. Pölten UAS" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/St._P%C3%B6lten_University_of_Applied_Sciences", + "labels": [ + { + "label": "Fachhochschule St. Pölten", + "iso639": "de" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100018801" + ], + "preferred": "501100018801" + }, + "GRID": { + "all": "grid.434096.c", + "preferred": "grid.434096.c" + }, + "ISNI": { + "all": [ + "0000 0001 2190 9211" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1391228" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/039bhhz46.json b/v1.52/v1/039bhhz46.json new file mode 100644 index 000000000..648463a21 --- /dev/null +++ b/v1.52/v1/039bhhz46.json @@ -0,0 +1,126 @@ +{ + "id": "https://ror.org/039bhhz46", + "name": "Anahuac University Network", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tamaulipas Institute of Higher Education", + "type": "Child", + "id": "https://ror.org/0335qtz31" + }, + { + "label": "Universidad Anahuac Oaxaca", + "type": "Child", + "id": "https://ror.org/034sakr12" + }, + { + "label": "Universidad Anáhuac", + "type": "Child", + "id": "https://ror.org/02z9t1k38" + }, + { + "label": "Universidad Anáhuac Puebla", + "type": "Child", + "id": "https://ror.org/02p6gmn22" + }, + { + "label": "Universidad Anáhuac Querétaro", + "type": "Child", + "id": "https://ror.org/000mgxg22" + }, + { + "label": "Universidad Anáhuac Xalapa", + "type": "Child", + "id": "https://ror.org/01zxe8n50" + }, + { + "label": "Universidad Anáhuac de Cancún", + "type": "Child", + "id": "https://ror.org/03g0mt494" + }, + { + "label": "Anahuac Mayab University", + "type": "Child", + "id": "https://ror.org/014h2x849" + } + ], + "addresses": [ + { + "lat": 19.47851, + "lng": -99.23963, + "state": null, + "state_code": null, + "city": "Naucalpan", + "geonames_city": { + "id": 3522790, + "city": "Naucalpan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.anahuac.mx/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Anahuac_University_Network", + "labels": [ + { + "label": "Red de Universidades Anáhuac", + "iso639": "es" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "GRID": { + "all": "grid.448956.2", + "preferred": "grid.448956.2" + }, + "Wikidata": { + "all": [ + "Q750169" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/039c93x30.json b/v1.52/v1/039c93x30.json new file mode 100644 index 000000000..a5dfbf146 --- /dev/null +++ b/v1.52/v1/039c93x30.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/039c93x30", + "name": "Bureau of Public Roads", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Federal Highway Administration", + "type": "Successor", + "id": "https://ror.org/0473rr271" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Office of Public Roads", + "Office of Road Inquiry", + "Public Roads Administration" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/039j4x695.json b/v1.52/v1/039j4x695.json new file mode 100644 index 000000000..6b5ae981a --- /dev/null +++ b/v1.52/v1/039j4x695.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/039j4x695", + "name": "Laboratoire Biosciences et bioingénierie pour la Santé", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bge-lab.fr" + ], + "aliases": [ + "Biosciences and Bioengineering for Health Laboratory" + ], + "acronyms": [ + "BGE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q126839579" + ], + "preferred": "Q126839579" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/039zedc16.json b/v1.52/v1/039zedc16.json new file mode 100644 index 000000000..6db40b04d --- /dev/null +++ b/v1.52/v1/039zedc16.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/039zedc16", + "name": "St George’s University Hospitals NHS Foundation Trust", + "email_address": null, + "ip_addresses": [], + "established": 1733, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Queen Mary's Hospital", + "type": "Child", + "id": "https://ror.org/04389kb95" + }, + { + "label": "St George's Hospital", + "type": "Child", + "id": "https://ror.org/0001ke483" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.stgeorges.nhs.uk/" + ], + "aliases": [ + "St George’s Healthcare NHS Trust" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St_George's_University_Hospitals_NHS_Foundation_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100015092" + ], + "preferred": "501100015092" + }, + "GRID": { + "all": "grid.451349.e", + "preferred": "grid.451349.e" + }, + "Wikidata": { + "all": [ + "Q7593174" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03a4sp974.json b/v1.52/v1/03a4sp974.json new file mode 100644 index 000000000..d845e7403 --- /dev/null +++ b/v1.52/v1/03a4sp974.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03a4sp974", + "name": "NFDI4Microbiota", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 50.93333, + "lng": 6.95, + "state": null, + "state_code": null, + "city": "Cologne", + "geonames_city": { + "id": 2886242, + "city": "Cologne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nfdi4microbiota.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/NFDI4Microbiota", + "labels": [ + { + "label": "Nationale Forschungsdateninfrastruktur für Mikrobiota-Forschung", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q99534506" + ], + "preferred": "Q99534506" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03aaxgs84.json b/v1.52/v1/03aaxgs84.json new file mode 100644 index 000000000..607e9ad3a --- /dev/null +++ b/v1.52/v1/03aaxgs84.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/03aaxgs84", + "name": "Cebu Normal University", + "email_address": null, + "ip_addresses": [], + "established": 1902, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.31672, + "lng": 123.89071, + "state": null, + "state_code": null, + "city": "Cebu City", + "geonames_city": { + "id": 1717512, + "city": "Cebu City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cnu.edu.ph" + ], + "aliases": [ + "Cebu Normal College", + "Cebu Normal School", + "Cebu State College" + ], + "acronyms": [ + "CNU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cebu_Normal_University", + "labels": [ + { + "label": "Pamantasang Normal ng Cebu", + "iso639": "tl" + } + ], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "GRID": { + "all": "grid.442992.0", + "preferred": "grid.442992.0" + }, + "ISNI": { + "all": [ + "0000 0004 0443 5298" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5055814" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03ab8zv57.json b/v1.52/v1/03ab8zv57.json new file mode 100644 index 000000000..e818b00fb --- /dev/null +++ b/v1.52/v1/03ab8zv57.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/03ab8zv57", + "name": "International Centre for Mathematical Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Heriot-Watt University", + "type": "Parent", + "id": "https://ror.org/04mghma93" + }, + { + "label": "University of Edinburgh", + "type": "Parent", + "id": "https://ror.org/01nrxwf90" + } + ], + "addresses": [ + { + "lat": 55.95206, + "lng": -3.19648, + "state": null, + "state_code": null, + "city": "Edinburgh", + "geonames_city": { + "id": 2650225, + "city": "Edinburgh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.icms.org.uk/" + ], + "aliases": [], + "acronyms": [ + "ICMS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_Centre_for_Mathematical_Sciences", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100014249" + ], + "preferred": "100014249" + }, + "GRID": { + "all": "grid.500367.7", + "preferred": "grid.500367.7" + }, + "ISNI": { + "all": [ + "0000 0001 2288 0211" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6049105" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03bj0v820.json b/v1.52/v1/03bj0v820.json new file mode 100644 index 000000000..da38bd871 --- /dev/null +++ b/v1.52/v1/03bj0v820.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/03bj0v820", + "name": "Centre de Recherche sur la Langue et les Textes Basques", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Bordeaux Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + }, + { + "label": "Université de Pau et des Pays de l'Adour", + "type": "Parent", + "id": "https://ror.org/01frn9647" + } + ], + "addresses": [ + { + "lat": 43.49316, + "lng": -1.473, + "state": null, + "state_code": null, + "city": "Bayonne", + "geonames_city": { + "id": 3034475, + "city": "Bayonne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iker.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "IKER" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503186.9", + "preferred": "grid.503186.9" + }, + "ISNI": { + "all": [ + "0000 0001 1939 5549" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51783371" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03bmwyk24.json b/v1.52/v1/03bmwyk24.json new file mode 100644 index 000000000..63a6adf8b --- /dev/null +++ b/v1.52/v1/03bmwyk24.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03bmwyk24", + "name": "Tecnológico Nacional de México de Ciudad Jiménez", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 27.13076, + "lng": -104.92391, + "state": null, + "state_code": null, + "city": "José Mariano Jiménez", + "geonames_city": { + "id": 4013710, + "city": "José Mariano Jiménez", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cdjimenez.tecnm.mx" + ], + "aliases": [ + "Instituto Tecnológico de Cd. Jiménez", + "Instituto Tecnológico de Ciudad Jiménez", + "National Technological Institute of Mexico Cd. Jiménez", + "National Technological Institute of Mexico Ciudad Jiménez", + "TecNM Cd. Jiménez", + "TecNM de Ciudad Jiménez", + "TecNMCdJ", + "TecnNM Campus Cd. Jiménez", + "Tecnológico Nacional de México Campus Ciudad Jiménez" + ], + "acronyms": [ + "ITCdJ" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Tecnol%C3%B3gico_Nacional_de_M%C3%A9xico", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/03bw8ys89.json b/v1.52/v1/03bw8ys89.json new file mode 100644 index 000000000..5f6692489 --- /dev/null +++ b/v1.52/v1/03bw8ys89.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03bw8ys89", + "name": "Sainsbury Family Charitable Trusts", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sfct.org.uk/index.html" + ], + "aliases": [], + "acronyms": [ + "SFCT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100024086" + ], + "preferred": "501100024086" + }, + "GRID": { + "all": "grid.500855.d", + "preferred": "grid.500855.d" + }, + "ISNI": { + "all": [ + "0000 0004 0426 7271" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03c59nw07.json b/v1.52/v1/03c59nw07.json new file mode 100644 index 000000000..8aeec3329 --- /dev/null +++ b/v1.52/v1/03c59nw07.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03c59nw07", + "name": "Institute of Physics", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.81444, + "lng": 15.97798, + "state": null, + "state_code": null, + "city": "Zagreb", + "geonames_city": { + "id": 3186886, + "city": "Zagreb", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ifs.hr" + ], + "aliases": [ + "Institut za fiziku" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Croatia", + "country_code": "HR" + }, + "external_ids": { + "GRID": { + "all": "grid.454227.2", + "preferred": "grid.454227.2" + }, + "ISNI": { + "all": [ + "0000 0004 0383 9274" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03cccec37.json b/v1.52/v1/03cccec37.json new file mode 100644 index 000000000..37138d974 --- /dev/null +++ b/v1.52/v1/03cccec37.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03cccec37", + "name": "Transversales", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://transversales.net" + ], + "aliases": [ + "Droits, Contrats et Territoires" + ], + "acronyms": [ + "DCT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482730.a", + "preferred": "grid.482730.a" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03cmntr54.json b/v1.52/v1/03cmntr54.json new file mode 100644 index 000000000..06afe5974 --- /dev/null +++ b/v1.52/v1/03cmntr54.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/03cmntr54", + "name": "Instituto de Astrofísica de Canarias", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Isaac Newton Group", + "type": "Child", + "id": "https://ror.org/054tmk179" + }, + { + "label": "Universidad de La Laguna", + "type": "Parent", + "id": "https://ror.org/01r9z8p25" + }, + { + "label": "Red Española de Supercomputación", + "type": "Related", + "id": "https://ror.org/02x2fbb57" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 28.46824, + "lng": -16.25462, + "state": null, + "state_code": null, + "city": "Tenerife", + "geonames_city": { + "id": 2511174, + "city": "Tenerife", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iac.es" + ], + "aliases": [], + "acronyms": [ + "IAC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Astrofísic de les Illes Canàries", + "iso639": "ca" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022432" + ], + "preferred": "501100022432" + }, + "GRID": { + "all": "grid.17423.33", + "preferred": "grid.17423.33" + }, + "ISNI": { + "all": [ + "0000 0004 1767 6621" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1583495" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03csmp942.json b/v1.52/v1/03csmp942.json new file mode 100644 index 000000000..35bf67052 --- /dev/null +++ b/v1.52/v1/03csmp942.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03csmp942", + "name": "National Institute of Advanced Manufacturing Technology", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 23.34316, + "lng": 85.3094, + "state": null, + "state_code": null, + "city": "Ranchi", + "geonames_city": { + "id": 1258526, + "city": "Ranchi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.niamt.ac.in" + ], + "aliases": [ + "National Institute of Foundry and Forge Technology", + "नेशनल इंस्टीट्यूट ऑफ फाउंड्री एंड फोर्ज टेक्नोलॉजी" + ], + "acronyms": [ + "NIAMT", + "NIFFT", + "एनआईएएमटी" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Institute_of_Advanced_Manufacturing_Technology", + "labels": [ + { + "label": "राष्ट्रीय उन्नत विनिर्माण प्रौद्योगिकी संस्थान", + "iso639": "hi" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0497 5614" + ], + "preferred": "0000 0004 0497 5614" + }, + "Wikidata": { + "all": [ + "Q6973652" + ], + "preferred": "Q6973652" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03cwzta72.json b/v1.52/v1/03cwzta72.json new file mode 100644 index 000000000..09afde083 --- /dev/null +++ b/v1.52/v1/03cwzta72.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/03cwzta72", + "name": "Direction des énergies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "CEA Cadarache", + "type": "Child", + "id": "https://ror.org/01rs1gy10" + }, + { + "label": "CEA Marcoule", + "type": "Child", + "id": "https://ror.org/04140y156" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cea.fr/Pages/domaines-recherche/energies.aspx" + ], + "aliases": [ + "Direction de L'Énergie Nucléaire" + ], + "acronyms": [ + "CEA DEN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457258.9", + "preferred": "grid.457258.9" + }, + "ISNI": { + "all": [ + "0000 0001 2180 4137" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30299415", + "Q121913443" + ], + "preferred": "Q121913443" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03d087w61.json b/v1.52/v1/03d087w61.json new file mode 100644 index 000000000..89b5626de --- /dev/null +++ b/v1.52/v1/03d087w61.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/03d087w61", + "name": "Department of National Trade Measurement and Standards", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of Trade, Co-operatives, Small and Medium Enterprises", + "type": "Parent", + "id": "https://ror.org/045h9g769" + } + ], + "addresses": [ + { + "lat": -18.13683, + "lng": 178.42531, + "state": null, + "state_code": null, + "city": "Suva", + "geonames_city": { + "id": 2198148, + "city": "Suva", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mcttt.gov.fj/division/national-trade-measurement-and-standards/" + ], + "aliases": [], + "acronyms": [ + "MCTTT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Fiji", + "country_code": "FJ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/03dp8bn13.json b/v1.52/v1/03dp8bn13.json new file mode 100644 index 000000000..b8a76f759 --- /dev/null +++ b/v1.52/v1/03dp8bn13.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/03dp8bn13", + "name": "Kingsbrook Jewish Medical Center", + "email_address": null, + "ip_addresses": [], + "established": 1925, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "American University of Antigua", + "type": "Related", + "id": "https://ror.org/001shqf12" + }, + { + "label": "Medical University of Lublin", + "type": "Related", + "id": "https://ror.org/016f61126" + }, + { + "label": "Medical University of Silesia", + "type": "Related", + "id": "https://ror.org/005k7hp45" + }, + { + "label": "SUNY Downstate Health Sciences University", + "type": "Related", + "id": "https://ror.org/0041qmd21" + }, + { + "label": "Saba University", + "type": "Related", + "id": "https://ror.org/051kvhx87" + }, + { + "label": "St. George's University", + "type": "Related", + "id": "https://ror.org/01m1s6313" + }, + { + "label": "Touro College", + "type": "Related", + "id": "https://ror.org/05hwfvk38" + } + ], + "addresses": [ + { + "lat": 40.6501, + "lng": -73.94958, + "state": null, + "state_code": null, + "city": "Brooklyn", + "geonames_city": { + "id": 5110302, + "city": "Brooklyn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.kingsbrook.org/" + ], + "aliases": [], + "acronyms": [ + "KJMC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kingsbrook_Jewish_Medical_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.415353.5", + "preferred": "grid.415353.5" + }, + "ISNI": { + "all": [ + "0000 0004 0381 3410" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q20858037" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03e044190.json b/v1.52/v1/03e044190.json new file mode 100644 index 000000000..7937bc848 --- /dev/null +++ b/v1.52/v1/03e044190.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/03e044190", + "name": "Spintronique et Technologie des Composants", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut polytechnique de Grenoble", + "type": "Parent", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut de Physique", + "type": "Parent", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Institut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.spintec.fr/" + ], + "aliases": [], + "acronyms": [ + "SPINTEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464100.7", + "preferred": "grid.464100.7" + }, + "ISNI": { + "all": [ + "0000 0004 0369 6218" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262456" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03e835785.json b/v1.52/v1/03e835785.json new file mode 100644 index 000000000..ddcdce739 --- /dev/null +++ b/v1.52/v1/03e835785.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03e835785", + "name": "Centre de Recherches et d'Etudes Administratives de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://cream.edu.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "CREAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 1931 100X" + ], + "preferred": "0000 0001 1931 100X" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03e8rf594.json b/v1.52/v1/03e8rf594.json new file mode 100644 index 000000000..b9dd73a23 --- /dev/null +++ b/v1.52/v1/03e8rf594.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/03e8rf594", + "name": "IMT Mines Alès", + "email_address": null, + "ip_addresses": [], + "established": 1843, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "EuroMov Digital Health in Motion", + "type": "Child", + "id": "https://ror.org/054b22910" + } + ], + "addresses": [ + { + "lat": 44.12489, + "lng": 4.08082, + "state": null, + "state_code": null, + "city": "Alès", + "geonames_city": { + "id": 3038224, + "city": "Alès", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.imt-mines-ales.fr" + ], + "aliases": [ + "Ecole Nationale Supérieure des Mines d'Alès", + "IMT Alès", + "École des Mines d'Alès" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_des_mines_d%27Al%C3%A8s", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.424464.4", + "preferred": "grid.424464.4" + }, + "ISNI": { + "all": [ + "0000 0000 9734 247X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3577938" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03f6sdf65.json b/v1.52/v1/03f6sdf65.json new file mode 100644 index 000000000..6b7481466 --- /dev/null +++ b/v1.52/v1/03f6sdf65.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03f6sdf65", + "name": "PUNCH4NFDI", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 53.55073, + "lng": 9.99302, + "state": null, + "state_code": null, + "city": "Hamburg", + "geonames_city": { + "id": 2911298, + "city": "Hamburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.punch4nfdi.de" + ], + "aliases": [ + "NFDI consortium for Particles, Universe, NuClei and Hadrons", + "Particles, Universe, NuClei and Hadrons for the NFDI", + "Teilchen, Universum, Kerne und Hadronen für die NFDI" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q108542637" + ], + "preferred": "Q108542637" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03fqpzb44.json b/v1.52/v1/03fqpzb44.json new file mode 100644 index 000000000..e772c919f --- /dev/null +++ b/v1.52/v1/03fqpzb44.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03fqpzb44", + "name": "NFDI4Biodiversity", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 53.07582, + "lng": 8.80717, + "state": null, + "state_code": null, + "city": "Bremen", + "geonames_city": { + "id": 2944388, + "city": "Bremen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nfdi4biodiversity.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q98380341" + ], + "preferred": "Q98380341" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03g1fnq23.json b/v1.52/v1/03g1fnq23.json new file mode 100644 index 000000000..997b184c4 --- /dev/null +++ b/v1.52/v1/03g1fnq23.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03g1fnq23", + "name": "Centro de Investigaciones Biológicas del Noroeste S.C.", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.14231, + "lng": -110.31316, + "state": null, + "state_code": null, + "city": "La Paz", + "geonames_city": { + "id": 4000900, + "city": "La Paz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cibnor.gob.mx" + ], + "aliases": [ + "Biological Research Center of the Northwest S.C." + ], + "acronyms": [ + "CIBNOR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010559" + ], + "preferred": "501100010559" + }, + "ISNI": { + "all": [ + "0000 0004 1776 9561" + ], + "preferred": "0000 0004 1776 9561" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03g1q6c06.json b/v1.52/v1/03g1q6c06.json new file mode 100644 index 000000000..a4b004268 --- /dev/null +++ b/v1.52/v1/03g1q6c06.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/03g1q6c06", + "name": "SUNY Geneseo", + "email_address": null, + "ip_addresses": [], + "established": 1871, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 42.7959, + "lng": -77.81695, + "state": null, + "state_code": null, + "city": "Geneseo", + "geonames_city": { + "id": 5118394, + "city": "Geneseo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.geneseo.edu" + ], + "aliases": [ + "SUNY Geneseo", + "State University of New York at Geneseo", + "State University of New York-College at Geneseo", + "Wadsworth Normal and Training School" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Geneseo", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008679" + ], + "preferred": null + }, + "GRID": { + "all": "grid.264269.d", + "preferred": "grid.264269.d" + }, + "ISNI": { + "all": [ + "0000 0001 0151 0940" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6149540" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03g4kv388.json b/v1.52/v1/03g4kv388.json new file mode 100644 index 000000000..08470bb17 --- /dev/null +++ b/v1.52/v1/03g4kv388.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/03g4kv388", + "name": "Ethiopian Technology Authority", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 9.02497, + "lng": 38.74689, + "state": null, + "state_code": null, + "city": "Addis Ababa", + "geonames_city": { + "id": 344979, + "city": "Addis Ababa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.eta.gov.et" + ], + "aliases": [ + "Ethiopian Radiation Protection Authority" + ], + "acronyms": [ + "ETA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "የኢትዮጵያ ቴክኖሎጂ ባለስልጣን", + "iso639": "am" + } + ], + "country": { + "country_name": "Ethiopia", + "country_code": "ET" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/03g5rm013.json b/v1.52/v1/03g5rm013.json new file mode 100644 index 000000000..92b46a121 --- /dev/null +++ b/v1.52/v1/03g5rm013.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03g5rm013", + "name": "Federal College of Education, Zaria", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ahmadu Bello University", + "type": "Related", + "id": "https://ror.org/019apvn83" + } + ], + "addresses": [ + { + "lat": 11.28272, + "lng": 8.59928, + "state": null, + "state_code": null, + "city": "Tudun Wada", + "geonames_city": { + "id": 8633726, + "city": "Tudun Wada", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fcezaria.edu.ng" + ], + "aliases": [ + "ATC Zaria", + "Advance Teachers' College Zaria", + "FCE Zaria", + "Northern Secondary Teachers’ College" + ], + "acronyms": [ + "FCEZ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_College_of_Education%2C_Zaria", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0524 4239" + ], + "preferred": "0000 0005 0524 4239" + }, + "Wikidata": { + "all": [ + "Q89189551" + ], + "preferred": "Q89189551" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03gbgw380.json b/v1.52/v1/03gbgw380.json new file mode 100644 index 000000000..fca2a6f1d --- /dev/null +++ b/v1.52/v1/03gbgw380.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/03gbgw380", + "name": "Institut de Science des Données de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://isdm.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "ISDM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/03gss5916.json b/v1.52/v1/03gss5916.json new file mode 100644 index 000000000..731bc4afb --- /dev/null +++ b/v1.52/v1/03gss5916.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03gss5916", + "name": "Høyskolen Kristiania", + "email_address": null, + "ip_addresses": [], + "established": 1914, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.91273, + "lng": 10.74609, + "state": null, + "state_code": null, + "city": "Oslo", + "geonames_city": { + "id": 3143244, + "city": "Oslo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kristiania.no/kristiania-university-college" + ], + "aliases": [ + "Campus Kristiania", + "Høyskolen Campus Kristiania" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kristiania_University_College", + "labels": [ + { + "label": "Kristiania University College", + "iso639": "en" + } + ], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "external_ids": { + "GRID": { + "all": "grid.457625.7", + "preferred": "grid.457625.7" + }, + "ISNI": { + "all": [ + "0000 0004 0383 3497" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5028646" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03gx9a140.json b/v1.52/v1/03gx9a140.json new file mode 100644 index 000000000..0e7c573f9 --- /dev/null +++ b/v1.52/v1/03gx9a140.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03gx9a140", + "name": "Guangxi Research Institute of Chemical Industry", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.81667, + "lng": 108.31667, + "state": null, + "state_code": null, + "city": "Nanning", + "geonames_city": { + "id": 1799869, + "city": "Nanning", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gxchem.com" + ], + "aliases": [ + "Guangxi Research Institute of Chemical Industry Co., Ltd.", + "广西化工研究院有限公司" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "广西化工研究院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.495364.9", + "preferred": "grid.495364.9" + }, + "ISNI": { + "all": [ + "0000 0005 1762 110X" + ], + "preferred": "0000 0005 1762 110X" + }, + "Wikidata": { + "all": [ + "Q52848912" + ], + "preferred": "Q52848912" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03h3jqn23.json b/v1.52/v1/03h3jqn23.json new file mode 100644 index 000000000..f0846eb79 --- /dev/null +++ b/v1.52/v1/03h3jqn23.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03h3jqn23", + "name": "European Space Research and Technology Centre", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "European Space Agency", + "type": "Parent", + "id": "https://ror.org/03wd9za21" + } + ], + "addresses": [ + { + "lat": 52.234, + "lng": 4.44474, + "state": null, + "state_code": null, + "city": "Noordwijk-Binnen", + "geonames_city": { + "id": 2749812, + "city": "Noordwijk-Binnen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.esa.int/About_Us/ESTEC" + ], + "aliases": [], + "acronyms": [ + "ESTEC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/European_Space_Research_and_Technology_Centre", + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "GRID": { + "all": "grid.424669.b", + "preferred": "grid.424669.b" + }, + "ISNI": { + "all": [ + "0000 0004 1797 969X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1378217" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03h8f2y52.json b/v1.52/v1/03h8f2y52.json new file mode 100644 index 000000000..693830de8 --- /dev/null +++ b/v1.52/v1/03h8f2y52.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/03h8f2y52", + "name": "Zhangir Khan West Kazakhstan Agrarian Technical University", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.23333, + "lng": 51.36667, + "state": null, + "state_code": null, + "city": "Oral", + "geonames_city": { + "id": 608668, + "city": "Oral", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://wkau.edu.kz" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Zhangir Khan University", + "iso639": "en" + }, + { + "label": "Жангир Хан Университет", + "iso639": "ru" + }, + { + "label": "Жәңгір Хан Университеті", + "iso639": "kk" + }, + { + "label": "Жәңгір хан атындағы Батыс Қазақстан аграрлық-техникалық университеті", + "iso639": "kk" + }, + { + "label": "Западно-Казахстанский аграрно-технический университет имени Жангир хана", + "iso639": "ru" + } + ], + "country": { + "country_name": "Kazakhstan", + "country_code": "KZ" + }, + "external_ids": { + "GRID": { + "all": "grid.443667.4", + "preferred": "grid.443667.4" + }, + "ISNI": { + "all": [ + "0000 0004 0601 4681" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03hrye043.json b/v1.52/v1/03hrye043.json new file mode 100644 index 000000000..bd5b2948b --- /dev/null +++ b/v1.52/v1/03hrye043.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/03hrye043", + "name": "Herkimer College", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 43.02563, + "lng": -74.98599, + "state": null, + "state_code": null, + "city": "Herkimer", + "geonames_city": { + "id": 5120545, + "city": "Herkimer", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.herkimer.edu" + ], + "aliases": [ + "Herkimer County Community College", + "SUNY Herkimer", + "State University of New York Herkimer" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Herkimer_County_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.462355.3", + "preferred": "grid.462355.3" + }, + "ISNI": { + "all": [ + "0000 0004 0388 0955" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5739244" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03j3dv688.json b/v1.52/v1/03j3dv688.json new file mode 100644 index 000000000..d1efe836e --- /dev/null +++ b/v1.52/v1/03j3dv688.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03j3dv688", + "name": "SUNY New Paltz", + "email_address": null, + "ip_addresses": [], + "established": 1828, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 41.74759, + "lng": -74.08681, + "state": null, + "state_code": null, + "city": "New Paltz", + "geonames_city": { + "id": 5128539, + "city": "New Paltz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.newpaltz.edu/" + ], + "aliases": [ + "State University of New York at New Paltz" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_New_Paltz", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007260" + ], + "preferred": null + }, + "GRID": { + "all": "grid.264270.5", + "preferred": "grid.264270.5" + }, + "ISNI": { + "all": [ + "0000 0000 8611 4981" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7603625" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03j4z4422.json b/v1.52/v1/03j4z4422.json new file mode 100644 index 000000000..263fa7f99 --- /dev/null +++ b/v1.52/v1/03j4z4422.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03j4z4422", + "name": "Universidad Nacional \"Siglo XX\"", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -16.5, + "lng": -68.15, + "state": null, + "state_code": null, + "city": "La Paz", + "geonames_city": { + "id": 3911925, + "city": "La Paz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://unsxx.bo" + ], + "aliases": [], + "acronyms": [ + "UNSXX" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Bolivia", + "country_code": "BO" + }, + "external_ids": { + "GRID": { + "all": "grid.441905.d", + "preferred": "grid.441905.d" + }, + "ISNI": { + "all": [ + "0000 0001 2285 9068" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30294030" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03jrr8f73.json b/v1.52/v1/03jrr8f73.json new file mode 100644 index 000000000..92ca385e7 --- /dev/null +++ b/v1.52/v1/03jrr8f73.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/03jrr8f73", + "name": "Synapsis Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.demenz-forschung.ch" + ], + "aliases": [ + "Dementia Research Switzerland - Foundation Synapsis", + "Dementia Research Switzerland - Synapsis Foundation", + "Demenz Forschung Schweiz - Stiftung Synapsis", + "Recherche Démence Suisse - Fondation Synapsis", + "Ricerca Demenze Svizzera - Fondazione Synapsis", + "Synapsis Foundation Switzerland" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Stiftung Synapsis", + "iso639": "de" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008947" + ], + "preferred": "501100008947" + }, + "GRID": { + "all": "grid.484677.e", + "preferred": "grid.484677.e" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03jwjxy73.json b/v1.52/v1/03jwjxy73.json new file mode 100644 index 000000000..b7f52e198 --- /dev/null +++ b/v1.52/v1/03jwjxy73.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03jwjxy73", + "name": "ECAL/Ecole cantonale d'art de Lausanne", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ecal.ch" + ], + "aliases": [ + "HES-SO ECAL/Ecole cantonale d’art de Lausanne", + "HES-SO School of Art & Design - ECAL/Ecole cantonale" + ], + "acronyms": [ + "ECAL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/03jwrn541.json b/v1.52/v1/03jwrn541.json new file mode 100644 index 000000000..743a1e9f4 --- /dev/null +++ b/v1.52/v1/03jwrn541.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/03jwrn541", + "name": "Fashion Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1944, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fitnyc.edu" + ], + "aliases": [ + "SUNY Fashion Institute of Technology", + "State University of New York Fashion Institute of Technology" + ], + "acronyms": [ + "FIT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Fashion_Institute_of_Technology", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.507864.8", + "preferred": "grid.507864.8" + }, + "ISNI": { + "all": [ + "0000 0004 0387 9997" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q844999" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03k3t2d52.json b/v1.52/v1/03k3t2d52.json new file mode 100644 index 000000000..35f95b14c --- /dev/null +++ b/v1.52/v1/03k3t2d52.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03k3t2d52", + "name": "Tecnológico Nacional de México Campus San Martín Texmelucan", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 19.28431, + "lng": -98.43885, + "state": null, + "state_code": null, + "city": "San Martin Texmelucan", + "geonames_city": { + "id": 3518407, + "city": "San Martin Texmelucan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://smartin.tecnm.mx" + ], + "aliases": [ + "ITS de San Martín Texmelucan", + "Instituto Tecnológico Superior de San Martín Texmelucan", + "TecNM Campus San Martín Texmelucan" + ], + "acronyms": [ + "ITSSMT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q5917797" + ], + "preferred": "Q5917797" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03k51ct10.json b/v1.52/v1/03k51ct10.json new file mode 100644 index 000000000..fc3cdff72 --- /dev/null +++ b/v1.52/v1/03k51ct10.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03k51ct10", + "name": "UNESCO Institute for Lifelong Learning", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "UNESCO", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + } + ], + "addresses": [ + { + "lat": 53.55073, + "lng": 9.99302, + "state": null, + "state_code": null, + "city": "Hamburg", + "geonames_city": { + "id": 2911298, + "city": "Hamburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://uil.unesco.org/" + ], + "aliases": [], + "acronyms": [ + "UIL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/UNESCO_Institute_for_Lifelong_Learning", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.473814.d", + "preferred": "grid.473814.d" + }, + "ISNI": { + "all": [ + "0000 0001 2199 9798" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2467481" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03kchyj69.json b/v1.52/v1/03kchyj69.json new file mode 100644 index 000000000..602dbf07a --- /dev/null +++ b/v1.52/v1/03kchyj69.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03kchyj69", + "name": "The Welding Institute", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.twi-global.com/" + ], + "aliases": [], + "acronyms": [ + "TWI" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/The_Welding_Institute", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023376" + ], + "preferred": "501100023376" + }, + "GRID": { + "all": "grid.4843.b", + "preferred": "grid.4843.b" + }, + "ISNI": { + "all": [ + "0000 0001 1703 001X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1408031" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03kkrza17.json b/v1.52/v1/03kkrza17.json new file mode 100644 index 000000000..a5588e1b7 --- /dev/null +++ b/v1.52/v1/03kkrza17.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03kkrza17", + "name": "Centro de Investigaciones Interdisciplinarias en Ciencias y Humanidades", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Universidad Nacional Autónoma de México", + "type": "Parent", + "id": "https://ror.org/01tmp8f25" + } + ], + "addresses": [ + { + "lat": 19.42847, + "lng": -99.12766, + "state": null, + "state_code": null, + "city": "Mexico City", + "geonames_city": { + "id": 3530597, + "city": "Mexico City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ceiich.unam.mx" + ], + "aliases": [ + "Centro de Investigaciones Interdisciplinarias en Humanidades", + "Universidad Nacional Autónoma de México Centro de Investigaciones Interdisciplinarias en Ciencias y Humanidades", + "Universidad Nacional Autónoma de México Centro de Investigaciones Interdisciplinarias en Humanidades" + ], + "acronyms": [ + "CEIICH", + "CIICH" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Centro_de_Investigaciones_Interdisciplinarias_en_Ciencias_y_Humanidades", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2182 4859" + ], + "preferred": "0000 0001 2182 4859" + }, + "Wikidata": { + "all": [ + "Q92199844" + ], + "preferred": "Q92199844" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03m99bx66.json b/v1.52/v1/03m99bx66.json new file mode 100644 index 000000000..3a0566e72 --- /dev/null +++ b/v1.52/v1/03m99bx66.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03m99bx66", + "name": "Accademia di Belle Arti di Catania", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.49223, + "lng": 15.07041, + "state": null, + "state_code": null, + "city": "Catania", + "geonames_city": { + "id": 2525068, + "city": "Catania", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.abacatania.it" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Accademia_di_Belle_Arti_di_Catania", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.465836.a", + "preferred": "grid.465836.a" + }, + "ISNI": { + "all": [ + "0000 0001 2104 6372" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3604028" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03mp99h26.json b/v1.52/v1/03mp99h26.json new file mode 100644 index 000000000..b16ac0638 --- /dev/null +++ b/v1.52/v1/03mp99h26.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03mp99h26", + "name": "Xavier Institute of Management and Entrepreneurship", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.97194, + "lng": 77.59369, + "state": null, + "state_code": null, + "city": "Bengaluru", + "geonames_city": { + "id": 1277333, + "city": "Bengaluru", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.xime.org" + ], + "aliases": [], + "acronyms": [ + "XIME" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Xavier_Institute_of_Management_and_Entrepreneurship", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 0521" + ], + "preferred": "0000 0004 1770 0521" + }, + "Wikidata": { + "all": [ + "Q8043260" + ], + "preferred": "Q8043260" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03mpd4h52.json b/v1.52/v1/03mpd4h52.json new file mode 100644 index 000000000..d13bb6628 --- /dev/null +++ b/v1.52/v1/03mpd4h52.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03mpd4h52", + "name": "North Carolina State Climate Office", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "North Carolina State University", + "type": "Parent", + "id": "https://ror.org/04tj63d06" + } + ], + "addresses": [ + { + "lat": 35.7721, + "lng": -78.63861, + "state": null, + "state_code": null, + "city": "Raleigh", + "geonames_city": { + "id": 4487042, + "city": "Raleigh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://climate.ncsu.edu" + ], + "aliases": [ + "State Climate Office of North Carolina" + ], + "acronyms": [ + "NCSCO", + "SCONC" + ], + "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.52/v1/03myan165.json b/v1.52/v1/03myan165.json new file mode 100644 index 000000000..e3b4a16ea --- /dev/null +++ b/v1.52/v1/03myan165.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/03myan165", + "name": "Tateisi Science and Technology Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.02107, + "lng": 135.75385, + "state": null, + "state_code": null, + "city": "Kyoto", + "geonames_city": { + "id": 1857910, + "city": "Kyoto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tateisi-f.org" + ], + "aliases": [ + "Tateishi Science and Technology Foundation", + "Tateishi kagaku gijutsu shinko zaidan", + "たていしかがくぎじゅつしんこうざいだん", + "タテイシカガクギジュツシンコウザイダン" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "公益財団法人 立石科学技術振興財団", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100012025" + ], + "preferred": "501100012025" + }, + "GRID": { + "all": "grid.484708.7", + "preferred": "grid.484708.7" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03n15ch10.json b/v1.52/v1/03n15ch10.json new file mode 100644 index 000000000..06f2863b0 --- /dev/null +++ b/v1.52/v1/03n15ch10.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03n15ch10", + "name": "CEA Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Laboratoire Interactions, Dynamiques et Lasers", + "type": "Child", + "id": "https://ror.org/04dy97z61" + }, + { + "label": "CEA Paris-Saclay - Etablissement de Saclay", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Synchrotron soleil", + "type": "Child", + "id": "https://ror.org/01ydb3330" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "CEA Paris-Saclay - Etablissement de Fontenay-aux-roses", + "type": "Child", + "id": "https://ror.org/010j2gw05" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cea.fr/paris-saclay" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.457334.2", + "preferred": "grid.457334.2" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03ncxj847.json b/v1.52/v1/03ncxj847.json new file mode 100644 index 000000000..1dd26339c --- /dev/null +++ b/v1.52/v1/03ncxj847.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/03ncxj847", + "name": "SUNY Schenectady County Community College", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.81424, + "lng": -73.93957, + "state": null, + "state_code": null, + "city": "Schenectady", + "geonames_city": { + "id": 5136454, + "city": "Schenectady", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sunysccc.edu" + ], + "aliases": [ + "Schenectady County Community College", + "State University of New York Schenectady County Community College" + ], + "acronyms": [ + "SCCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Schenectady_County_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.487743.b", + "preferred": "grid.487743.b" + }, + "ISNI": { + "all": [ + "0000 0000 9339 3421" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7431152" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03ntccx93.json b/v1.52/v1/03ntccx93.json new file mode 100644 index 000000000..8c4e17f32 --- /dev/null +++ b/v1.52/v1/03ntccx93.json @@ -0,0 +1,413 @@ +{ + "id": "https://ror.org/03ntccx93", + "name": "National Hospital Organization", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Beppu Medical Center", + "type": "Child", + "id": "https://ror.org/04661b187" + }, + { + "label": "Chiba East Hospital", + "type": "Child", + "id": "https://ror.org/026rga753" + }, + { + "label": "Ehime Medical Center", + "type": "Child", + "id": "https://ror.org/00se67j64" + }, + { + "label": "Fukuoka Higashi Medical Center", + "type": "Child", + "id": "https://ror.org/03hsr7383" + }, + { + "label": "Fukuoka Hospital", + "type": "Child", + "id": "https://ror.org/00vv7qz60" + }, + { + "label": "Hakodate National Hospital", + "type": "Child", + "id": "https://ror.org/051jdqz70" + }, + { + "label": "Higashi Nagoya National Hospital", + "type": "Child", + "id": "https://ror.org/05x2sza30" + }, + { + "label": "Higashihiroshima Medical Center", + "type": "Child", + "id": "https://ror.org/03bd22t26" + }, + { + "label": "Himeji Medical Center", + "type": "Child", + "id": "https://ror.org/037767x92" + }, + { + "label": "Hirosaki National Hospital", + "type": "Child", + "id": "https://ror.org/03qrrp624" + }, + { + "label": "Hizen Psychiatric Center", + "type": "Child", + "id": "https://ror.org/05087r129" + }, + { + "label": "Ibarakihigashi National Hospital", + "type": "Child", + "id": "https://ror.org/040xmsv41" + }, + { + "label": "Iwakuni Medical Center", + "type": "Child", + "id": "https://ror.org/03kcxpp45" + }, + { + "label": "Kagawa National Children's Hospital", + "type": "Child", + "id": "https://ror.org/03ffc6g28" + }, + { + "label": "Kagoshima Medical Center", + "type": "Child", + "id": "https://ror.org/03nd0nz77" + }, + { + "label": "Kanazawa Medical Center", + "type": "Child", + "id": "https://ror.org/00m8tc820" + }, + { + "label": "Kasumigaura Medical Center", + "type": "Child", + "id": "https://ror.org/03yt4qx74" + }, + { + "label": "Kobe Medical Center", + "type": "Child", + "id": "https://ror.org/00161f548" + }, + { + "label": "Kumamoto Medical Center", + "type": "Child", + "id": "https://ror.org/05sy5w128" + }, + { + "label": "Kure Medical Center", + "type": "Child", + "id": "https://ror.org/05te51965" + }, + { + "label": "Kurihama Medical and Addiction Center", + "type": "Child", + "id": "https://ror.org/01kqjm533" + }, + { + "label": "Kyoto Medical Center", + "type": "Child", + "id": "https://ror.org/045kb1d14" + }, + { + "label": "Mie Chuo Medical Center", + "type": "Child", + "id": "https://ror.org/039kky066" + }, + { + "label": "Minami Wakayama Medical Center", + "type": "Child", + "id": "https://ror.org/04fz99q08" + }, + { + "label": "Murayama Medical Center", + "type": "Child", + "id": "https://ror.org/02z5nms51" + }, + { + "label": "Nagara Medical Center", + "type": "Child", + "id": "https://ror.org/03vmdsx94" + }, + { + "label": "Nagasaki Kawatana Medical Center", + "type": "Child", + "id": "https://ror.org/01aw2gs83" + }, + { + "label": "Nagasaki Medical Center", + "type": "Child", + "id": "https://ror.org/02qv90y91" + }, + { + "label": "Nagoya Medical Center", + "type": "Child", + "id": "https://ror.org/04ftw3n55" + }, + { + "label": "Nanao hospital", + "type": "Child", + "id": "https://ror.org/04qwwm875" + }, + { + "label": "National Disaster Medical Center", + "type": "Child", + "id": "https://ror.org/056qqqn18" + }, + { + "label": "National Hospital Organization Hanamaki Hospital", + "type": "Child", + "id": "https://ror.org/03d6stm02" + }, + { + "label": "National Hospital Organization Hokkaido Medical Center", + "type": "Child", + "id": "https://ror.org/00sbe8213" + }, + { + "label": "National Hospital Organization Iobyoin", + "type": "Child", + "id": "https://ror.org/01byxk048" + }, + { + "label": "National Hospital Organization Kyushu Cancer Center", + "type": "Child", + "id": "https://ror.org/00mce9b34" + }, + { + "label": "National Hospital Organization Mito Medical Center", + "type": "Child", + "id": "https://ror.org/00m9ydx43" + }, + { + "label": "National Hospital Organization Takamatsu Medical Center", + "type": "Child", + "id": "https://ror.org/05a68bd15" + }, + { + "label": "National Hospital Organization Takasaki Medical Center", + "type": "Child", + "id": "https://ror.org/02tbkt967" + }, + { + "label": "National Kinki Chuo Hospital for Chest Disease", + "type": "Child", + "id": "https://ror.org/05jp74k96" + }, + { + "label": "National Kyushu Medical Center", + "type": "Child", + "id": "https://ror.org/022296476" + }, + { + "label": "National Sagamihara Hospital", + "type": "Child", + "id": "https://ror.org/01gvfxs59" + }, + { + "label": "Nishi Niigata Chuo National Hospital", + "type": "Child", + "id": "https://ror.org/059wef195" + }, + { + "label": "Obihiro National Hospital", + "type": "Child", + "id": "https://ror.org/05wstbs93" + }, + { + "label": "Oita Medical Center", + "type": "Child", + "id": "https://ror.org/0091mqf26" + }, + { + "label": "Okayama Medical Center", + "type": "Child", + "id": "https://ror.org/041c01c38" + }, + { + "label": "Omuta hospital", + "type": "Child", + "id": "https://ror.org/01jktjc68" + }, + { + "label": "Osaka Minami Medical Center", + "type": "Child", + "id": "https://ror.org/02k3rdd90" + }, + { + "label": "Osaka National Hospital", + "type": "Child", + "id": "https://ror.org/00b6s9f18" + }, + { + "label": "Saigata National Hospital", + "type": "Child", + "id": "https://ror.org/030nfm877" + }, + { + "label": "Sakakibara Hospital", + "type": "Child", + "id": "https://ror.org/03s7fvd27" + }, + { + "label": "Sapporo National Hospital", + "type": "Child", + "id": "https://ror.org/05afnhv08" + }, + { + "label": "Sendai Medical Center", + "type": "Child", + "id": "https://ror.org/02cq51909" + }, + { + "label": "Sendai Nishitaga National Hospital", + "type": "Child", + "id": "https://ror.org/00gahk913" + }, + { + "label": "Shikoku Cancer Center", + "type": "Child", + "id": "https://ror.org/03yk8xt33" + }, + { + "label": "Shikoku Medical Center for Children and Adults", + "type": "Child", + "id": "https://ror.org/05jreb977" + }, + { + "label": "Shizuoka Medical Center", + "type": "Child", + "id": "https://ror.org/03xrts777" + }, + { + "label": "Tochigi Medical Center", + "type": "Child", + "id": "https://ror.org/057hbdz28" + }, + { + "label": "Tokushima Hospital", + "type": "Child", + "id": "https://ror.org/05s5g6369" + }, + { + "label": "Tokyo Medical Center", + "type": "Child", + "id": "https://ror.org/005xkwy83" + }, + { + "label": "Tokyo National Hospital", + "type": "Child", + "id": "https://ror.org/05asn5035" + }, + { + "label": "Toneyama National Hospital", + "type": "Child", + "id": "https://ror.org/01ppsp263" + }, + { + "label": "Ureshino Medical Center", + "type": "Child", + "id": "https://ror.org/044q21j42" + }, + { + "label": "Utano Hospital", + "type": "Child", + "id": "https://ror.org/04rzagz55" + }, + { + "label": "National Mie Hospital", + "type": "Related", + "id": "https://ror.org/04q0b3c27" + }, + { + "label": "National Hospital Organization Saitama Hospital", + "type": "Child", + "id": "https://ror.org/05jyayj71" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.hosp.go.jp/" + ], + "aliases": [ + "National Hospital Organization Nagasaki Medical Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "独立行政法人国立病院機構", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.416698.4", + "preferred": "grid.416698.4" + }, + "Wikidata": { + "all": [ + "Q11421286" + ], + "preferred": "Q11421286" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03p3e4237.json b/v1.52/v1/03p3e4237.json new file mode 100644 index 000000000..e8265eb30 --- /dev/null +++ b/v1.52/v1/03p3e4237.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/03p3e4237", + "name": "Silence Therapeutics (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Silence Therapeutics (Germany)", + "type": "Child", + "id": "https://ror.org/01hwrdv70" + }, + { + "label": "Silence Therapeutics (United States)", + "type": "Child", + "id": "https://ror.org/05dwtb503" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.silence-therapeutics.com/" + ], + "aliases": [], + "acronyms": [ + "SLN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Silence_Therapeutics", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022030" + ], + "preferred": "501100022030" + }, + "GRID": { + "all": "grid.508399.e", + "preferred": "grid.508399.e" + }, + "ISNI": { + "all": [ + "0000 0004 0436 6878" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7514392" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03p76m698.json b/v1.52/v1/03p76m698.json new file mode 100644 index 000000000..7f7d0794a --- /dev/null +++ b/v1.52/v1/03p76m698.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/03p76m698", + "name": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Paris 1 Panthéon-Sorbonne", + "type": "Parent", + "id": "https://ror.org/002t25c44" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "Université Paris Nanterre", + "type": "Parent", + "id": "https://ror.org/013bkhk48" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Parent", + "id": "https://ror.org/00e96v939" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/00hx6zz33" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.idhes.cnrs.fr/" + ], + "aliases": [], + "acronyms": [ + "IDHES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.483519.2", + "preferred": "grid.483519.2" + }, + "ISNI": { + "all": [ + "0000 0001 0575 2015" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03pbgwk21.json b/v1.52/v1/03pbgwk21.json new file mode 100644 index 000000000..afabdfe27 --- /dev/null +++ b/v1.52/v1/03pbgwk21.json @@ -0,0 +1,150 @@ +{ + "id": "https://ror.org/03pbgwk21", + "name": "Université Bordeaux Montaigne", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Aménagement, Développement, Environnement, Santé et Sociétés", + "type": "Child", + "id": "https://ror.org/027953924" + }, + { + "label": "Ausonius Institut de Recherche sur l'Antiquité et le Moyen age", + "type": "Child", + "id": "https://ror.org/05jm22562" + }, + { + "label": "Centre de Recherche sur la Langue et les Textes Basques", + "type": "Child", + "id": "https://ror.org/03bj0v820" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "Child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Laboratoire Cognition, Langues, Langage, Ergonomie", + "type": "Child", + "id": "https://ror.org/029cj5595" + }, + { + "label": "Les Afriques dans le Monde", + "type": "Child", + "id": "https://ror.org/00721wn77" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Sciences, Philosophie, Humanités", + "type": "Child", + "id": "https://ror.org/00bj04t22" + }, + { + "label": "Passages", + "type": "Child", + "id": "https://ror.org/00s40r567" + }, + { + "label": "D2iA - Dynamiques, Interactions et Interculturalité en Asie", + "type": "Child", + "id": "https://ror.org/04qmjst50" + } + ], + "addresses": [ + { + "lat": 44.84044, + "lng": -0.5805, + "state": null, + "state_code": null, + "city": "Bordeaux", + "geonames_city": { + "id": 3031582, + "city": "Bordeaux", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.u-bordeaux-montaigne.fr/fr/index.html" + ], + "aliases": [ + "Michel de Montaigne University Bordeaux 3" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Bordeaux_Montaigne_University", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100019590" + ], + "preferred": "501100019590" + }, + "GRID": { + "all": "grid.410603.0", + "preferred": "grid.410603.0" + }, + "ISNI": { + "all": [ + "0000 0004 0475 7342" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q13342" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03prym056.json b/v1.52/v1/03prym056.json new file mode 100644 index 000000000..83a22c37c --- /dev/null +++ b/v1.52/v1/03prym056.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03prym056", + "name": "Almac (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 54.44709, + "lng": -6.387, + "state": null, + "state_code": null, + "city": "Craigavon", + "geonames_city": { + "id": 3345440, + "city": "Craigavon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.almacgroup.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Almac", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003209", + "501100003208" + ], + "preferred": "501100003208" + }, + "GRID": { + "all": "grid.423992.7", + "preferred": "grid.423992.7" + }, + "ISNI": { + "all": [ + "0000 0001 0649 5874" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4733630" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03psxy088.json b/v1.52/v1/03psxy088.json new file mode 100644 index 000000000..e1aaa7693 --- /dev/null +++ b/v1.52/v1/03psxy088.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03psxy088", + "name": "Monroe Community College", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 43.14756, + "lng": -77.55055, + "state": null, + "state_code": null, + "city": "Brighton", + "geonames_city": { + "id": 5110159, + "city": "Brighton", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.monroecc.edu" + ], + "aliases": [ + "SUNY Monroe Community College", + "State University of New York Monroe Community College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Monroe_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.454363.3", + "preferred": "grid.454363.3" + }, + "ISNI": { + "all": [ + "0000 0000 9342 3918" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6902141" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03pypm027.json b/v1.52/v1/03pypm027.json new file mode 100644 index 000000000..79d5c0c3e --- /dev/null +++ b/v1.52/v1/03pypm027.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03pypm027", + "name": "Bangabandhu Sheikh Mujibur Rahman University, Kishoreganj", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.43944, + "lng": 90.78291, + "state": null, + "state_code": null, + "city": "Kishorganj", + "geonames_city": { + "id": 1337249, + "city": "Kishorganj", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://bsmru.ac.bd" + ], + "aliases": [ + "BSMRU, Kishoreganj", + "বঙ্গবন্ধু শেখ মুজিবুর রহমান বিশ্ববিদ্যালয়" + ], + "acronyms": [ + "BSMRU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bangabandhu_Sheikh_Mujibur_Rahman_University%2C_Kishoreganj", + "labels": [ + { + "label": "বঙ্গবন্ধু শেখ মুজিবুর রহমান বিশ্ববিদ্যালয়, কিশোরগঞ্জ", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q86502559" + ], + "preferred": "Q86502559" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03q1qx424.json b/v1.52/v1/03q1qx424.json new file mode 100644 index 000000000..c0e547678 --- /dev/null +++ b/v1.52/v1/03q1qx424.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03q1qx424", + "name": "Diversité, génomes et interactions micro-organismes-insectes", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dgimi.hub.inrae.fr" + ], + "aliases": [], + "acronyms": [ + "DGIMI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Diversity, Genomes and Insects-Microorganisms Interactions", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503158.a", + "preferred": "grid.503158.a" + }, + "Wikidata": { + "all": [ + "Q61933021" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03q5ve753.json b/v1.52/v1/03q5ve753.json new file mode 100644 index 000000000..3225795e6 --- /dev/null +++ b/v1.52/v1/03q5ve753.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03q5ve753", + "name": "Jiangnan Social University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.30408, + "lng": 120.59538, + "state": null, + "state_code": null, + "city": "Suzhou", + "geonames_city": { + "id": 1886760, + "city": "Suzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "江南社会学院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q23006203" + ], + "preferred": "Q23006203" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03qan4b12.json b/v1.52/v1/03qan4b12.json new file mode 100644 index 000000000..773e11129 --- /dev/null +++ b/v1.52/v1/03qan4b12.json @@ -0,0 +1,155 @@ +{ + "id": "https://ror.org/03qan4b12", + "name": "Centro Científico Tecnológico - La Plata", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Biochemistry Research Institute of La Plata", + "type": "Child", + "id": "https://ror.org/018gb4016" + }, + { + "label": "Centro de Investigaciones Cardiovasculares", + "type": "Child", + "id": "https://ror.org/04ebzxq58" + }, + { + "label": "Centro de Investigaciones en Tecnologia de Pinturas", + "type": "Child", + "id": "https://ror.org/0117z7d66" + }, + { + "label": "Centro de Investigación y Desarrollo en Criotecnología de Alimentos", + "type": "Child", + "id": "https://ror.org/04v30e006" + }, + { + "label": "Instituto Multidisciplinario de Biología Celular", + "type": "Child", + "id": "https://ror.org/05p6vdy67" + }, + { + "label": "Instituto de Biotecnología y Biología Molecular", + "type": "Child", + "id": "https://ror.org/057zmmf60" + }, + { + "label": "Instituto de Fisica de Liquidos y Sistemas Biologicos", + "type": "Child", + "id": "https://ror.org/030qxdf23" + }, + { + "label": "Instituto de Fisiología Vegetal", + "type": "Child", + "id": "https://ror.org/00k3smk02" + }, + { + "label": "Instituto de Física La Plata", + "type": "Child", + "id": "https://ror.org/01pmtm379" + }, + { + "label": "Instituto de Genética Veterinaria", + "type": "Child", + "id": "https://ror.org/05fvszr38" + }, + { + "label": "Instituto de Investigaciones Fisicoquímicas Teóricas y Aplicadas", + "type": "Child", + "id": "https://ror.org/02t6gq889" + }, + { + "label": "Consejo Nacional de Investigaciones Científicas y Técnicas", + "type": "Parent", + "id": "https://ror.org/03cqe8w59" + }, + { + "label": "Universidad Nacional de La Plata", + "type": "Related", + "id": "https://ror.org/01tjs6929" + }, + { + "label": "Instituto de Astrofísica de La Plata", + "type": "Child", + "id": "https://ror.org/04sw7nr96" + } + ], + "addresses": [ + { + "lat": -34.92145, + "lng": -57.95453, + "state": null, + "state_code": null, + "city": "La Plata", + "geonames_city": { + "id": 3432043, + "city": "La Plata", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://laplata.conicet.gov.ar/" + ], + "aliases": [ + "Centro Científico Tecnológico del Consejo Nacional de Investigaciones Científicas y Técnicas" + ], + "acronyms": [ + "CONICET-LA PLATA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": { + "GRID": { + "all": "grid.507430.5", + "preferred": "grid.507430.5" + }, + "ISNI": { + "all": [ + "0000 0004 5913 3852" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03qgzzb04.json b/v1.52/v1/03qgzzb04.json new file mode 100644 index 000000000..4b05774da --- /dev/null +++ b/v1.52/v1/03qgzzb04.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03qgzzb04", + "name": "Telefonica Research and Development", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Telefónica (Spain)", + "type": "Parent", + "id": "https://ror.org/012f7tj07" + }, + { + "label": "Telefónica Innovación Digital (Spain)", + "type": "Successor", + "id": "https://ror.org/03t5r9r41" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.tid.es/" + ], + "aliases": [ + "Telefónica I+D" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [ + { + "label": "Telefónica Investigación y Desarrollo", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.99308.3b", + "preferred": "grid.99308.3b" + }, + "ISNI": { + "all": [ + "0000 0000 9422 6991" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03qhewz33.json b/v1.52/v1/03qhewz33.json new file mode 100644 index 000000000..6cccf0da9 --- /dev/null +++ b/v1.52/v1/03qhewz33.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/03qhewz33", + "name": "Kennedy Memorial Trust", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.kennedytrust.org.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100000647", + "100016580" + ], + "preferred": "100016580" + }, + "GRID": { + "all": "grid.468513.d", + "preferred": "grid.468513.d" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03qma7a12.json b/v1.52/v1/03qma7a12.json new file mode 100644 index 000000000..f1e23619f --- /dev/null +++ b/v1.52/v1/03qma7a12.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/03qma7a12", + "name": "Observatoire Aquitain des Sciences de l'Univers", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Université Bordeaux Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Bordeaux", + "type": "Parent", + "id": "https://ror.org/057qpr032" + }, + { + "label": "Université de Pau et des Pays de l'Adour", + "type": "Parent", + "id": "https://ror.org/01frn9647" + } + ], + "addresses": [ + { + "lat": 44.83061, + "lng": -0.52675, + "state": null, + "state_code": null, + "city": "Floirac", + "geonames_city": { + "id": 3018246, + "city": "Floirac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.oasu.u-bordeaux.fr/index.php/present2015.html" + ], + "aliases": [], + "acronyms": [ + "OASU" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.470942.c", + "preferred": "grid.470942.c" + }, + "ISNI": { + "all": [ + "0000 0001 1958 9570" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03qq7c889.json b/v1.52/v1/03qq7c889.json new file mode 100644 index 000000000..ef21c57f4 --- /dev/null +++ b/v1.52/v1/03qq7c889.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03qq7c889", + "name": "Khulna Agricultural University", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.80979, + "lng": 89.56439, + "state": null, + "state_code": null, + "city": "Khulna", + "geonames_city": { + "id": 1336135, + "city": "Khulna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kau.ac.bd" + ], + "aliases": [], + "acronyms": [ + "KAU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Khulna_Agricultural_University", + "labels": [ + { + "label": "খুলনা কৃষি বিশ্ববিদ্যালয়", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1665 484X" + ], + "preferred": "0000 0005 1665 484X" + }, + "Wikidata": { + "all": [ + "Q61365816" + ], + "preferred": "Q61365816" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03r0cdk24.json b/v1.52/v1/03r0cdk24.json new file mode 100644 index 000000000..4f76357a2 --- /dev/null +++ b/v1.52/v1/03r0cdk24.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/03r0cdk24", + "name": "Institut de Recherche sur l'Architecture Antique", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Aix-Marseille Université", + "type": "Parent", + "id": "https://ror.org/035xkbk20" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "Université de Pau et des Pays de l'Adour", + "type": "Parent", + "id": "https://ror.org/01frn9647" + }, + { + "label": "Institut National de Recherches Archéologiques Préventives", + "type": "Parent", + "id": "https://ror.org/04andmq85" + } + ], + "addresses": [ + { + "lat": 43.5283, + "lng": 5.44973, + "state": null, + "state_code": null, + "city": "Aix-en-Provence", + "geonames_city": { + "id": 3038354, + "city": "Aix-en-Provence", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iraa.mmsh.fr" + ], + "aliases": [ + "Service d’Architecture Antique" + ], + "acronyms": [ + "IRAA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482738.2", + "preferred": "grid.482738.2" + }, + "ISNI": { + "all": [ + "0000 0001 2192 7970" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03r5zec51.json b/v1.52/v1/03r5zec51.json new file mode 100644 index 000000000..37b63a11f --- /dev/null +++ b/v1.52/v1/03r5zec51.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/03r5zec51", + "name": "HES-SO Valais-Wallis", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institute of Life Sciences", + "type": "Child", + "id": "https://ror.org/00x1rrc95" + }, + { + "label": "HES-SO University of Applied Sciences and Arts Western Switzerland", + "type": "Parent", + "id": "https://ror.org/01xkakk17" + }, + { + "label": "The Sense Innovation and Research Center", + "type": "Related", + "id": "https://ror.org/01eas9a07" + } + ], + "addresses": [ + { + "lat": 46.22739, + "lng": 7.35559, + "state": null, + "state_code": null, + "city": "Sion", + "geonames_city": { + "id": 2658576, + "city": "Sion", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hevs.ch/en/" + ], + "aliases": [ + "University of Applied Sciences and Arts Western Switzerland Valais" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Fachhochschule Westschweiz - Wallis", + "iso639": "de" + }, + { + "label": "Haute École Spécialisée de Suisse Occidentale - Valais", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010743" + ], + "preferred": "501100010743" + }, + "GRID": { + "all": "grid.483301.d", + "preferred": "grid.483301.d" + }, + "ISNI": { + "all": [ + "0000 0004 0453 2100" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3128597" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03r938j26.json b/v1.52/v1/03r938j26.json new file mode 100644 index 000000000..f3d2bf232 --- /dev/null +++ b/v1.52/v1/03r938j26.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03r938j26", + "name": "Laboratoire d'Informatique Fondamentale et Appliquée de Tours", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Tours", + "type": "Parent", + "id": "https://ror.org/02wwzvj46" + } + ], + "addresses": [ + { + "lat": 47.39484, + "lng": 0.70398, + "state": null, + "state_code": null, + "city": "Tours", + "geonames_city": { + "id": 2972191, + "city": "Tours", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lifat.univ-tours.fr/" + ], + "aliases": [], + "acronyms": [ + "LIFAT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Fundamental and Applied Computer Science of Tours", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503308.d", + "preferred": "grid.503308.d" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03r97y618.json b/v1.52/v1/03r97y618.json new file mode 100644 index 000000000..8ab7484e0 --- /dev/null +++ b/v1.52/v1/03r97y618.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03r97y618", + "name": "International Center for Relativistic Astrophysics Network", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.icranet.org/" + ], + "aliases": [], + "acronyms": [ + "ICRANet" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "GRID": { + "all": "grid.510957.f", + "preferred": "grid.510957.f" + }, + "ISNI": { + "all": [ + "0000 0004 8366 7993" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03r9qc142.json b/v1.52/v1/03r9qc142.json new file mode 100644 index 000000000..17a7b104d --- /dev/null +++ b/v1.52/v1/03r9qc142.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/03r9qc142", + "name": "UCL Biomedical Research Centre", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "Parent", + "id": "https://ror.org/0187kwz08" + }, + { + "label": "University College London", + "type": "Parent", + "id": "https://ror.org/02jx3x895" + }, + { + "label": "University College London Hospitals NHS Foundation Trust", + "type": "Parent", + "id": "https://ror.org/042fqyp44" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.uclhospitals.brc.nihr.ac.uk/" + ], + "aliases": [ + "NIHR Biomedical Research Centre at University College London Hospitals NHS Foundation Trust and University College London" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/UCLH/UCL_Biomedical_Research_Centre", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100012317", + "501100012621" + ], + "preferred": "501100012621" + }, + "GRID": { + "all": "grid.485385.7", + "preferred": "grid.485385.7" + }, + "Wikidata": { + "all": [ + "Q7864056" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03rn0z073.json b/v1.52/v1/03rn0z073.json new file mode 100644 index 000000000..93aef10cc --- /dev/null +++ b/v1.52/v1/03rn0z073.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/03rn0z073", + "name": "Ministry of Public Health", + "email_address": null, + "ip_addresses": [], + "established": 1888, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Department of Disease Control", + "type": "Child", + "id": "https://ror.org/00394zv26" + }, + { + "label": "Department of Medical Sciences", + "type": "Child", + "id": "https://ror.org/03d5a9t15" + }, + { + "label": "Institute of Dermatology", + "type": "Child", + "id": "https://ror.org/02j6cz137" + }, + { + "label": "Bureau of Quality and Safety of Food", + "type": "Child", + "id": "https://ror.org/04cvt0159" + } + ], + "addresses": [ + { + "lat": 13.86075, + "lng": 100.51477, + "state": null, + "state_code": null, + "city": "Nonthaburi", + "geonames_city": { + "id": 1608133, + "city": "Nonthaburi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://eng.moph.go.th/" + ], + "aliases": [ + "Krasuang Satharanasuk" + ], + "acronyms": [ + "MOPH" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ministry_of_Public_Health_(Thailand)", + "labels": [ + { + "label": "กระทรวงสาธารณสุข", + "iso639": "th" + } + ], + "country": { + "country_name": "Thailand", + "country_code": "TH" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004397", + "501100007261" + ], + "preferred": "501100004397" + }, + "GRID": { + "all": "grid.415836.d", + "preferred": "grid.415836.d" + }, + "ISNI": { + "all": [ + "0000 0004 0576 2573" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5970641" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03rnk6m14.json b/v1.52/v1/03rnk6m14.json new file mode 100644 index 000000000..4f2da57eb --- /dev/null +++ b/v1.52/v1/03rnk6m14.json @@ -0,0 +1,180 @@ +{ + "id": "https://ror.org/03rnk6m14", + "name": "Institut Agro Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1842, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Ingénierie des Agropolymères et Technologies Emergentes", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Institut des Sciences des Plantes de Montpellier", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Diversité, génomes et interactions micro-organismes-insectes", + "type": "Child", + "id": "https://ror.org/03q1qx424" + }, + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "Child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "type": "Child", + "id": "https://ror.org/03fte3n86" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Mathématiques, Informatique et Statistique pour l'Environnement et l'Agronomie", + "type": "Child", + "id": "https://ror.org/01pd2sz18" + }, + { + "label": "Sciences pour L’Œnologie", + "type": "Child", + "id": "https://ror.org/04w07sc25" + }, + { + "label": "Systèmes d’élevage méditerranéens et tropicaux", + "type": "Child", + "id": "https://ror.org/05merjr74" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "Child", + "id": "https://ror.org/03kbarg82" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "L'Institut Agro", + "type": "Parent", + "id": "https://ror.org/01dkyve95" + }, + { + "label": "Genetic Improvement and Adaptation of Mediterranean and Tropical Plants", + "type": "Child", + "id": "https://ror.org/02w4exq36" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.institut-agro-montpellier.fr" + ], + "aliases": [ + "Montpellier SupAgro", + "SupAgro" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Centre international d'études supérieures en sciences agronomiques", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.434209.8", + "preferred": "grid.434209.8" + }, + "ISNI": { + "all": [ + "0000 0001 2172 5332" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945808" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03rth4p18.json b/v1.52/v1/03rth4p18.json new file mode 100644 index 000000000..13bb091af --- /dev/null +++ b/v1.52/v1/03rth4p18.json @@ -0,0 +1,298 @@ +{ + "id": "https://ror.org/03rth4p18", + "name": "Université Lumière Lyon 2", + "email_address": null, + "ip_addresses": [], + "established": 1835, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Archéologie et Archéométrie", + "type": "Child", + "id": "https://ror.org/02bq56641" + }, + { + "label": "Archéorient", + "type": "Child", + "id": "https://ror.org/059xs3104" + }, + { + "label": "Center for Research in Psychopathology and Clinical Psychology", + "type": "Child", + "id": "https://ror.org/04bsn3y16" + }, + { + "label": "Centre Max Weber", + "type": "Child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Recherche en Linguistique Appliquée", + "type": "Child", + "id": "https://ror.org/048z48z46" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "Child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Conception de l'Action en Situation", + "type": "Child", + "id": "https://ror.org/0476zq753" + }, + { + "label": "Decision & Information Sciences for Production Systems", + "type": "Child", + "id": "https://ror.org/02stf8w13" + }, + { + "label": "Transversales", + "type": "Child", + "id": "https://ror.org/03cccec37" + }, + { + "label": "Education, Cultures, Politiques", + "type": "Child", + "id": "https://ror.org/037xc1874" + }, + { + "label": "Entrepôts, Représentation et Ingénierie des Connaissances", + "type": "Child", + "id": "https://ror.org/009frb846" + }, + { + "label": "Environnement, ville, société", + "type": "Child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Equipe de recherche de Lyon en Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/04y24xj84" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "type": "Child", + "id": "https://ror.org/042fmc481" + }, + { + "label": "Groupe de Recherche en Psychologie Sociale", + "type": "Child", + "id": "https://ror.org/028cp7y71" + }, + { + "label": "Histoire et Sources des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/01yx7av22" + }, + { + "label": "Histoire, Archéologie, Littératures des Mondes Chrétiens et Musulmans Médiévaux", + "type": "Child", + "id": "https://ror.org/05mqwtr17" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "Child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "Child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Interactions, Corpus, Apprentissages, Représentations", + "type": "Child", + "id": "https://ror.org/04mn0nr69" + }, + { + "label": "Laboratoire Aménagement Économie Transports", + "type": "Child", + "id": "https://ror.org/01yw97595" + }, + { + "label": "Laboratoire Dynamique du Langage", + "type": "Child", + "id": "https://ror.org/01fvx3s14" + }, + { + "label": "Laboratoire Passages XX_XXI", + "type": "Child", + "id": "https://ror.org/048ryj409" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratoire d’Étude des Mécanismes Cognitifs", + "type": "Child", + "id": "https://ror.org/0061rmm93" + }, + { + "label": "Laboratoire d'études rurales", + "type": "Child", + "id": "https://ror.org/00rj8cd91" + }, + { + "label": "Lettres et Civilisations Etrangères", + "type": "Child", + "id": "https://ror.org/051br2d77" + }, + { + "label": "Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles", + "type": "Child", + "id": "https://ror.org/04rkh0096" + }, + { + "label": "Institut d'Asie Orientale", + "type": "Child", + "id": "https://ror.org/007dy3y92" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Laboratoire d'anthropologie des enjeux contemporains", + "type": "Child", + "id": "https://ror.org/000q6dn27" + }, + { + "label": "Développement Individu Processus Handicap Education", + "type": "Child", + "id": "https://ror.org/01t7v1t25" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "Child", + "id": "https://ror.org/04dv4he91" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.univ-lyon2.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Lumi%C3%A8re_University_Lyon_2", + "labels": [ + { + "label": "Lumière University Lyon 2", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100011079" + ], + "preferred": "501100011079" + }, + "GRID": { + "all": "grid.72960.3a", + "preferred": "grid.72960.3a" + }, + "ISNI": { + "all": [ + "0000 0001 2188 0906" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4041" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03rve6f96.json b/v1.52/v1/03rve6f96.json new file mode 100644 index 000000000..4eaf775ac --- /dev/null +++ b/v1.52/v1/03rve6f96.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/03rve6f96", + "name": "LS Cable & System (South Korea)", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.40282, + "lng": 126.92874, + "state": null, + "state_code": null, + "city": "Anyang-si", + "geonames_city": { + "id": 1846894, + "city": "Anyang-si", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lscns.co.kr" + ], + "aliases": [ + "LS Cable", + "엘에스전선" + ], + "acronyms": [ + "LS C&S", + "LSC", + "LSCNS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/LS_Cable_%26_System", + "labels": [ + { + "label": "LS Cable & System", + "iso639": "en" + }, + { + "label": "LS Cable Ltd.", + "iso639": "en" + }, + { + "label": "LS전선", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6410 508X" + ], + "preferred": "0000 0004 6410 508X" + }, + "Wikidata": { + "all": [ + "Q489456" + ], + "preferred": "Q489456" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03s13vb04.json b/v1.52/v1/03s13vb04.json new file mode 100644 index 000000000..7573d179a --- /dev/null +++ b/v1.52/v1/03s13vb04.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03s13vb04", + "name": "Northern Netherlands Provinces alliance", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.21917, + "lng": 6.56667, + "state": null, + "state_code": null, + "city": "Groningen", + "geonames_city": { + "id": 2755251, + "city": "Groningen", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.snn.eu/en" + ], + "aliases": [], + "acronyms": [ + "SNN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "samenwerkingsverband Noord-Nederland", + "iso639": "nl" + } + ], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100013427" + ], + "preferred": "501100013427" + }, + "GRID": { + "all": "grid.484623.f", + "preferred": "grid.484623.f" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03s49ys28.json b/v1.52/v1/03s49ys28.json new file mode 100644 index 000000000..8775f2083 --- /dev/null +++ b/v1.52/v1/03s49ys28.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03s49ys28", + "name": "Catholic International University", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.28899, + "lng": -77.85972, + "state": null, + "state_code": null, + "city": "Charles Town", + "geonames_city": { + "id": 4801850, + "city": "Charles Town", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://catholiciu.edu" + ], + "aliases": [ + "Catholic Distance University" + ], + "acronyms": [ + "CDU", + "CIU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Catholic_Distance_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.448678.1", + "preferred": "grid.448678.1" + }, + "ISNI": { + "all": [ + "0000 0004 4908 2641" + ], + "preferred": "0000 0004 4908 2641" + }, + "Wikidata": { + "all": [ + "Q5053147" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03s51y289.json b/v1.52/v1/03s51y289.json new file mode 100644 index 000000000..100c45d3a --- /dev/null +++ b/v1.52/v1/03s51y289.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/03s51y289", + "name": "National Institute of Standards & Industrial Technology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -9.46913, + "lng": 147.19869, + "state": null, + "state_code": null, + "city": "Boroko", + "geonames_city": { + "id": 2099101, + "city": "Boroko", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nisit.gov.pg" + ], + "aliases": [ + "National Institute of Standards and Industrial Technology", + "National Institute of Standards and Industrial Technology of Papua New Guinea" + ], + "acronyms": [ + "NISIT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Papua New Guinea", + "country_code": "PG" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/03sg2bq51.json b/v1.52/v1/03sg2bq51.json new file mode 100644 index 000000000..612717bf9 --- /dev/null +++ b/v1.52/v1/03sg2bq51.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03sg2bq51", + "name": "Empire State University", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 43.08313, + "lng": -73.78457, + "state": null, + "state_code": null, + "city": "Saratoga Springs", + "geonames_city": { + "id": 5136334, + "city": "Saratoga Springs", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunyempire.edu" + ], + "aliases": [ + "Empire State College", + "SUNY Empire State", + "SUNY Empire State University", + "State University of New York Empire State University" + ], + "acronyms": [ + "ESC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Empire_State_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.451721.4", + "preferred": "grid.451721.4" + }, + "ISNI": { + "all": [ + "0000 0000 9408 9050" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5374138" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03sgyqj04.json b/v1.52/v1/03sgyqj04.json new file mode 100644 index 000000000..39e9b06f8 --- /dev/null +++ b/v1.52/v1/03sgyqj04.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/03sgyqj04", + "name": "École Nationale Supérieure de Chimie de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1676, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institut Charles Gerhardt Montpellier", + "type": "Child", + "id": "https://ror.org/028wq3277" + }, + { + "label": "Institut Européen des Membranes", + "type": "Child", + "id": "https://ror.org/04nmj9827" + }, + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "Child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Institut de Chimie Séparative de Marcoule", + "type": "Child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.enscm.fr/" + ], + "aliases": [], + "acronyms": [ + "ENSCM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_nationale_sup%C3%A9rieure_de_chimie_de_Montpellier", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418671.d", + "preferred": "grid.418671.d" + }, + "ISNI": { + "all": [ + "0000 0001 2175 3544" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q948420" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03sr1zw68.json b/v1.52/v1/03sr1zw68.json new file mode 100644 index 000000000..c28f60c73 --- /dev/null +++ b/v1.52/v1/03sr1zw68.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03sr1zw68", + "name": "Biocompatibles (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.21444, + "lng": -0.80054, + "state": null, + "state_code": null, + "city": "Farnham", + "geonames_city": { + "id": 2649660, + "city": "Farnham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.biocompatibles.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100021075" + ], + "preferred": "100021075" + }, + "GRID": { + "all": "grid.431821.d", + "preferred": "grid.431821.d" + }, + "Wikidata": { + "all": [ + "Q4914726" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03t5r9r41.json b/v1.52/v1/03t5r9r41.json new file mode 100644 index 000000000..00505e336 --- /dev/null +++ b/v1.52/v1/03t5r9r41.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/03t5r9r41", + "name": "Telefónica Innovación Digital (Spain)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Telefonica Research and Development", + "type": "Predecessor", + "id": "https://ror.org/03qgzzb04" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://telefonicainnovaciondigital.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Telefónica Digital Innovation", + "iso639": "en" + }, + { + "label": "Telefónica Innovación Digital S.L.U.", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/03t78wx29.json b/v1.52/v1/03t78wx29.json new file mode 100644 index 000000000..26cff6585 --- /dev/null +++ b/v1.52/v1/03t78wx29.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/03t78wx29", + "name": "Hiroshima University", + "email_address": null, + "ip_addresses": [], + "established": 1929, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Hiroshima Prefectural Hospital", + "type": "Related", + "id": "https://ror.org/01rrd4612" + }, + { + "label": "Hiroshima University Hospital", + "type": "Related", + "id": "https://ror.org/038dg9e86" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 34.4, + "lng": 132.45, + "state": null, + "state_code": null, + "city": "Hiroshima", + "geonames_city": { + "id": 1862415, + "city": "Hiroshima", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.hiroshima-u.ac.jp/index.html" + ], + "aliases": [ + "Hiroshima Daigaku" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Hiroshima_University", + "labels": [ + { + "label": "広島大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003790" + ], + "preferred": null + }, + "GRID": { + "all": "grid.257022.0", + "preferred": "grid.257022.0" + }, + "ISNI": { + "all": [ + "0000 0000 8711 3200" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q115220", + "Q25345657" + ], + "preferred": "Q115220" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03tee2f33.json b/v1.52/v1/03tee2f33.json new file mode 100644 index 000000000..aa9c8e3bf --- /dev/null +++ b/v1.52/v1/03tee2f33.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/03tee2f33", + "name": "Ministry of Colleges and Universities", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.70643, + "lng": -79.39864, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ontario.ca/page/ministry-colleges-universities" + ], + "aliases": [ + "Ministry of Advanced Education and Skills Development", + "Ministry of Training, Colleges and Universities" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Advanced_Education_and_Skills_Development", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100021784" + ], + "preferred": "501100021784" + }, + "GRID": { + "all": "grid.484556.e", + "preferred": "grid.484556.e" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03tq3c028.json b/v1.52/v1/03tq3c028.json new file mode 100644 index 000000000..345530d90 --- /dev/null +++ b/v1.52/v1/03tq3c028.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03tq3c028", + "name": "European Regional Centre for Ecohydrology", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Polish Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/01dr6c206" + }, + { + "label": "UNESCO", + "type": "Related", + "id": "https://ror.org/04h4z8k05" + } + ], + "addresses": [ + { + "lat": 51.77058, + "lng": 19.47395, + "state": null, + "state_code": null, + "city": "Lodz", + "geonames_city": { + "id": 3093133, + "city": "Lodz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.erce.unesco.lodz.pl/" + ], + "aliases": [], + "acronyms": [ + "ECRE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100014430" + ], + "preferred": "501100014430" + }, + "GRID": { + "all": "grid.460361.6", + "preferred": "grid.460361.6" + }, + "ISNI": { + "all": [ + "0000 0004 4673 0316" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03tz3v863.json b/v1.52/v1/03tz3v863.json new file mode 100644 index 000000000..9fb2b4fe6 --- /dev/null +++ b/v1.52/v1/03tz3v863.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03tz3v863", + "name": "British Sjögren's Syndrome Association", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.48142, + "lng": -1.89983, + "state": null, + "state_code": null, + "city": "Birmingham", + "geonames_city": { + "id": 2655603, + "city": "Birmingham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bssa.uk.net/" + ], + "aliases": [], + "acronyms": [ + "BSSA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100011732" + ], + "preferred": "100011732" + }, + "GRID": { + "all": "grid.495718.6", + "preferred": "grid.495718.6" + }, + "ISNI": { + "all": [ + "0000 0004 0623 3251" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03v6e0402.json b/v1.52/v1/03v6e0402.json new file mode 100644 index 000000000..a978d1022 --- /dev/null +++ b/v1.52/v1/03v6e0402.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/03v6e0402", + "name": "Iranian National Commission for UNESCO", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "UNESCO", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + } + ], + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fa.irunesco.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Iranian_National_Commission_for_UNESCO", + "labels": [ + { + "label": "کمیسیون ملی یونسکو-ایران", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "GRID": { + "all": "grid.508871.3", + "preferred": "grid.508871.3" + }, + "ISNI": { + "all": [ + "0000 0004 9225 8251" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q22001241" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03v9efr22.json b/v1.52/v1/03v9efr22.json new file mode 100644 index 000000000..4f751e4d2 --- /dev/null +++ b/v1.52/v1/03v9efr22.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03v9efr22", + "name": "The Christie NHS Foundation Trust", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "The Christie Hospital", + "type": "Child", + "id": "https://ror.org/03nd63441" + }, + { + "label": "Cancer Research UK Manchester Centre", + "type": "Child", + "id": "https://ror.org/033svsm10" + } + ], + "addresses": [ + { + "lat": 53.48095, + "lng": -2.23743, + "state": null, + "state_code": null, + "city": "Manchester", + "geonames_city": { + "id": 2643123, + "city": "Manchester", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.christie.nhs.uk/" + ], + "aliases": [ + "Christie Hospital NHS Foundation Trust" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Christie_NHS_Foundation_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100015686", + "100013684" + ], + "preferred": "100013684" + }, + "GRID": { + "all": "grid.412917.8", + "preferred": "grid.412917.8" + }, + "ISNI": { + "all": [ + "0000 0004 0430 9259" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03vd8y618.json b/v1.52/v1/03vd8y618.json new file mode 100644 index 000000000..ec1d55764 --- /dev/null +++ b/v1.52/v1/03vd8y618.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03vd8y618", + "name": "Research Institute in Science of Cyber Security", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.riscs.org.uk/" + ], + "aliases": [], + "acronyms": [ + "RISCS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100017263" + ], + "preferred": "501100017263" + }, + "GRID": { + "all": "grid.502890.6", + "preferred": "grid.502890.6" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03vkfy293.json b/v1.52/v1/03vkfy293.json new file mode 100644 index 000000000..b425a4305 --- /dev/null +++ b/v1.52/v1/03vkfy293.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/03vkfy293", + "name": "Central Institute of Mining and Fuel Research", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Council of Scientific and Industrial Research", + "type": "Parent", + "id": "https://ror.org/021wm7p51" + } + ], + "addresses": [ + { + "lat": 23.79759, + "lng": 86.42992, + "state": null, + "state_code": null, + "city": "Dhanbad", + "geonames_city": { + "id": 1272979, + "city": "Dhanbad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://cimfr.nic.in/profileglance.html" + ], + "aliases": [ + "Central Fuel Research Institute", + "Central Mining Research Institute" + ], + "acronyms": [ + "CIMFR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Central_Institute_of_Mining_and_Fuel_Research", + "labels": [ + { + "label": "सीएसआईआर-केंद्रीय खनन एवं ईंधन अनुसंधान संस्थान", + "iso639": "hi" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010062" + ], + "preferred": "501100010062" + }, + "GRID": { + "all": "grid.505934.e", + "preferred": "grid.505934.e" + }, + "Wikidata": { + "all": [ + "Q18345017" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03vncyz18.json b/v1.52/v1/03vncyz18.json new file mode 100644 index 000000000..592b745cb --- /dev/null +++ b/v1.52/v1/03vncyz18.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/03vncyz18", + "name": "Universidad Tecnológica del Norte de Aguascalientes", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.22819, + "lng": -102.32216, + "state": null, + "state_code": null, + "city": "Rincón de Romos", + "geonames_city": { + "id": 3988651, + "city": "Rincón de Romos", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utna.edu.mx" + ], + "aliases": [ + "Technological University of North Aguascalientes" + ], + "acronyms": [ + "UTNA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/03w9e3r89.json b/v1.52/v1/03w9e3r89.json new file mode 100644 index 000000000..b9ed0b5a4 --- /dev/null +++ b/v1.52/v1/03w9e3r89.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/03w9e3r89", + "name": "Rockland Community College", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 41.11482, + "lng": -74.14959, + "state": null, + "state_code": null, + "city": "Suffern", + "geonames_city": { + "id": 5140072, + "city": "Suffern", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sunyrockland.edu/" + ], + "aliases": [ + "SUNY Rockland Community College", + "State University of New York Rockland Community College" + ], + "acronyms": [ + "RCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rockland_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447338.f", + "preferred": "grid.447338.f" + }, + "ISNI": { + "all": [ + "0000 0000 9201 678X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7355439" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03wd9za21.json b/v1.52/v1/03wd9za21.json new file mode 100644 index 000000000..2fded7159 --- /dev/null +++ b/v1.52/v1/03wd9za21.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/03wd9za21", + "name": "European Space Agency", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "European Astronaut Centre", + "type": "Child", + "id": "https://ror.org/00hdhxd58" + }, + { + "label": "European Centre for Space Applications and Telecommunications", + "type": "Child", + "id": "https://ror.org/00w3swb66" + }, + { + "label": "European Space Astronomy Centre", + "type": "Child", + "id": "https://ror.org/00kw1sm04" + }, + { + "label": "European Space Operations Centre", + "type": "Child", + "id": "https://ror.org/0541jr710" + }, + { + "label": "European Space Research Institute", + "type": "Child", + "id": "https://ror.org/05vt9rv16" + }, + { + "label": "European Space Research and Technology Centre", + "type": "Child", + "id": "https://ror.org/03h3jqn23" + }, + { + "label": "Guiana Space Centre", + "type": "Child", + "id": "https://ror.org/05h5a7d89" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.esa.int/ESA" + ], + "aliases": [], + "acronyms": [ + "ASE", + "ESA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_Space_Agency", + "labels": [ + { + "label": "Agence Spatiale Européenne", + "iso639": "fr" + }, + { + "label": "Agència Espacial Europea", + "iso639": "ca" + }, + { + "label": "Europako Espazio Agentzia", + "iso639": "ca" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100000844" + ], + "preferred": null + }, + "GRID": { + "all": "grid.410379.8", + "preferred": "grid.410379.8" + }, + "ISNI": { + "all": [ + "0000 0004 0623 6946" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q42262" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03wttga88.json b/v1.52/v1/03wttga88.json new file mode 100644 index 000000000..28c7d57a1 --- /dev/null +++ b/v1.52/v1/03wttga88.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03wttga88", + "name": "Institut d'Histoire du Droit", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umontpellier.fr/en/recherche/unites-de-recherche/pole-sciences-sociales/institut-dhistoire-du-droit" + ], + "aliases": [ + "Institut d'Histoire du Droit de Montpellier", + "Institute of Legal History" + ], + "acronyms": [ + "IHD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782171" + ], + "preferred": "Q51782171" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03xjwb503.json b/v1.52/v1/03xjwb503.json new file mode 100644 index 000000000..86eebf61e --- /dev/null +++ b/v1.52/v1/03xjwb503.json @@ -0,0 +1,556 @@ +{ + "id": "https://ror.org/03xjwb503", + "name": "Université Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Child", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "type": "Child", + "id": "https://ror.org/05mfwtg94" + }, + { + "label": "CentraleSupélec", + "type": "Child", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Centre de Nanosciences et de Nanotechnologies", + "type": "Child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Informatique, Biologie Intégrative et Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/01aqxgr98" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "Child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Institut des Cellules Souches pour le Traitement et l'Étude des Maladies Monogéniques", + "type": "Child", + "id": "https://ror.org/04g9rt435" + }, + { + "label": "Institut d’Optique Graduate School", + "type": "Child", + "id": "https://ror.org/00d0rke27" + }, + { + "label": "Laboratoire Génie Industriel", + "type": "Child", + "id": "https://ror.org/0455wwj08" + }, + { + "label": "Laboratoire de Physique des 2 Infinis Irène Joliot-Curie", + "type": "Child", + "id": "https://ror.org/03gc1p724" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "Child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratoire de Photonique Quantique et Moléculaire", + "type": "Child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Interactions, Dynamiques et Lasers", + "type": "Child", + "id": "https://ror.org/04dy97z61" + }, + { + "label": "CEA Paris-Saclay - Etablissement de Saclay", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Université d'Évry Val-d'Essonne", + "type": "Child", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "Child", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "École Nationale de la Statistique et de l'Administration Économique", + "type": "Child", + "id": "https://ror.org/01fz7mn40" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "Child", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "Child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "Child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "SADAPT Science Action Développement - Activités Produits Territoires", + "type": "Child", + "id": "https://ror.org/01cmdgj85" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "Child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "Child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "Child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "Child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "Child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "Child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "Child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "Child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "Child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "Child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "Child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "Child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "Child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "Centre de Recherche en Design", + "type": "Child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "Child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "Child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "Child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "Child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "Child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "Child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "type": "Child", + "id": "https://ror.org/05r0mw364" + }, + { + "label": "Centre d’histoire culturelle des sociétés contemporaines", + "type": "Child", + "id": "https://ror.org/0087n5v55" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "Child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "type": "Child", + "id": "https://ror.org/023bv6t84" + }, + { + "label": "Institut de recherches arctiques Jean Malaurie", + "type": "Child", + "id": "https://ror.org/008hxwy89" + }, + { + "label": "Laboratoire Anthropologie, Archéologie, Biologie", + "type": "Child", + "id": "https://ror.org/023b2c435" + }, + { + "label": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "type": "Child", + "id": "https://ror.org/01jdptv64" + }, + { + "label": "Maison de la Simulation", + "type": "Child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "Child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "Child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "Child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "Child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Intégrité du génome, ARN et cancer", + "type": "Child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "Child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "Child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "Child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "Child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "Child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "Child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "Child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "Child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut de Biologie Intégrative de la Cellule", + "type": "Child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "Child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "Child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Complexité, Innovation et Activités Motrices et Sportives", + "type": "Child", + "id": "https://ror.org/00k3ph542" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "Child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "Child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "Child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratoire de Physique Théorique et Modèles Statistiques", + "type": "Child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "Child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "Child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "Child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "Child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "Child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "Child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "Child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "Child", + "id": "https://ror.org/035gq6r08" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.universite-paris-saclay.fr/fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Paris-Saclay", + "labels": [ + { + "label": "Paris-Saclayko Unibertsitatea", + "iso639": "eu" + }, + { + "label": "Universitat París-Saclay", + "iso639": "ca" + }, + { + "label": "University of Paris-Saclay", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007241" + ], + "preferred": null + }, + "GRID": { + "all": "grid.460789.4", + "preferred": "grid.460789.4" + }, + "ISNI": { + "all": [ + "0000 0004 4910 6535" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q109409389" + ], + "preferred": "Q109409389" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03xrvbe74.json b/v1.52/v1/03xrvbe74.json new file mode 100644 index 000000000..2bd0fa03c --- /dev/null +++ b/v1.52/v1/03xrvbe74.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03xrvbe74", + "name": "DAPHNE4NFDI", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 49.00937, + "lng": 8.40444, + "state": null, + "state_code": null, + "city": "Karlsruhe", + "geonames_city": { + "id": 2892794, + "city": "Karlsruhe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.daphne4nfdi.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "DAten aus PHoton- und Neutronen Experimenten", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q108542327" + ], + "preferred": "Q108542327" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03xx09h51.json b/v1.52/v1/03xx09h51.json new file mode 100644 index 000000000..212d4fe2f --- /dev/null +++ b/v1.52/v1/03xx09h51.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03xx09h51", + "name": "Ministry of Commerce, Industry and Cooperatives", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 1.3278, + "lng": 172.97696, + "state": null, + "state_code": null, + "city": "Tarawa", + "geonames_city": { + "id": 2110257, + "city": "Tarawa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mcic.gov.ki" + ], + "aliases": [ + "Ministry of Commerce, Industry and Cooperatives of Kiribati" + ], + "acronyms": [ + "MCIC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Kiribati", + "country_code": "KI" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q97955401" + ], + "preferred": "Q97955401" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03y03ds95.json b/v1.52/v1/03y03ds95.json new file mode 100644 index 000000000..c9e6c00a7 --- /dev/null +++ b/v1.52/v1/03y03ds95.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/03y03ds95", + "name": "Cool Roof Rating Council", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.52345, + "lng": -122.67621, + "state": null, + "state_code": null, + "city": "Portland", + "geonames_city": { + "id": 5746545, + "city": "Portland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://coolroofs.org" + ], + "aliases": [], + "acronyms": [ + "CRRC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123185632" + ], + "preferred": "Q123185632" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03yacj906.json b/v1.52/v1/03yacj906.json new file mode 100644 index 000000000..72f0c75b6 --- /dev/null +++ b/v1.52/v1/03yacj906.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/03yacj906", + "name": "Indian Institute of Technology Jodhpur", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 26.26841, + "lng": 73.00594, + "state": null, + "state_code": null, + "city": "Jodhpur", + "geonames_city": { + "id": 1268865, + "city": "Jodhpur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iitj.ac.in" + ], + "aliases": [ + "IIT Jodhpur", + "भारतीय प्रौद्योगिकी संस्थान राजस्थान" + ], + "acronyms": [ + "IITJ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Indian_Institute_of_Technology_Jodhpur", + "labels": [ + { + "label": "भारतीय प्रौद्योगिकी संस्थान, जोधपुर", + "iso639": "hi" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "FundRef": { + "all": [ + "100019497" + ], + "preferred": "100019497" + }, + "GRID": { + "all": "grid.462385.e", + "preferred": "grid.462385.e" + }, + "ISNI": { + "all": [ + "0000 0004 1775 4538" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1814816" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03yj89h83.json b/v1.52/v1/03yj89h83.json new file mode 100644 index 000000000..10b324d8d --- /dev/null +++ b/v1.52/v1/03yj89h83.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/03yj89h83", + "name": "University of Oulu", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Oulu University Hospital", + "type": "Related", + "id": "https://ror.org/045ney286" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 65.01236, + "lng": 25.46816, + "state": null, + "state_code": null, + "city": "Oulu", + "geonames_city": { + "id": 643492, + "city": "Oulu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.oulu.fi/english/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Oulu", + "labels": [ + { + "label": "Oulun yliopisto", + "iso639": "fi" + } + ], + "country": { + "country_name": "Finland", + "country_code": "FI" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006196", + "501100006432", + "501100005734", + "501100008488", + "501100018871", + "501100012682" + ], + "preferred": "501100006196" + }, + "GRID": { + "all": "grid.10858.34", + "preferred": "grid.10858.34" + }, + "ISNI": { + "all": [ + "0000 0001 0941 4873" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1357517" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03ym4q031.json b/v1.52/v1/03ym4q031.json new file mode 100644 index 000000000..02a054498 --- /dev/null +++ b/v1.52/v1/03ym4q031.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03ym4q031", + "name": "MSD Life Science Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.msd-life-science-foundation.or.jp" + ], + "aliases": [ + "Banyu Life Science Foundation International", + "MSD生命科学財団" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "公益財団法人MSD生命科学財団", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007716" + ], + "preferred": null + }, + "GRID": { + "all": "grid.481393.4", + "preferred": "grid.481393.4" + }, + "ISNI": { + "all": [ + "0000 0004 7690 3310" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30273197" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03z2x5890.json b/v1.52/v1/03z2x5890.json new file mode 100644 index 000000000..435c1809c --- /dev/null +++ b/v1.52/v1/03z2x5890.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03z2x5890", + "name": "CNIB Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1918, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.70643, + "lng": -79.39864, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cnib.ca" + ], + "aliases": [], + "acronyms": [ + "CNIB", + "INCA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CNIB", + "labels": [ + { + "label": "Canadian National Institute for the Blind", + "iso639": "en" + }, + { + "label": "Fondation INCA", + "iso639": "fr" + }, + { + "label": "Institut National Canadien des Aveugles", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "100013501", + "100013933" + ], + "preferred": "100013933" + }, + "GRID": { + "all": "grid.427573.0", + "preferred": "grid.427573.0" + }, + "ISNI": { + "all": [ + "0000 0001 0218 7030" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2906450" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03z942k20.json b/v1.52/v1/03z942k20.json new file mode 100644 index 000000000..08723d97f --- /dev/null +++ b/v1.52/v1/03z942k20.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/03z942k20", + "name": "Department of Education", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Therapeutic Innovation Australia", + "type": "Child", + "id": "https://ror.org/01rde0531" + }, + { + "label": "Office for Learning and Teaching", + "type": "Child", + "id": "https://ror.org/000dfsq72" + } + ], + "addresses": [ + { + "lat": -35.28346, + "lng": 149.12807, + "state": null, + "state_code": null, + "city": "Canberra", + "geonames_city": { + "id": 2172517, + "city": "Canberra", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.education.gov.au" + ], + "aliases": [ + "Australian Department of Education", + "Department of Education, Australian Government" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Education_%28Australia%29", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003521" + ], + "preferred": "501100003521" + }, + "Wikidata": { + "all": [ + "Q45134155" + ], + "preferred": "Q45134155" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/03zbydc22.json b/v1.52/v1/03zbydc22.json new file mode 100644 index 000000000..e35588252 --- /dev/null +++ b/v1.52/v1/03zbydc22.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03zbydc22", + "name": "North Carolina School of Science and Mathematics", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of North Carolina System", + "type": "Parent", + "id": "https://ror.org/0566a8c54" + } + ], + "addresses": [ + { + "lat": 35.99403, + "lng": -78.89862, + "state": null, + "state_code": null, + "city": "Durham", + "geonames_city": { + "id": 4464368, + "city": "Durham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ncssm.edu/" + ], + "aliases": [], + "acronyms": [ + "NCSSM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/North_Carolina_School_of_Science_and_Mathematics", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.422778.c", + "preferred": "grid.422778.c" + }, + "ISNI": { + "all": [ + "0000 0001 0021 6803" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7054585" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0402pty94.json b/v1.52/v1/0402pty94.json new file mode 100644 index 000000000..ec26b2805 --- /dev/null +++ b/v1.52/v1/0402pty94.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0402pty94", + "name": "University of Chemical Technology and Metallurgy", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.69751, + "lng": 23.32415, + "state": null, + "state_code": null, + "city": "Sofia", + "geonames_city": { + "id": 727011, + "city": "Sofia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uctm.edu" + ], + "aliases": [], + "acronyms": [ + "UCTM", + "ХТМУ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Химикотехнологичен и металургичен университет", + "iso639": "bg" + } + ], + "country": { + "country_name": "Bulgaria", + "country_code": "BG" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010597" + ], + "preferred": "501100010597" + }, + "GRID": { + "all": "grid.8905.4", + "preferred": "grid.8905.4" + }, + "ISNI": { + "all": [ + "0000 0001 1015 4247" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/040jq3y94.json b/v1.52/v1/040jq3y94.json new file mode 100644 index 000000000..95a8b7612 --- /dev/null +++ b/v1.52/v1/040jq3y94.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/040jq3y94", + "name": "Scientific Research Institute of State Building and Local Government of the NALS of Ukraine", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Academy of Legal Sciences of Ukraine", + "type": "Parent", + "id": "https://ror.org/02wnejx52" + } + ], + "addresses": [ + { + "lat": 49.98081, + "lng": 36.25272, + "state": null, + "state_code": null, + "city": "Kharkiv", + "geonames_city": { + "id": 706483, + "city": "Kharkiv", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dbms.institute" + ], + "aliases": [ + "Scientific Research Institute of State Building and Local Government of the National Academy of Law Sciences of Ukraine", + "НДІ ДБМС НАПрНУ", + "Науково-дослідний інститут державного будівництва та місцевого самоврядування НАПрН України" + ], + "acronyms": [ + "SRI SB&LG" + ], + "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%B4%D0%B5%D1%80%D0%B6%D0%B0%D0%B2%D0%BD%D0%BE%D0%B3%D0%BE_%D0%B1%D1%83%D0%B4%D1%96%D0%B2%D0%BD%D0%B8%D1%86%D1%82%D0%B2%D0%B0_%D1%82%D0%B0_%D0%BC%D1%96%D1%81%D1%86%D0%B5%D0%B2%D0%BE%D0%B3%D0%BE_%D1%81%D0%B0%D0%BC%D0%BE%D0%B2%D1%80%D1%8F%D0%B4%D1%83%D0%B2%D0%B0%D0%BD%D0%BD%D1%8F", + "labels": [ + { + "label": "Науково-дослідний інститут державного будівництва та місцевого самоврядування Національної академії правових наук України", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/04161ta68.json b/v1.52/v1/04161ta68.json new file mode 100644 index 000000000..cf0e22419 --- /dev/null +++ b/v1.52/v1/04161ta68.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04161ta68", + "name": "University \"St. Kliment Ohridski\" - Bitola", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.03143, + "lng": 21.33474, + "state": null, + "state_code": null, + "city": "Bitola", + "geonames_city": { + "id": 792578, + "city": "Bitola", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uklo.edu.mk" + ], + "aliases": [ + "University St Kliment Ohridski Bitola", + "University St. Clement of Ohrid", + "University St. Kliment Ohridski in Bitola", + "University in Bitola", + "Универзитет во Битола" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/St._Clement_of_Ohrid_University_of_Bitola", + "labels": [ + { + "label": "Универзитет Св. „Климент Охридски“ Битола", + "iso639": "mk" + } + ], + "country": { + "country_name": "North Macedonia", + "country_code": "MK" + }, + "external_ids": { + "GRID": { + "all": "grid.428429.1", + "preferred": "grid.428429.1" + }, + "Wikidata": { + "all": [ + "Q2094960" + ], + "preferred": "Q2094960" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/041brh707.json b/v1.52/v1/041brh707.json new file mode 100644 index 000000000..3c94193fe --- /dev/null +++ b/v1.52/v1/041brh707.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/041brh707", + "name": "New Zealand Equine Research Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -40.35636, + "lng": 175.61113, + "state": null, + "state_code": null, + "city": "Palmerston North", + "geonames_city": { + "id": 2185018, + "city": "Palmerston North", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://nzerf.org.nz" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "New Zealand", + "country_code": "NZ" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001524" + ], + "preferred": null + }, + "GRID": { + "all": "grid.480927.0", + "preferred": "grid.480927.0" + }, + "ISNI": { + "all": [ + "0000 0004 5905 5129" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0423jsj19.json b/v1.52/v1/0423jsj19.json new file mode 100644 index 000000000..6f114f1c7 --- /dev/null +++ b/v1.52/v1/0423jsj19.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/0423jsj19", + "name": "HEC Paris", + "email_address": null, + "ip_addresses": [], + "established": 1881, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Groupement de Recherche et d'Études en Gestion d’HEC", + "type": "Child", + "id": "https://ror.org/01y766z47" + }, + { + "label": "CEA Paris-Saclay - Etablissement de Saclay", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "HEC Paris in Qatar", + "type": "Child", + "id": "https://ror.org/03ctqg407" + }, + { + "label": "Fondation HEC", + "type": "Child", + "id": "https://ror.org/055jvqb21" + } + ], + "addresses": [ + { + "lat": 48.75909, + "lng": 2.16966, + "state": null, + "state_code": null, + "city": "Jouy-en-Josas", + "geonames_city": { + "id": 3012165, + "city": "Jouy-en-Josas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hec.edu" + ], + "aliases": [ + "Hautes Études Commerciales de Paris", + "École des Hautes Études Commerciales de Paris" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/HEC_Paris", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.434184.e", + "preferred": "grid.434184.e" + }, + "ISNI": { + "all": [ + "0000 0004 0641 8416" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273535" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0428ctr80.json b/v1.52/v1/0428ctr80.json new file mode 100644 index 000000000..000ad422b --- /dev/null +++ b/v1.52/v1/0428ctr80.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/0428ctr80", + "name": "Institute for Neurosciences of Montpellier", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://inmfrance.com" + ], + "aliases": [], + "acronyms": [ + "INM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut des neurosciences de Montpellier", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.464046.4", + "preferred": "grid.464046.4" + }, + "ISNI": { + "all": [ + "0000 0004 0450 3123" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/042fmc481.json b/v1.52/v1/042fmc481.json new file mode 100644 index 000000000..927fafa6e --- /dev/null +++ b/v1.52/v1/042fmc481.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/042fmc481", + "name": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Jean Monnet", + "type": "Parent", + "id": "https://ror.org/04yznqr36" + }, + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "École de management de Lyon", + "type": "Parent", + "id": "https://ror.org/009gmrj52" + } + ], + "addresses": [ + { + "lat": 45.77437, + "lng": 4.77758, + "state": null, + "state_code": null, + "city": "Écully", + "geonames_city": { + "id": 3020392, + "city": "Écully", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gate.cnrs.fr" + ], + "aliases": [ + "GATE Lyon Saint-Étienne" + ], + "acronyms": [ + "GATE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462833.8", + "preferred": "grid.462833.8" + }, + "ISNI": { + "all": [ + "0000 0001 2323 4895" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/042gs1a72.json b/v1.52/v1/042gs1a72.json new file mode 100644 index 000000000..3c3d05d5a --- /dev/null +++ b/v1.52/v1/042gs1a72.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/042gs1a72", + "name": "Weston Park Cancer Centre", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Sheffield Teaching Hospitals NHS Foundation Trust", + "type": "Parent", + "id": "https://ror.org/018hjpz25" + }, + { + "label": "University of Sheffield", + "type": "Related", + "id": "https://ror.org/05krs5044" + } + ], + "addresses": [ + { + "lat": 53.38297, + "lng": -1.4659, + "state": null, + "state_code": null, + "city": "Sheffield", + "geonames_city": { + "id": 2638077, + "city": "Sheffield", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.westonparkcancercentre.nhs.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Weston_Park_Hospital", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022665" + ], + "preferred": "501100022665" + }, + "GRID": { + "all": "grid.417079.c", + "preferred": "grid.417079.c" + }, + "ISNI": { + "all": [ + "0000 0004 0391 9207" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7989466" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/042sjcz88.json b/v1.52/v1/042sjcz88.json new file mode 100644 index 000000000..34e91f5f2 --- /dev/null +++ b/v1.52/v1/042sjcz88.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/042sjcz88", + "name": "NIHR Surgical Reconstruction and Microbiology Research Centre", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "Parent", + "id": "https://ror.org/0187kwz08" + } + ], + "addresses": [ + { + "lat": 52.48142, + "lng": -1.89983, + "state": null, + "state_code": null, + "city": "Birmingham", + "geonames_city": { + "id": 2655603, + "city": "Birmingham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.srmrc.nihr.ac.uk/" + ], + "aliases": [], + "acronyms": [ + "SRMRC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100014236" + ], + "preferred": "501100014236" + }, + "GRID": { + "all": "grid.499434.7", + "preferred": "grid.499434.7" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/042tdr378.json b/v1.52/v1/042tdr378.json new file mode 100644 index 000000000..d29b2f1e1 --- /dev/null +++ b/v1.52/v1/042tdr378.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/042tdr378", + "name": "Southern Methodist University", + "email_address": null, + "ip_addresses": [], + "established": 1911, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.78306, + "lng": -96.80667, + "state": null, + "state_code": null, + "city": "Dallas", + "geonames_city": { + "id": 4684888, + "city": "Dallas", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.smu.edu/" + ], + "aliases": [], + "acronyms": [ + "SMU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Southern_Methodist_University", + "labels": [ + { + "label": "Universidad Metodista del Sur", + "iso639": "es" + }, + { + "label": "Université méthodiste du sud", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100005605", + "100018258" + ], + "preferred": "100018258" + }, + "GRID": { + "all": "grid.263864.d", + "preferred": "grid.263864.d" + }, + "ISNI": { + "all": [ + "0000 0004 1936 7929" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1536258" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0431hh004.json b/v1.52/v1/0431hh004.json new file mode 100644 index 000000000..220a648e2 --- /dev/null +++ b/v1.52/v1/0431hh004.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0431hh004", + "name": "Institut d'Électronique et des Systèmes", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CNRS Ingénierie", + "type": "Parent", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ies.umontpellier.fr" + ], + "aliases": [ + "Institut d’Électronique du Sud" + ], + "acronyms": [ + "IES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461998.b", + "preferred": "grid.461998.b" + }, + "ISNI": { + "all": [ + "0000 0004 0390 3782" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/043w3h917.json b/v1.52/v1/043w3h917.json new file mode 100644 index 000000000..173493263 --- /dev/null +++ b/v1.52/v1/043w3h917.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/043w3h917", + "name": "Institution of Mechanical Engineers", + "email_address": null, + "ip_addresses": [], + "established": 1847, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.imeche.org/" + ], + "aliases": [ + "IMechE" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institution_of_Mechanical_Engineers", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012073" + ], + "preferred": "100012073" + }, + "GRID": { + "all": "grid.493394.0", + "preferred": "grid.493394.0" + }, + "ISNI": { + "all": [ + "0000 0001 2173 5258" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q15051986" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/043wmc583.json b/v1.52/v1/043wmc583.json new file mode 100644 index 000000000..b6d037538 --- /dev/null +++ b/v1.52/v1/043wmc583.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/043wmc583", + "name": "Institut de Génomique Fonctionnelle", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Montpellier GenomiX", + "type": "Child", + "id": "https://ror.org/00ts9pr54" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.igf.cnrs.fr" + ], + "aliases": [ + "Institute for Functional Genomics" + ], + "acronyms": [ + "IGF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Functional Genomics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461890.2", + "preferred": "grid.461890.2" + }, + "ISNI": { + "all": [ + "0000 0004 0383 2080" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261344" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/044e2ja82.json b/v1.52/v1/044e2ja82.json new file mode 100644 index 000000000..8dc9789d9 --- /dev/null +++ b/v1.52/v1/044e2ja82.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/044e2ja82", + "name": "Scotland's Rural College", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Scottish Confederation of University and Research Libraries", + "type": "Related", + "id": "https://ror.org/03hkzcg46" + } + ], + "addresses": [ + { + "lat": 55.95206, + "lng": -3.19648, + "state": null, + "state_code": null, + "city": "Edinburgh", + "geonames_city": { + "id": 2650225, + "city": "Edinburgh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sruc.ac.uk/" + ], + "aliases": [], + "acronyms": [ + "SRUC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Scotland's_Rural_College", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100016137" + ], + "preferred": "501100016137" + }, + "GRID": { + "all": "grid.426884.4", + "preferred": "grid.426884.4" + }, + "ISNI": { + "all": [ + "0000 0001 0170 6644" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7435613" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/044jxhp58.json b/v1.52/v1/044jxhp58.json new file mode 100644 index 000000000..a2cdd0f52 --- /dev/null +++ b/v1.52/v1/044jxhp58.json @@ -0,0 +1,157 @@ +{ + "id": "https://ror.org/044jxhp58", + "name": "Ifremer", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire des Sciences de l'Environnement Marin", + "type": "Child", + "id": "https://ror.org/05h929866" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Marine Biodiversity Exploitation and Conservation", + "type": "Child", + "id": "https://ror.org/049dk3691" + }, + { + "label": "Flotte Océanographique Française", + "type": "Child", + "id": "https://ror.org/031t90335" + }, + { + "label": "Écologie Marine Tropicale des Océans Pacifique et Indien", + "type": "Child", + "id": "https://ror.org/05kxt4539" + }, + { + "label": "Laboratoire écologie, évolution, interactions des systèmes amazoniens", + "type": "Child", + "id": "https://ror.org/00gj7r351" + }, + { + "label": "AMURE - Centre de droit et d'économie de la mer", + "type": "Child", + "id": "https://ror.org/00ss0a232" + }, + { + "label": "Geo-Ocean", + "type": "Child", + "id": "https://ror.org/007dbrz84" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Ecosystèmes Insulaires Océaniens", + "type": "Child", + "id": "https://ror.org/001j26r80" + } + ], + "addresses": [ + { + "lat": 48.39029, + "lng": -4.48628, + "state": null, + "state_code": null, + "city": "Brest", + "geonames_city": { + "id": 3030300, + "city": "Brest", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ifremer.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/IFREMER", + "labels": [ + { + "label": "French Research Institute for Exploitation of the Sea", + "iso639": "en" + }, + { + "label": "Institut Français de Recherche pour l'Exploitation de la Mer", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100009111" + ], + "preferred": null + }, + "GRID": { + "all": "grid.4825.b", + "preferred": "grid.4825.b" + }, + "ISNI": { + "all": [ + "0000 0004 0641 9240" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1657069" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/044jxv425.json b/v1.52/v1/044jxv425.json new file mode 100644 index 000000000..b9c0ba486 --- /dev/null +++ b/v1.52/v1/044jxv425.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/044jxv425", + "name": "Bacterial Virulence and Chronic Infections", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.83665, + "lng": 4.35788, + "state": null, + "state_code": null, + "city": "Nîmes", + "geonames_city": { + "id": 2990363, + "city": "Nîmes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://u1047.edu.umontpellier.fr" + ], + "aliases": [ + "Bacterial virulence and infectious desease", + "Virulence Bacterienne et Infections Chroniques", + "Virulence bactérienne et maladies infectieuses" + ], + "acronyms": [ + "VBIC", + "VBMI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Virulence Bactérienne et Infections Chroniques", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51781209" + ], + "preferred": "Q51781209" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/044nptt90.json b/v1.52/v1/044nptt90.json new file mode 100644 index 000000000..565756c08 --- /dev/null +++ b/v1.52/v1/044nptt90.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/044nptt90", + "name": "King's College Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1840, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "King's College Hospital NHS Foundation Trust", + "type": "Parent", + "id": "https://ror.org/01n0k5m85" + }, + { + "label": "Harris Birthright Research Centre for Fetal Medicine", + "type": "Related", + "id": "https://ror.org/03kwycy34" + }, + { + "label": "King's College London", + "type": "Related", + "id": "https://ror.org/0220mzb33" + }, + { + "label": "King's Fertility", + "type": "Child", + "id": "https://ror.org/04xsrsp28" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.kch.nhs.uk/patientsvisitors/getting-to-kings" + ], + "aliases": [ + "King's" + ], + "acronyms": [ + "KCH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/King%27s_College_Hospital", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "all": "grid.46699.34", + "preferred": "grid.46699.34" + }, + "ISNI": { + "all": [ + "0000 0004 0391 9020" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1742181" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/044s61914.json b/v1.52/v1/044s61914.json new file mode 100644 index 000000000..29c5e7b1e --- /dev/null +++ b/v1.52/v1/044s61914.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/044s61914", + "name": "Centre Hospitalier Universitaire de Liège", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Liège", + "type": "Related", + "id": "https://ror.org/00afp2z80" + } + ], + "addresses": [ + { + "lat": 50.63373, + "lng": 5.56749, + "state": null, + "state_code": null, + "city": "Liège", + "geonames_city": { + "id": 2792413, + "city": "Liège", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.chuliege.be" + ], + "aliases": [ + "CHU de Liège" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "GRID": { + "all": "grid.411374.4", + "preferred": "grid.411374.4" + }, + "ISNI": { + "all": [ + "0000 0000 8607 6858" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/045495t75.json b/v1.52/v1/045495t75.json new file mode 100644 index 000000000..84c795406 --- /dev/null +++ b/v1.52/v1/045495t75.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/045495t75", + "name": "Ifo Institute for Economic Research", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "Parent", + "id": "https://ror.org/01n6r0e97" + }, + { + "label": "Ludwig-Maximilians-Universität München", + "type": "Related", + "id": "https://ror.org/05591te55" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ifo.de/en" + ], + "aliases": [ + "Ifo Institute – Leibniz Institute for Economic Research" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ifo_Institute_for_Economic_Research", + "labels": [ + { + "label": "ifo Institut für Wirtschaftsforschung", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.469877.3", + "preferred": "grid.469877.3" + }, + "ISNI": { + "all": [ + "0000 0004 0397 0846" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q314073" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/045h9g769.json b/v1.52/v1/045h9g769.json new file mode 100644 index 000000000..42fc29344 --- /dev/null +++ b/v1.52/v1/045h9g769.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/045h9g769", + "name": "Ministry of Trade, Co-operatives, Small and Medium Enterprises", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Department of National Trade Measurement and Standards", + "type": "Child", + "id": "https://ror.org/03d087w61" + } + ], + "addresses": [ + { + "lat": -18.13683, + "lng": 178.42531, + "state": null, + "state_code": null, + "city": "Suva", + "geonames_city": { + "id": 2198148, + "city": "Suva", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mcttt.gov.fj" + ], + "aliases": [ + "Ministry of Trade, Co-operatives, Small and Medium Enterprises of Fiji" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Fiji", + "country_code": "FJ" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/045n3eg64.json b/v1.52/v1/045n3eg64.json new file mode 100644 index 000000000..44130ea40 --- /dev/null +++ b/v1.52/v1/045n3eg64.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/045n3eg64", + "name": "Equipe de Droit Pénal et de sciences Forensiques de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://edpfm.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "EDPFM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/045qsfj95.json b/v1.52/v1/045qsfj95.json new file mode 100644 index 000000000..40f49328e --- /dev/null +++ b/v1.52/v1/045qsfj95.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/045qsfj95", + "name": "Institute of Development Studies", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 26.91962, + "lng": 75.78781, + "state": null, + "state_code": null, + "city": "Jaipur", + "geonames_city": { + "id": 1269515, + "city": "Jaipur", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.idsj.org" + ], + "aliases": [ + "Institute of Development Studies, Jaipur" + ], + "acronyms": [ + "IDS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "विकास अध्ययन संस्थान", + "iso639": "hi" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.464844.e", + "preferred": "grid.464844.e" + }, + "ISNI": { + "all": [ + "0000 0004 0504 5486" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/045r56524.json b/v1.52/v1/045r56524.json new file mode 100644 index 000000000..cb9b79723 --- /dev/null +++ b/v1.52/v1/045r56524.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/045r56524", + "name": "Laboratoire Dynamiques Sociales et Recomposition des Espaces", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Paris 1 Panthéon-Sorbonne", + "type": "Parent", + "id": "https://ror.org/002t25c44" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "Université Paris Nanterre", + "type": "Parent", + "id": "https://ror.org/013bkhk48" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + } + ], + "addresses": [ + { + "lat": 48.89198, + "lng": 2.20675, + "state": null, + "state_code": null, + "city": "Nanterre", + "geonames_city": { + "id": 2990970, + "city": "Nanterre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ladyss.com/?lang=fr" + ], + "aliases": [], + "acronyms": [ + "LADYSS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463957.a", + "preferred": "grid.463957.a" + }, + "ISNI": { + "all": [ + "0000 0001 0494 5229" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262332" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/045y2nc52.json b/v1.52/v1/045y2nc52.json new file mode 100644 index 000000000..ff2d996f1 --- /dev/null +++ b/v1.52/v1/045y2nc52.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/045y2nc52", + "name": "Centro de Información de Medicamentos de la Universidad Nacional", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Universidad Nacional de Colombia", + "type": "Parent", + "id": "https://ror.org/059yx9a68" + } + ], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://sites.google.com/unal.edu.co/cimun" + ], + "aliases": [], + "acronyms": [ + "CIMUN", + "CIMUN-COL" + ], + "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.52/v1/0465bzv04.json b/v1.52/v1/0465bzv04.json new file mode 100644 index 000000000..72055ad1f --- /dev/null +++ b/v1.52/v1/0465bzv04.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/0465bzv04", + "name": "Tharaka University", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -0.12467, + "lng": 37.9007, + "state": null, + "state_code": null, + "city": "Marimanti", + "geonames_city": { + "id": 11981627, + "city": "Marimanti", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://tharaka.ac.ke" + ], + "aliases": [], + "acronyms": [ + "TUN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Chuo Kikuu cha Tharaka", + "iso639": "sw" + } + ], + "country": { + "country_name": "Kenya", + "country_code": "KE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q129255622" + ], + "preferred": "Q129255622" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0468fwt03.json b/v1.52/v1/0468fwt03.json new file mode 100644 index 000000000..a95a0e0d2 --- /dev/null +++ b/v1.52/v1/0468fwt03.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0468fwt03", + "name": "Clinton Community College", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 44.69949, + "lng": -73.45291, + "state": null, + "state_code": null, + "city": "Plattsburgh", + "geonames_city": { + "id": 5131692, + "city": "Plattsburgh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.clinton.edu" + ], + "aliases": [ + "SUNY Clinton Community College", + "State University of New York Clinton Community College" + ], + "acronyms": [ + "CCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Clinton_Community_College_(New_York)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.469416.8", + "preferred": "grid.469416.8" + }, + "ISNI": { + "all": [ + "0000 0004 0387 8257" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5134090" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/046b3cj80.json b/v1.52/v1/046b3cj80.json new file mode 100644 index 000000000..46b1e99a3 --- /dev/null +++ b/v1.52/v1/046b3cj80.json @@ -0,0 +1,239 @@ +{ + "id": "https://ror.org/046b3cj80", + "name": "École Pratique des Hautes Études", + "email_address": null, + "ip_addresses": [], + "established": 1868, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Anthropologie et Histoire des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Archéologie et Philologie d’Orient et d’Occident", + "type": "Child", + "id": "https://ror.org/05nsvn336" + }, + { + "label": "Biogéosciences", + "type": "Child", + "id": "https://ror.org/04mzqjs78" + }, + { + "label": "Centre Georg Simmel", + "type": "Child", + "id": "https://ror.org/04qhwn476" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Recherches Insulaires et Observatoire de l'Environnement", + "type": "Child", + "id": "https://ror.org/02tp7mm44" + }, + { + "label": "Groupe Sociétés, Religions, Laïcités", + "type": "Child", + "id": "https://ror.org/01wk35t67" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "Child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Integrated Genetic Approaches in Therapeutic Discovery for Rare Diseases", + "type": "Child", + "id": "https://ror.org/04az3m568" + }, + { + "label": "Laboratoire Cognition, Langues, Langage, Ergonomie", + "type": "Child", + "id": "https://ror.org/029cj5595" + }, + { + "label": "Laboratoire Cognitions Humaine et Artificielle", + "type": "Child", + "id": "https://ror.org/02k8f5n40" + }, + { + "label": "Laboratoire d'Anthropologie Sociale", + "type": "Child", + "id": "https://ror.org/05pm8ec76" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "Child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Chimie Physique et Microbiologie pour l'Environnement", + "type": "Child", + "id": "https://ror.org/03nknpw16" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "Child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Milieux environnementaux, transferts et interactions dans les hydrosystèmes et les sols", + "type": "Child", + "id": "https://ror.org/0229z0679" + }, + { + "label": "Orient & Méditerranée", + "type": "Child", + "id": "https://ror.org/051gvfp41" + }, + { + "label": "Proche-Orient, Caucase : Langues, Archéologie, Cultures", + "type": "Child", + "id": "https://ror.org/030jm0n16" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "Child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "Child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "Neuropsychologie et Imagerie de la Mémoire Humaine", + "type": "Child", + "id": "https://ror.org/04f6tkx67" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "Child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Campus Condorcet", + "type": "Related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ephe.fr/" + ], + "aliases": [], + "acronyms": [ + "EPHE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_pratique_des_hautes_%C3%A9tudes", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.424469.9", + "preferred": "grid.424469.9" + }, + "ISNI": { + "all": [ + "0000 0001 2195 5365" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273631" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/046ee4w71.json b/v1.52/v1/046ee4w71.json new file mode 100644 index 000000000..09645b692 --- /dev/null +++ b/v1.52/v1/046ee4w71.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/046ee4w71", + "name": "Instituto Tecnologico de Delicias", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 28.19013, + "lng": -105.47012, + "state": null, + "state_code": null, + "city": "Delicias", + "geonames_city": { + "id": 4013720, + "city": "Delicias", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.delicias.tecnm.mx" + ], + "aliases": [ + "TecNM Campus Delicias", + "Tecnológico Nacional de México - Delicias", + "Tecnológico Nacional de México Campus Delicias" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/0473rr271.json b/v1.52/v1/0473rr271.json new file mode 100644 index 000000000..764b5b422 --- /dev/null +++ b/v1.52/v1/0473rr271.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/0473rr271", + "name": "Federal Highway Administration", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Turner-Fairbank Highway Research Center", + "type": "Child", + "id": "https://ror.org/04edx5729" + }, + { + "label": "United States Department of Transportation", + "type": "Parent", + "id": "https://ror.org/02xfw2e90" + }, + { + "label": "Bureau of Public Roads", + "type": "Predecessor", + "id": "https://ror.org/039c93x30" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fhwa.dot.gov/" + ], + "aliases": [], + "acronyms": [ + "FHWA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_Highway_Administration", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006285" + ], + "preferred": null + }, + "GRID": { + "all": "grid.483785.5", + "preferred": "grid.483785.5" + }, + "ISNI": { + "all": [ + "0000 0001 1532 7434" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q800112" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/047426m28.json b/v1.52/v1/047426m28.json new file mode 100644 index 000000000..1ec36cb8a --- /dev/null +++ b/v1.52/v1/047426m28.json @@ -0,0 +1,175 @@ +{ + "id": "https://ror.org/047426m28", + "name": "University of Illinois Urbana-Champaign", + "email_address": null, + "ip_addresses": [], + "established": 1867, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Illinois Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/017mjs592" + }, + { + "label": "National Center for Supercomputing Applications", + "type": "Child", + "id": "https://ror.org/03r10zj06" + }, + { + "label": "Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support", + "type": "Child", + "id": "https://ror.org/01v6d0b34" + }, + { + "label": "Chan Zuckerberg Biohub Chicago", + "type": "Child", + "id": "https://ror.org/014nxkk19" + }, + { + "label": "University of Illinois System", + "type": "Parent", + "id": "https://ror.org/05e94g991" + }, + { + "label": "Advanced Digital Sciences Center", + "type": "Related", + "id": "https://ror.org/01xaqx887" + }, + { + "label": "Amita Health", + "type": "Related", + "id": "https://ror.org/02z7tpb72" + }, + { + "label": "Carle Foundation Hospital", + "type": "Related", + "id": "https://ror.org/02nfcgd30" + }, + { + "label": "Jornada Basin Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/05976ta47" + }, + { + "label": "Materials Science in Extreme Environments University Research Alliance", + "type": "Related", + "id": "https://ror.org/04n07f274" + }, + { + "label": "Taylor Geospatial Institute", + "type": "Related", + "id": "https://ror.org/0573j3j10" + } + ], + "addresses": [ + { + "lat": 40.11059, + "lng": -88.20727, + "state": null, + "state_code": null, + "city": "Urbana", + "geonames_city": { + "id": 4914570, + "city": "Urbana", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://illinois.edu/" + ], + "aliases": [ + "University of Illinois" + ], + "acronyms": [ + "UIUC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Illinois_at_Urbana%E2%80%93Champaign", + "labels": [ + { + "label": "Universidad de Illinois en Urbana-Champaign", + "iso639": "es" + }, + { + "label": "Université de l'Illinois à Urbana-Champaign", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100005302", + "100009706", + "100006787", + "100007285", + "100006299", + "100006297", + "100006059", + "100006302", + "100006296", + "100006301", + "100006295", + "100005471", + "100006298", + "100006300" + ], + "preferred": "100005302" + }, + "GRID": { + "all": "grid.35403.31", + "preferred": "grid.35403.31" + }, + "ISNI": { + "all": [ + "0000 0004 1936 9991" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q457281", + "Q4878755" + ], + "preferred": "Q457281" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/047g2xp14.json b/v1.52/v1/047g2xp14.json new file mode 100644 index 000000000..cd735cb62 --- /dev/null +++ b/v1.52/v1/047g2xp14.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/047g2xp14", + "name": "New York State University College of Human Ecology", + "email_address": null, + "ip_addresses": [], + "established": 1925, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cornell University", + "type": "Parent", + "id": "https://ror.org/05bnh6r87" + }, + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.44063, + "lng": -76.49661, + "state": null, + "state_code": null, + "city": "Ithaca", + "geonames_city": { + "id": 5122432, + "city": "Ithaca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.human.cornell.edu/" + ], + "aliases": [ + "Cornell Human Ecology", + "Cornell University College of Human Ecology" + ], + "acronyms": [ + "HumEc" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cornell_University_College_of_Human_Ecology", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.507858.7", + "preferred": "grid.507858.7" + }, + "Wikidata": { + "all": [ + "Q5171563" + ], + "preferred": "Q5171563" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/047q8av65.json b/v1.52/v1/047q8av65.json new file mode 100644 index 000000000..54d37cfd3 --- /dev/null +++ b/v1.52/v1/047q8av65.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/047q8av65", + "name": "Centre de Recherche sur les Expertises, les Arts et les Transitions", + "email_address": null, + "ip_addresses": [], + "established": 2024, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Laboratoire Lorrain de Sciences Sociales", + "type": "Predecessor", + "id": "https://ror.org/01fe8k477" + } + ], + "addresses": [ + { + "lat": 49.11911, + "lng": 6.17269, + "state": null, + "state_code": null, + "city": "Metz", + "geonames_city": { + "id": 2994160, + "city": "Metz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://creat.univ-lorraine.fr" + ], + "aliases": [], + "acronyms": [ + "CREAT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q130280798" + ], + "preferred": "Q130280798" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/047s7ex42.json b/v1.52/v1/047s7ex42.json new file mode 100644 index 000000000..3a77d40a9 --- /dev/null +++ b/v1.52/v1/047s7ex42.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/047s7ex42", + "name": "University of Utah Health Care", + "email_address": null, + "ip_addresses": [], + "established": 1905, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Huntsman Cancer Institute", + "type": "Child", + "id": "https://ror.org/03v7tx966" + }, + { + "label": "South Jordan Health Center", + "type": "Child", + "id": "https://ror.org/01mjp5v83" + }, + { + "label": "University of Utah", + "type": "Related", + "id": "https://ror.org/03r0ha626" + }, + { + "label": "University of Utah Hospital", + "type": "Related", + "id": "https://ror.org/03b436430" + } + ], + "addresses": [ + { + "lat": 40.76078, + "lng": -111.89105, + "state": null, + "state_code": null, + "city": "Salt Lake City", + "geonames_city": { + "id": 5780993, + "city": "Salt Lake City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://healthcare.utah.edu/" + ], + "aliases": [], + "acronyms": [ + "UUHC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100020768" + ], + "preferred": "100020768" + }, + "GRID": { + "all": "grid.412722.0", + "preferred": "grid.412722.0" + }, + "ISNI": { + "all": [ + "0000 0004 0515 3663" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/047sfm294.json b/v1.52/v1/047sfm294.json new file mode 100644 index 000000000..33a973ecc --- /dev/null +++ b/v1.52/v1/047sfm294.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/047sfm294", + "name": "Ministry of Home Affairs", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Badan Strategi Kebijakan Dalam Negeri", + "type": "Child", + "id": "https://ror.org/007ptm460" + } + ], + "addresses": [ + { + "lat": -6.21462, + "lng": 106.84513, + "state": null, + "state_code": null, + "city": "Jakarta", + "geonames_city": { + "id": 1642911, + "city": "Jakarta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.kemendagri.go.id" + ], + "aliases": [ + "Indonesian Ministry of Home Affairs", + "Ministry of Home Affairs of Indonesia" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Home_Affairs_%28Indonesia%29", + "labels": [ + { + "label": "Kementerian Dalam Negeri", + "iso639": "id" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0684 0965" + ], + "preferred": "0000 0001 0684 0965" + }, + "Wikidata": { + "all": [ + "Q6867142" + ], + "preferred": "Q6867142" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/048bmqg23.json b/v1.52/v1/048bmqg23.json new file mode 100644 index 000000000..956031e02 --- /dev/null +++ b/v1.52/v1/048bmqg23.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/048bmqg23", + "name": "Rail Safety and Standards Board (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.rssb.co.uk/" + ], + "aliases": [], + "acronyms": [ + "RSSB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rail_Safety_and_Standards_Board", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100024273" + ], + "preferred": "501100024273" + }, + "GRID": { + "all": "grid.423602.1", + "preferred": "grid.423602.1" + }, + "ISNI": { + "all": [ + "0000 0004 0626 762X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7283908" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/048eqtw54.json b/v1.52/v1/048eqtw54.json new file mode 100644 index 000000000..a72757a61 --- /dev/null +++ b/v1.52/v1/048eqtw54.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/048eqtw54", + "name": "Wales Institute of Social and Economic Research, Data and Methods", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.48, + "lng": -3.18, + "state": null, + "state_code": null, + "city": "Cardiff", + "geonames_city": { + "id": 2653822, + "city": "Cardiff", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://wiserd.ac.uk/" + ], + "aliases": [], + "acronyms": [ + "WISERD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/WISERD", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100019552" + ], + "preferred": "501100019552" + }, + "GRID": { + "all": "grid.493543.c", + "preferred": "grid.493543.c" + }, + "Wikidata": { + "all": [ + "Q7950915" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/048vrgr14.json b/v1.52/v1/048vrgr14.json new file mode 100644 index 000000000..f911f0224 --- /dev/null +++ b/v1.52/v1/048vrgr14.json @@ -0,0 +1,137 @@ +{ + "id": "https://ror.org/048vrgr14", + "name": "Becton Dickinson (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1897, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Becton Dickinson (Canada)", + "type": "Child", + "id": "https://ror.org/031dsww89" + }, + { + "label": "Becton Dickinson (France)", + "type": "Child", + "id": "https://ror.org/016nn9d26" + }, + { + "label": "Becton Dickinson (Germany)", + "type": "Child", + "id": "https://ror.org/02kzqwr97" + }, + { + "label": "Becton Dickinson (India)", + "type": "Child", + "id": "https://ror.org/0339vxy90" + }, + { + "label": "Becton Dickinson (Ireland)", + "type": "Child", + "id": "https://ror.org/02pdacs91" + }, + { + "label": "Becton Dickinson (Netherlands)", + "type": "Child", + "id": "https://ror.org/03qdj6986" + }, + { + "label": "Becton Dickinson (United Kingdom)", + "type": "Child", + "id": "https://ror.org/05dwa3c44" + }, + { + "label": "BD Biosciences (United States)", + "type": "Child", + "id": "https://ror.org/02h9td068" + } + ], + "addresses": [ + { + "lat": 41.01676, + "lng": -74.2057, + "state": null, + "state_code": null, + "city": "Franklin Lakes", + "geonames_city": { + "id": 5098242, + "city": "Franklin Lakes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://bd.com/" + ], + "aliases": [ + "Becton, Dickinson and Company" + ], + "acronyms": [ + "BD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Becton_Dickinson", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100017412" + ], + "preferred": "100017412" + }, + "GRID": { + "all": "grid.418255.f", + "preferred": "grid.418255.f" + }, + "ISNI": { + "all": [ + "0000 0004 0402 3971" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q813780" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0491yz035.json b/v1.52/v1/0491yz035.json new file mode 100644 index 000000000..116a2f09f --- /dev/null +++ b/v1.52/v1/0491yz035.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0491yz035", + "name": "Saha Institute of Nuclear Physics", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 22.56263, + "lng": 88.36304, + "state": null, + "state_code": null, + "city": "Kolkata", + "geonames_city": { + "id": 1275004, + "city": "Kolkata", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.saha.ac.in/web/" + ], + "aliases": [], + "acronyms": [ + "SINP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saha_Institute_of_Nuclear_Physics", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.473481.d", + "preferred": "grid.473481.d" + }, + "ISNI": { + "all": [ + "0000 0001 0661 8707" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3350129" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/049dded83.json b/v1.52/v1/049dded83.json new file mode 100644 index 000000000..24926711d --- /dev/null +++ b/v1.52/v1/049dded83.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/049dded83", + "name": "W. von Borries-Eckendorf GmbH & Co. KG (Germany)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.01246, + "lng": 8.69834, + "state": null, + "state_code": null, + "city": "Leopoldshöhe", + "geonames_city": { + "id": 2878673, + "city": "Leopoldshöhe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.wvb-eckendorf.de" + ], + "aliases": [ + "Pflanzenzucht W. von Borries-Eckendorf GmbH & Co.KG", + "WvB Eckendorf" + ], + "acronyms": [ + "WvB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "W. von Borries-Eckendorf GmbH & Co. KG", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/049dk3691.json b/v1.52/v1/049dk3691.json new file mode 100644 index 000000000..857df4a20 --- /dev/null +++ b/v1.52/v1/049dk3691.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/049dk3691", + "name": "Marine Biodiversity Exploitation and Conservation", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Ifremer", + "type": "Parent", + "id": "https://ror.org/044jxhp58" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.4028, + "lng": 3.69278, + "state": null, + "state_code": null, + "city": "Sète", + "geonames_city": { + "id": 2974733, + "city": "Sète", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://umr-marbec.fr" + ], + "aliases": [], + "acronyms": [ + "MARBEC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503122.7", + "preferred": "grid.503122.7" + }, + "ISNI": { + "all": [ + "0000 0004 0382 8145" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/049v3kt97.json b/v1.52/v1/049v3kt97.json new file mode 100644 index 000000000..0dc7f0a6e --- /dev/null +++ b/v1.52/v1/049v3kt97.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/049v3kt97", + "name": "National Center for Measurement and Calibration Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [ + { + "label": "Saudi Standards, Metrology and Quality Organization", + "type": "Parent", + "id": "https://ror.org/02dj1mv43" + } + ], + "addresses": [ + { + "lat": 24.68773, + "lng": 46.72185, + "state": null, + "state_code": null, + "city": "Riyadh", + "geonames_city": { + "id": 108410, + "city": "Riyadh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.saso.gov.sa/en/sectors/measurement/Pages/about.aspx" + ], + "aliases": [ + "National Measurement and Calibration Center" + ], + "acronyms": [ + "NCMC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Saudi Arabia", + "country_code": "SA" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/04a31ep84.json b/v1.52/v1/04a31ep84.json new file mode 100644 index 000000000..52cd43742 --- /dev/null +++ b/v1.52/v1/04a31ep84.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04a31ep84", + "name": "Society of Swedish Literature in Finland", + "email_address": null, + "ip_addresses": [], + "established": 1885, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 60.16952, + "lng": 24.93545, + "state": null, + "state_code": null, + "city": "Helsinki", + "geonames_city": { + "id": 658225, + "city": "Helsinki", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sls.fi/en" + ], + "aliases": [], + "acronyms": [ + "SLS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Svenska Litteratursällskapet i Finland", + "iso639": "fi" + } + ], + "country": { + "country_name": "Finland", + "country_code": "FI" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007247", + "501100009436" + ], + "preferred": "501100009436" + }, + "GRID": { + "all": "grid.481431.b", + "preferred": "grid.481431.b" + }, + "ISNI": { + "all": [ + "0000 0001 2104 211X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04abg5t05.json b/v1.52/v1/04abg5t05.json new file mode 100644 index 000000000..3185037b1 --- /dev/null +++ b/v1.52/v1/04abg5t05.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/04abg5t05", + "name": "Russian Federal Space Agency", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Central Research Institute for Machine Building", + "type": "Child", + "id": "https://ror.org/05wk90v81" + } + ], + "addresses": [ + { + "lat": 55.75222, + "lng": 37.61556, + "state": null, + "state_code": null, + "city": "Moscow", + "geonames_city": { + "id": 524901, + "city": "Moscow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://en.federalspace.ru/" + ], + "aliases": [ + "Roscosmos" + ], + "acronyms": [ + "FKA", + "RKA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Russian_Federal_Space_Agency", + "labels": [ + { + "label": "Федеральное космическое агентство", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.433831.e", + "preferred": "grid.433831.e" + }, + "ISNI": { + "all": [ + "0000 0001 0614 8522" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q190795" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04achg568.json b/v1.52/v1/04achg568.json new file mode 100644 index 000000000..afd16ccc3 --- /dev/null +++ b/v1.52/v1/04achg568.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/04achg568", + "name": "Royal Asiatic Society", + "email_address": null, + "ip_addresses": [], + "established": 1824, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://royalasiaticsociety.org" + ], + "aliases": [ + "The Royal Asiatic Society", + "The Royal Asiatic Society of Great Britain and Ireland" + ], + "acronyms": [ + "RAS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Royal_Asiatic_Society_of_Great_Britain_and_Ireland", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100014628" + ], + "preferred": "100014628" + }, + "ISNI": { + "all": [ + "0000 0001 2159 9516" + ], + "preferred": "0000 0001 2159 9516" + }, + "Wikidata": { + "all": [ + "Q1417172" + ], + "preferred": "Q1417172" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04ahza989.json b/v1.52/v1/04ahza989.json new file mode 100644 index 000000000..544239bbc --- /dev/null +++ b/v1.52/v1/04ahza989.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/04ahza989", + "name": "CItés, Territoires, Environnement et Sociétés", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Tours", + "type": "Parent", + "id": "https://ror.org/02wwzvj46" + }, + { + "label": "Institut National de Recherches Archéologiques Préventives", + "type": "Parent", + "id": "https://ror.org/04andmq85" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Équipe Monde Arabe Méditerranée", + "type": "Child", + "id": "https://ror.org/008p7mq56" + } + ], + "addresses": [ + { + "lat": 47.39484, + "lng": 0.70398, + "state": null, + "state_code": null, + "city": "Tours", + "geonames_city": { + "id": 2972191, + "city": "Tours", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://citeres.univ-tours.fr/" + ], + "aliases": [], + "acronyms": [ + "CITERES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503168.9", + "preferred": "grid.503168.9" + }, + "ISNI": { + "all": [ + "0000 0001 1898 0762" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q47008408" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04andmq85.json b/v1.52/v1/04andmq85.json new file mode 100644 index 000000000..2abd9acc9 --- /dev/null +++ b/v1.52/v1/04andmq85.json @@ -0,0 +1,133 @@ +{ + "id": "https://ror.org/04andmq85", + "name": "Institut National de Recherches Archéologiques Préventives", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CItés, Territoires, Environnement et Sociétés", + "type": "Child", + "id": "https://ror.org/04ahza989" + }, + { + "label": "Laboratoire Chrono-Environnement", + "type": "Child", + "id": "https://ror.org/028cef883" + }, + { + "label": "Cultures et Environnements. Préhistoire, Antiquité, Moyen Âge", + "type": "Child", + "id": "https://ror.org/04n9van71" + }, + { + "label": "De la Préhistoire à l'Actuel : Culture, Environnement et Anthropologie", + "type": "Child", + "id": "https://ror.org/027mnq498" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "Child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Laboratoire de Géographie Physique", + "type": "Child", + "id": "https://ror.org/054v0s666" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "Child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "Child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Ministère de la Culture", + "type": "Parent", + "id": "https://ror.org/017rnyz40" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "Child", + "id": "https://ror.org/03r0cdk24" + } + ], + "addresses": [ + { + "lat": 49.11911, + "lng": 6.17269, + "state": null, + "state_code": null, + "city": "Metz", + "geonames_city": { + "id": 2994160, + "city": "Metz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.inrap.fr/" + ], + "aliases": [], + "acronyms": [ + "Inrap" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.466734.4", + "preferred": "grid.466734.4" + }, + "ISNI": { + "all": [ + "0000 0001 2159 0925" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04aqtsh50.json b/v1.52/v1/04aqtsh50.json new file mode 100644 index 000000000..a97536ab9 --- /dev/null +++ b/v1.52/v1/04aqtsh50.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/04aqtsh50", + "name": "Centre Clermont-Auvergne-Rhône-Alpes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Génétique, Diversité, Écophysiologie des Céréales", + "type": "Child", + "id": "https://ror.org/04397qy32" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Laboratoire d'Ingénierie pour les Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/01dfzdy43" + } + ], + "addresses": [ + { + "lat": 45.73265, + "lng": 3.06323, + "state": null, + "state_code": null, + "city": "Ceyrat", + "geonames_city": { + "id": 3027746, + "city": "Ceyrat", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.clermont.inra.fr/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418075.f", + "preferred": "grid.418075.f" + }, + "Wikidata": { + "all": [ + "Q30281572" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04b0z7q78.json b/v1.52/v1/04b0z7q78.json new file mode 100644 index 000000000..e7935d91b --- /dev/null +++ b/v1.52/v1/04b0z7q78.json @@ -0,0 +1,730 @@ +{ + "id": "https://ror.org/04b0z7q78", + "name": "Institut des Sciences Humaines et Sociales", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Aménagement, Développement, Environnement, Santé et Sociétés", + "type": "Child", + "id": "https://ror.org/027953924" + }, + { + "label": "Anthropologie et Histoire des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Architecture Urbanisme Société : Savoirs, Enseignement, Recherche", + "type": "Child", + "id": "https://ror.org/0157t2j08" + }, + { + "label": "Archives Henri-Poincaré - Philosophie et Recherches sur les Sciences et les Technologies", + "type": "Child", + "id": "https://ror.org/02fdf4056" + }, + { + "label": "Archéologie des Amériques", + "type": "Child", + "id": "https://ror.org/018sx6595" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Archéologie et Philologie d’Orient et d’Occident", + "type": "Child", + "id": "https://ror.org/05nsvn336" + }, + { + "label": "Archéologies et Sciences de l’Antiquité", + "type": "Child", + "id": "https://ror.org/04wz9m339" + }, + { + "label": "Ausonius Institut de Recherche sur l'Antiquité et le Moyen age", + "type": "Child", + "id": "https://ror.org/05jm22562" + }, + { + "label": "Bases, Corpus, Langage", + "type": "Child", + "id": "https://ror.org/03mmb0d82" + }, + { + "label": "Bureau d'Economie Théorique et Appliquée", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "CItés, Territoires, Environnement et Sociétés", + "type": "Child", + "id": "https://ror.org/04ahza989" + }, + { + "label": "Centre de Recherches Historiques", + "type": "Child", + "id": "https://ror.org/05tfp1c72" + }, + { + "label": "Centre d'études et de recherches internationales de Sciences Po", + "type": "Child", + "id": "https://ror.org/045qk7v62" + }, + { + "label": "Centre de Recherche en Économie et Statistique", + "type": "Child", + "id": "https://ror.org/0449khs19" + }, + { + "label": "Toulouse School of Management Research", + "type": "Child", + "id": "https://ror.org/036yvb369" + }, + { + "label": "Centre de Recherche Médecine, Sciences, Santé, Santé Mentale, Société", + "type": "Child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Centre de recherches sociologiques et politiques de Paris", + "type": "Child", + "id": "https://ror.org/04jb47e97" + }, + { + "label": "Centre de Sociologie des Organisations", + "type": "Child", + "id": "https://ror.org/035mqrn57" + }, + { + "label": "Centre Alexandre Koyré", + "type": "Child", + "id": "https://ror.org/02dqsxz11" + }, + { + "label": "Centre André-Chastel", + "type": "Child", + "id": "https://ror.org/03jqm0b89" + }, + { + "label": "Centre Camille Jullian", + "type": "Child", + "id": "https://ror.org/050sat078" + }, + { + "label": "Centre Georg Simmel", + "type": "Child", + "id": "https://ror.org/04qhwn476" + }, + { + "label": "Centre Lillois d'Etudes et de Recherches Sociologiques et Economiques", + "type": "Child", + "id": "https://ror.org/00mghmd60" + }, + { + "label": "Centre Maurice-Halbwachs", + "type": "Child", + "id": "https://ror.org/01paa1e42" + }, + { + "label": "Centre Nantais de Sociologie", + "type": "Child", + "id": "https://ror.org/04v837171" + }, + { + "label": "Centre Norbert Elias", + "type": "Child", + "id": "https://ror.org/028ycv057" + }, + { + "label": "Centre Paul Albert-Février", + "type": "Child", + "id": "https://ror.org/00wcvf151" + }, + { + "label": "Centre d'Analyse et de Mathématique Sociales", + "type": "Child", + "id": "https://ror.org/00vb8fc53" + }, + { + "label": "Centre d'Etudes Supérieures de la Renaissance", + "type": "Child", + "id": "https://ror.org/03cv31q28" + }, + { + "label": "Centre d’histoire sociale des mondes contemporains", + "type": "Child", + "id": "https://ror.org/04zjb4t38" + }, + { + "label": "Centre d'Économie de la Sorbonne", + "type": "Child", + "id": "https://ror.org/006shqv80" + }, + { + "label": "Centre d’étude de la langue et des littératures françaises", + "type": "Child", + "id": "https://ror.org/059v8sw69" + }, + { + "label": "Centre d'études Européennes de Sciences Po", + "type": "Child", + "id": "https://ror.org/00gd2w119" + }, + { + "label": "Centre d'études Turques, Ottomanes, Balkaniques et Centrasiatiques", + "type": "Child", + "id": "https://ror.org/047rmr210" + }, + { + "label": "Centre de Recherche en Économie et Management", + "type": "Child", + "id": "https://ror.org/0047rmf80" + }, + { + "label": "Centre de Recherche et de Documentation sur les Amériques", + "type": "Child", + "id": "https://ror.org/0585hkk81" + }, + { + "label": "Centre de Recherche sur la Langue et les Textes Basques", + "type": "Child", + "id": "https://ror.org/03bj0v820" + }, + { + "label": "Centre de Recherche sur les Liens Sociaux", + "type": "Child", + "id": "https://ror.org/01wcaw014" + }, + { + "label": "Centre de Recherches Linguistiques sur l'Asie Orientale", + "type": "Child", + "id": "https://ror.org/026h43663" + }, + { + "label": "Centre de Recherches Politiques de Sciences Po", + "type": "Child", + "id": "https://ror.org/0266y7j75" + }, + { + "label": "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales", + "type": "Child", + "id": "https://ror.org/01qm1tk92" + }, + { + "label": "Centre de recherches sur la pensée antique", + "type": "Child", + "id": "https://ror.org/02d19mr69" + }, + { + "label": "Centre de Recherches sur les Arts et le Langage", + "type": "Child", + "id": "https://ror.org/025bzyx94" + }, + { + "label": "Centre de Théorie et Analyse du Droit", + "type": "Child", + "id": "https://ror.org/04bg5j190" + }, + { + "label": "Centre d’Etudes et de Recherches de Sciences Administratives et Politiques", + "type": "Child", + "id": "https://ror.org/00abqs885" + }, + { + "label": "Centre d’études des Mondes Russe, Caucasien et Centre-Européen", + "type": "Child", + "id": "https://ror.org/052wpc865" + }, + { + "label": "Laboratoire d'ethnologie et de sociologie comparative", + "type": "Child", + "id": "https://ror.org/056swcy54" + }, + { + "label": "Analyse et Traitement Informatique de la Langue Française", + "type": "Child", + "id": "https://ror.org/02cy9g557" + }, + { + "label": "Dauphine Recherches en Management", + "type": "Child", + "id": "https://ror.org/01mzxgm71" + }, + { + "label": "Droit et changement social", + "type": "Child", + "id": "https://ror.org/014nzh720" + }, + { + "label": "EconomiX", + "type": "Child", + "id": "https://ror.org/02j4j8p35" + }, + { + "label": "Centre Européen de Sociologie et de Science Politique", + "type": "Child", + "id": "https://ror.org/0121yvq70" + }, + { + "label": "Groupe Sociétés, Religions, Laïcités", + "type": "Child", + "id": "https://ror.org/01wk35t67" + }, + { + "label": "Groupe d'Étude des Méthodes de l'Analyse Sociologique de la Sorbonne", + "type": "Child", + "id": "https://ror.org/00kzsxx38" + }, + { + "label": "Groupe de Recherche en Droit, Économie, Gestion", + "type": "Child", + "id": "https://ror.org/00rfccx09" + }, + { + "label": "Groupement de Recherche en Économie Quantitative d’Aix-Marseille", + "type": "Child", + "id": "https://ror.org/02ek9wp67" + }, + { + "label": "Groupement de Recherche et d'Études en Gestion d’HEC", + "type": "Child", + "id": "https://ror.org/01y766z47" + }, + { + "label": "Histoire et Sources des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/01yx7av22" + }, + { + "label": "Identités et Différenciation de l'Environnement des Espaces et des Sociétés", + "type": "Child", + "id": "https://ror.org/04kcjtk03" + }, + { + "label": "Institut Interdisciplinaire d’Anthropologie du Contemporain", + "type": "Child", + "id": "https://ror.org/00a5z9122" + }, + { + "label": "Institut Marcel Mauss", + "type": "Child", + "id": "https://ror.org/02c5gbd66" + }, + { + "label": "Institut d'Histoire Moderne et Contemporaine", + "type": "Child", + "id": "https://ror.org/04795e365" + }, + { + "label": "Institut d'Histoire du Temps Présent", + "type": "Child", + "id": "https://ror.org/04s0b8n66" + }, + { + "label": "Institut de Recherche Interdisciplinaire en Sciences Sociales", + "type": "Child", + "id": "https://ror.org/05mmjvv12" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "Child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Institut de Recherche et d'Histoire des Textes", + "type": "Child", + "id": "https://ror.org/05evznf71" + }, + { + "label": "Institut de Recherche sur la Renaissance l'Age Classique et les Lumières", + "type": "Child", + "id": "https://ror.org/02sz8cn84" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "Child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Institut de Recherches Historiques du Septentrion", + "type": "Child", + "id": "https://ror.org/021ddkf20" + }, + { + "label": "Institut des Sciences Sociales du Politique", + "type": "Child", + "id": "https://ror.org/03jdg7625" + }, + { + "label": "Institut des Textes et Manuscrits Modernes", + "type": "Child", + "id": "https://ror.org/00x1d4q78" + }, + { + "label": "Institut d'Histoire et de Philosophie des Sciences et des Techniques", + "type": "Child", + "id": "https://ror.org/02nnpw434" + }, + { + "label": "Laboratoire d'Economie et de Sociologie du Travail", + "type": "Child", + "id": "https://ror.org/043xjcd49" + }, + { + "label": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "type": "Child", + "id": "https://ror.org/03p76m698" + }, + { + "label": "Littoral, Environnement et Sociétés", + "type": "Child", + "id": "https://ror.org/00r8amq78" + }, + { + "label": "Laboratoire Cognition, Langues, Langage, Ergonomie", + "type": "Child", + "id": "https://ror.org/029cj5595" + }, + { + "label": "Laboratoire Dynamiques Sociales et Recomposition des Espaces", + "type": "Child", + "id": "https://ror.org/045r56524" + }, + { + "label": "Laboratoire Interdisciplinaire Solidarités Sociétés Territoires", + "type": "Child", + "id": "https://ror.org/04m5rvb18" + }, + { + "label": "Laboratoire Interdisciplinaire des Énergies de Demain", + "type": "Child", + "id": "https://ror.org/00m43ek07" + }, + { + "label": "Laboratoire Interdisciplinaire pour la Sociologie Economique", + "type": "Child", + "id": "https://ror.org/01b8mj511" + }, + { + "label": "Laboratoire Parole et Langage", + "type": "Child", + "id": "https://ror.org/05whq8x35" + }, + { + "label": "Laboratoire Printemps", + "type": "Child", + "id": "https://ror.org/00mdx2x22" + }, + { + "label": "Laboratoire d'Anthropologie Sociale", + "type": "Child", + "id": "https://ror.org/05pm8ec76" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "Child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Linguistique Formelle", + "type": "Child", + "id": "https://ror.org/0223bz716" + }, + { + "label": "Laboratoire de Phonétique et Phonologie", + "type": "Child", + "id": "https://ror.org/007p4nf03" + }, + { + "label": "Technologie et Ethnologie des Mondes PréhistoriqueS", + "type": "Child", + "id": "https://ror.org/01pawvf59" + }, + { + "label": "Laboratoire de Psychologie du Développement et de L’Education de l’enfant", + "type": "Child", + "id": "https://ror.org/023kqz006" + }, + { + "label": "Langage, langues et Cultures d’Afrique Noire", + "type": "Child", + "id": "https://ror.org/024mt9310" + }, + { + "label": "Langues, Textes, Traitements Informatiques, Cognition", + "type": "Child", + "id": "https://ror.org/03ms1y683" + }, + { + "label": "Laboratoire Architecture Ville Urbanisme Environnement", + "type": "Child", + "id": "https://ror.org/01dqmj897" + }, + { + "label": "Les Afriques dans le Monde", + "type": "Child", + "id": "https://ror.org/00721wn77" + }, + { + "label": "Centre d'Etudes et de Recherches Administratives, Politiques et Sociales", + "type": "Child", + "id": "https://ror.org/03n91q085" + }, + { + "label": "Lille Économie Management", + "type": "Child", + "id": "https://ror.org/05bz47575" + }, + { + "label": "Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles", + "type": "Child", + "id": "https://ror.org/04rkh0096" + }, + { + "label": "Maison Européenne des Sciences de l'Homme et de la Société", + "type": "Child", + "id": "https://ror.org/00m090414" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Maison des Sciences de l’Homme de Dijon", + "type": "Child", + "id": "https://ror.org/04ejcwb57" + }, + { + "label": "Maison des Sciences de l’Homme et de la Société de Toulouse", + "type": "Child", + "id": "https://ror.org/03azy3k91" + }, + { + "label": "Maison des Sciences de l’Homme et de l‘Environnement Claude Nicolas Ledoux", + "type": "Child", + "id": "https://ror.org/04w8f9k94" + }, + { + "label": "Migrations Internationales, Espace Espaces et Sociétés", + "type": "Child", + "id": "https://ror.org/03sv5kk82" + }, + { + "label": "Modèles Dynamiques Corpus", + "type": "Child", + "id": "https://ror.org/03x6a1n79" + }, + { + "label": "Mondes Américains", + "type": "Child", + "id": "https://ror.org/02y6fxd73" + }, + { + "label": "Orient & Méditerranée", + "type": "Child", + "id": "https://ror.org/051gvfp41" + }, + { + "label": "Pays Germaniques", + "type": "Child", + "id": "https://ror.org/04f9rh541" + }, + { + "label": "Proche-Orient, Caucase : Langues, Archéologie, Cultures", + "type": "Child", + "id": "https://ror.org/030jm0n16" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Savoirs, Textes, Langage", + "type": "Child", + "id": "https://ror.org/003fs1j49" + }, + { + "label": "Sciences Cognitives et Sciences Affectives", + "type": "Child", + "id": "https://ror.org/05rqwc876" + }, + { + "label": "Sciences, Philosophie, Histoire", + "type": "Child", + "id": "https://ror.org/05c9ks061" + }, + { + "label": "Maison de la Recherche en Sciences Humaines", + "type": "Child", + "id": "https://ror.org/00g7vvf64" + }, + { + "label": "Sociétés, Acteurs, Gouvernement en Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Sorbonne - Identités, Relations Internationales et Civilisations de l’Europe", + "type": "Child", + "id": "https://ror.org/03ae8w006" + }, + { + "label": "Centre d’Etudes Politiques Et sociaLes", + "type": "Child", + "id": "https://ror.org/02wzg8t73" + }, + { + "label": "Structures Formelles du Langage", + "type": "Child", + "id": "https://ror.org/00nrven85" + }, + { + "label": "Chine, Corée, Japon", + "type": "Child", + "id": "https://ror.org/02djzje70" + }, + { + "label": "Théorie et Histoire des Arts et des Littératures de la Modernité", + "type": "Child", + "id": "https://ror.org/00ca65425" + }, + { + "label": "Théorie Économique, Modélisation et Applications", + "type": "Child", + "id": "https://ror.org/00vctdx48" + }, + { + "label": "Théoriser et Modéliser pour Aménager", + "type": "Child", + "id": "https://ror.org/01a0gpy77" + }, + { + "label": "Institut de l'Ouest : Droit et Europe", + "type": "Child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Centre de données socio-politiques de Sciences Po", + "type": "Child", + "id": "https://ror.org/03aef3108" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "Child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "Child", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "Littoral, Environnement, Télédétection, Géomatique", + "type": "Child", + "id": "https://ror.org/05sat2s07" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cnrs.fr/inshs/" + ], + "aliases": [], + "acronyms": [ + "INSHS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100017215" + ], + "preferred": "501100017215" + }, + "GRID": { + "all": "grid.457014.3", + "preferred": "grid.457014.3" + }, + "ISNI": { + "all": [ + "0000 0004 0387 1477" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q24935932" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04b202422.json b/v1.52/v1/04b202422.json new file mode 100644 index 000000000..7065b1a5a --- /dev/null +++ b/v1.52/v1/04b202422.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04b202422", + "name": "Universidad Tecnológica Gral. Mariano Escobedo", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 25.79698, + "lng": -100.31791, + "state": null, + "state_code": null, + "city": "General Escobedo", + "geonames_city": { + "id": 4005867, + "city": "General Escobedo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ute.edu.mx" + ], + "aliases": [ + "Gral. Mariano Escobedo Technological University", + "Universidad Tecnológica General Mariano Escobedo" + ], + "acronyms": [ + "UTE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 8590" + ], + "preferred": "0000 0004 1770 8590" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04b7fym73.json b/v1.52/v1/04b7fym73.json new file mode 100644 index 000000000..cf2bbcafb --- /dev/null +++ b/v1.52/v1/04b7fym73.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04b7fym73", + "name": "Sheikh Hasina Medical University", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.5, + "lng": 89.33333, + "state": null, + "state_code": null, + "city": "Khulna", + "geonames_city": { + "id": 1337211, + "city": "Khulna", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://shmu.ac.bd" + ], + "aliases": [ + "Khulna Medical University", + "Sheikh Hasina Medical University, Khulna" + ], + "acronyms": [ + "SHMU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Sheikh_Hasina_Medical_University%2C_Khulna", + "labels": [ + { + "label": "শেখ হাসিনা মেডিকেল বিশ্ববিদ্যালয়, খুলনা", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q83837104" + ], + "preferred": "Q83837104" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04bjtbt12.json b/v1.52/v1/04bjtbt12.json new file mode 100644 index 000000000..e9e134a9b --- /dev/null +++ b/v1.52/v1/04bjtbt12.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04bjtbt12", + "name": "Instituto Tecnológico Superior de Lerdo", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 25.53718, + "lng": -103.52456, + "state": null, + "state_code": null, + "city": "Lerdo", + "geonames_city": { + "id": 4013706, + "city": "Lerdo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lerdo.tecnm.mx" + ], + "aliases": [ + "ITSLerdo", + "Tec Lerdo", + "TecNM - Campus Lerdo" + ], + "acronyms": [ + "ITSL", + "TECNM ITSL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Higher Technological Institute of Lerdo", + "iso639": "en" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0369 0107" + ], + "preferred": "0000 0004 0369 0107" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04btem923.json b/v1.52/v1/04btem923.json new file mode 100644 index 000000000..b2c733dc2 --- /dev/null +++ b/v1.52/v1/04btem923.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04btem923", + "name": "Measurement Standards Section", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [ + { + "label": "Ministry of Health", + "type": "Parent", + "id": "https://ror.org/01awjf572" + } + ], + "addresses": [ + { + "lat": 4.89035, + "lng": 114.94006, + "state": null, + "state_code": null, + "city": "Bandar Seri Begawan", + "geonames_city": { + "id": 1820906, + "city": "Bandar Seri Begawan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.moh.gov.bn/SitePages/MeasurementStandardsSectionDSS.aspx" + ], + "aliases": [ + "Measurement Standards Laboratory" + ], + "acronyms": [ + "MSL-BD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Brunei", + "country_code": "BN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/04c5jwj47.json b/v1.52/v1/04c5jwj47.json new file mode 100644 index 000000000..dfef5eb76 --- /dev/null +++ b/v1.52/v1/04c5jwj47.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04c5jwj47", + "name": "Collegium Medicum in Bydgoszcz", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Nicolaus Copernicus University", + "type": "Parent", + "id": "https://ror.org/0102mm775" + }, + { + "label": "Jan Biziel University Hospital No. 2 in Bydgoszcz", + "type": "Child", + "id": "https://ror.org/05r81yb60" + } + ], + "addresses": [ + { + "lat": 53.1235, + "lng": 18.00762, + "state": null, + "state_code": null, + "city": "Bydgoszcz", + "geonames_city": { + "id": 3102014, + "city": "Bydgoszcz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cm.umk.pl/en/" + ], + "aliases": [ + "Ludwik Rydygier Collegium Medicum", + "Ludwik Rydygier Medical University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "GRID": { + "all": "grid.411797.d", + "preferred": "grid.411797.d" + }, + "ISNI": { + "all": [ + "0000 0001 0595 5584" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04c9vp017.json b/v1.52/v1/04c9vp017.json new file mode 100644 index 000000000..63d6ce895 --- /dev/null +++ b/v1.52/v1/04c9vp017.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04c9vp017", + "name": "Supernal (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Hyundai Motor Group (South Korea)", + "type": "Parent", + "id": "https://ror.org/05kxbz959" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.supernal.aero" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Supernal", + "iso639": null + }, + { + "label": "Supernal, LLC", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/04chrp450.json b/v1.52/v1/04chrp450.json new file mode 100644 index 000000000..fac197412 --- /dev/null +++ b/v1.52/v1/04chrp450.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/04chrp450", + "name": "Nagoya University", + "email_address": null, + "ip_addresses": [], + "established": 1871, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tokai National Higher Education and Research System", + "type": "Parent", + "id": "https://ror.org/04d139241" + }, + { + "label": "Nagoya University Hospital", + "type": "Related", + "id": "https://ror.org/008zz8m46" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 35.18147, + "lng": 136.90641, + "state": null, + "state_code": null, + "city": "Nagoya", + "geonames_city": { + "id": 1856057, + "city": "Nagoya", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://en.nagoya-u.ac.jp/" + ], + "aliases": [ + "Nagoya Daigaku" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Nagoya_University", + "labels": [ + { + "label": "名古屋大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004823", + "501100005702" + ], + "preferred": "501100004823" + }, + "GRID": { + "all": "grid.27476.30", + "preferred": "grid.27476.30" + }, + "ISNI": { + "all": [ + "0000 0001 0943 978X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1191132" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04cvt0159.json b/v1.52/v1/04cvt0159.json new file mode 100644 index 000000000..b5a769aa9 --- /dev/null +++ b/v1.52/v1/04cvt0159.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04cvt0159", + "name": "Bureau of Quality and Safety of Food", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of Public Health", + "type": "Parent", + "id": "https://ror.org/03rn0z073" + } + ], + "addresses": [ + { + "lat": 13.86075, + "lng": 100.51477, + "state": null, + "state_code": null, + "city": "Nonthaburi", + "geonames_city": { + "id": 1608133, + "city": "Nonthaburi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://bqsf.dmsc.moph.go.th/bqsfWeb/" + ], + "aliases": [], + "acronyms": [ + "BQSF DMS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "สำนักคุณภาพและความปลอดภัยอาหาร", + "iso639": "th" + } + ], + "country": { + "country_name": "Thailand", + "country_code": "TH" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/04d996474.json b/v1.52/v1/04d996474.json new file mode 100644 index 000000000..e826f46b9 --- /dev/null +++ b/v1.52/v1/04d996474.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04d996474", + "name": "Southwest University of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Joint Laboratory for Extreme Conditions Matter Properties", + "type": "Child", + "id": "https://ror.org/00fzxtk71" + } + ], + "addresses": [ + { + "lat": 31.46784, + "lng": 104.68168, + "state": null, + "state_code": null, + "city": "Mianyang", + "geonames_city": { + "id": 1800627, + "city": "Mianyang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.swust.edu.cn" + ], + "aliases": [ + "Xīnán Kējìdàxué" + ], + "acronyms": [ + "SWUST" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Southwest_University_of_Science_and_Technology", + "labels": [ + { + "label": "西南科技大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004335" + ], + "preferred": null + }, + "GRID": { + "all": "grid.440649.b", + "preferred": "grid.440649.b" + }, + "ISNI": { + "all": [ + "0000 0004 1808 3334" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q15919938" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04dv4he91.json b/v1.52/v1/04dv4he91.json new file mode 100644 index 000000000..426534b2b --- /dev/null +++ b/v1.52/v1/04dv4he91.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/04dv4he91", + "name": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Claude Bernard Lyon 1", + "type": "Parent", + "id": "https://ror.org/029brtt94" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut National des Sciences Appliquées de Lyon", + "type": "Parent", + "id": "https://ror.org/050jn9y42" + }, + { + "label": "École Centrale de Lyon", + "type": "Parent", + "id": "https://ror.org/05s6rge65" + }, + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://liris.cnrs.fr/" + ], + "aliases": [], + "acronyms": [ + "LIRIS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482747.a", + "preferred": "grid.482747.a" + }, + "ISNI": { + "all": [ + "0000 0001 2257 7669" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04dy2xw62.json b/v1.52/v1/04dy2xw62.json new file mode 100644 index 000000000..242b7060e --- /dev/null +++ b/v1.52/v1/04dy2xw62.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/04dy2xw62", + "name": "Text+", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 49.4891, + "lng": 8.46694, + "state": null, + "state_code": null, + "city": "Mannheim", + "geonames_city": { + "id": 2873891, + "city": "Mannheim", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.text-plus.org" + ], + "aliases": [ + "Sprach- und textbasierte Forschungsdateninfrastruktur", + "Text+ - Sprach- und textbasierte Forschungsdateninfrastruktur" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Text%2B", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q98271443" + ], + "preferred": "Q98271443" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04dy97z61.json b/v1.52/v1/04dy97z61.json new file mode 100644 index 000000000..90c321eeb --- /dev/null +++ b/v1.52/v1/04dy97z61.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/04dy97z61", + "name": "Laboratoire Interactions, Dynamiques et Lasers", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CEA Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03n15ch10" + }, + { + "label": "Université Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Institut Rayonnement-Matière de Saclay", + "type": "Parent", + "id": "https://ror.org/00cch2r34" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iramis.cea.fr/LIDYL/" + ], + "aliases": [ + "Laboratory Interactions, Dynamics and Lasers" + ], + "acronyms": [ + "LIDYL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "LIDYL, Lasers, Interactions, and Dynamics Laboratory", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463977.8", + "preferred": "grid.463977.8" + }, + "ISNI": { + "all": [ + "0000 0004 0373 398X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262349" + ], + "preferred": "Q30262349" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04e90ca47.json b/v1.52/v1/04e90ca47.json new file mode 100644 index 000000000..69f9450dc --- /dev/null +++ b/v1.52/v1/04e90ca47.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/04e90ca47", + "name": "Faculty of Electrical Engineering and Computing in Zagreb", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Zagreb", + "type": "Parent", + "id": "https://ror.org/00mv6sv71" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 45.81444, + "lng": 15.97798, + "state": null, + "state_code": null, + "city": "Zagreb", + "geonames_city": { + "id": 3186886, + "city": "Zagreb", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fer.unizg.hr" + ], + "aliases": [ + "FER Zagreb" + ], + "acronyms": [ + "FER" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Faculty_of_Electrical_Engineering_and_Computing%2C_University_of_Zagreb", + "labels": [ + { + "label": "Fakultet elektrotehnike i računarstva", + "iso639": "hr" + } + ], + "country": { + "country_name": "Croatia", + "country_code": "HR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q3514081" + ], + "preferred": "Q3514081" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04ej53908.json b/v1.52/v1/04ej53908.json new file mode 100644 index 000000000..2e3fb1bc2 --- /dev/null +++ b/v1.52/v1/04ej53908.json @@ -0,0 +1,131 @@ +{ + "id": "https://ror.org/04ej53908", + "name": "Typologie et Universaux Linguistiques", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut National des Langues et Civilisations Orientales", + "type": "Parent", + "id": "https://ror.org/023zg8w32" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "Université Bordeaux Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + }, + { + "label": "Université Sorbonne Nouvelle", + "type": "Parent", + "id": "https://ror.org/03z6jp965" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "École des hautes études en sciences sociales", + "type": "Parent", + "id": "https://ror.org/02d9dg697" + }, + { + "label": "Université Paris Cité", + "type": "Parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "Université de Pau et des Pays de l'Adour", + "type": "Parent", + "id": "https://ror.org/01frn9647" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.typologie.cnrs.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482755.9", + "preferred": "grid.482755.9" + }, + "ISNI": { + "all": [ + "0000 0004 0367 0181" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04eq71r04.json b/v1.52/v1/04eq71r04.json new file mode 100644 index 000000000..4513414c8 --- /dev/null +++ b/v1.52/v1/04eq71r04.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04eq71r04", + "name": "Instituto Federal Farroupilha", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -29.68417, + "lng": -53.80694, + "state": null, + "state_code": null, + "city": "Santa Maria", + "geonames_city": { + "id": 3450083, + "city": "Santa Maria", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iffarroupilha.edu.br" + ], + "aliases": [ + "Federal Institute Farroupilha", + "Federal Institute of Education, Science and Technology Farroupilha", + "IFFar", + "IFFarroupilha", + "Instituto Federal Farroupilha", + "Instituto Federal de Educación, Ciencia y Tecnología Farroupilha" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Instituto Federal de Educação, Ciência e Tecnologia Farroupilha", + "iso639": "pt" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "GRID": { + "all": "grid.472968.6", + "preferred": "grid.472968.6" + }, + "ISNI": { + "all": [ + "0000 0004 0445 3103" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04f13ze88.json b/v1.52/v1/04f13ze88.json new file mode 100644 index 000000000..cb937e625 --- /dev/null +++ b/v1.52/v1/04f13ze88.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/04f13ze88", + "name": "People's Liberation Army Air Force", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "PLA Air Force Xi'an Flying College", + "type": "Child", + "id": "https://ror.org/05gzn8n94" + }, + { + "label": "Air Force Communication NCO Academy", + "type": "Child", + "id": "https://ror.org/02n6w8087" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://eng.chinamil.com.cn/armed-forces/air-force.htm" + ], + "aliases": [ + "PLA Air Force" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/People%27s_Liberation_Army_Air_Force", + "labels": [ + { + "label": "中国人民解放军空军", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9678 0451" + ], + "preferred": "0000 0000 9678 0451" + }, + "Wikidata": { + "all": [ + "Q607832" + ], + "preferred": "Q607832" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04fq9j139.json b/v1.52/v1/04fq9j139.json new file mode 100644 index 000000000..682a192f2 --- /dev/null +++ b/v1.52/v1/04fq9j139.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/04fq9j139", + "name": "Max Planck Institute for Intelligent Systems", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Institutes for Intelligent Systems & Solid State Research Library", + "type": "Child", + "id": "https://ror.org/010c2rf19" + }, + { + "label": "Tübingen AI Center", + "type": "Child", + "id": "https://ror.org/0107nyd78" + }, + { + "label": "Max Planck Society", + "type": "Parent", + "id": "https://ror.org/01hhn8329" + } + ], + "addresses": [ + { + "lat": 48.78232, + "lng": 9.17702, + "state": null, + "state_code": null, + "city": "Stuttgart", + "geonames_city": { + "id": 2825297, + "city": "Stuttgart", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.is.mpg.de/en" + ], + "aliases": [], + "acronyms": [ + "MPI-IS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Max_Planck_Institute_for_Intelligent_Systems", + "labels": [ + { + "label": "Max-Planck-Institut für Intelligente Systeme", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.419534.e", + "preferred": "grid.419534.e" + }, + "ISNI": { + "all": [ + "0000 0001 1015 6533" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1287942" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04fr7pd94.json b/v1.52/v1/04fr7pd94.json new file mode 100644 index 000000000..6adfdfa73 --- /dev/null +++ b/v1.52/v1/04fr7pd94.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/04fr7pd94", + "name": "Institut de Chimie Séparative de Marcoule", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "Parent", + "id": "https://ror.org/03sgyqj04" + } + ], + "addresses": [ + { + "lat": 44.16259, + "lng": 4.61974, + "state": null, + "state_code": null, + "city": "Bagnols-sur-Cèze", + "geonames_city": { + "id": 3035396, + "city": "Bagnols-sur-Cèze", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.icsm.fr" + ], + "aliases": [ + "Institute for the Separation Chemistry in Marcoule" + ], + "acronyms": [ + "ICSM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Marcoule Institute for Separation Chemistry", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462049.d", + "preferred": "grid.462049.d" + }, + "ISNI": { + "all": [ + "0000 0004 0384 1091" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261373" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04fw54a43.json b/v1.52/v1/04fw54a43.json new file mode 100644 index 000000000..aeeac3b40 --- /dev/null +++ b/v1.52/v1/04fw54a43.json @@ -0,0 +1,551 @@ +{ + "id": "https://ror.org/04fw54a43", + "name": "Indian Council of Agricultural Research", + "email_address": null, + "ip_addresses": [], + "established": 1929, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Central Arid Zone Research Institute", + "type": "Child", + "id": "https://ror.org/04298em06" + }, + { + "label": "Central Avian Research Institute", + "type": "Child", + "id": "https://ror.org/00gsmyw97" + }, + { + "label": "Central Citrus Research Institute", + "type": "Child", + "id": "https://ror.org/03fv7j188" + }, + { + "label": "Central Coastal Agricultural Research Institute", + "type": "Child", + "id": "https://ror.org/00n1gdp39" + }, + { + "label": "Central Inland Fisheries Research Institute", + "type": "Child", + "id": "https://ror.org/04gtdp803" + }, + { + "label": "Central Institute For Subtropical Horticulture", + "type": "Child", + "id": "https://ror.org/0128gh156" + }, + { + "label": "Central Institute for Cotton Research", + "type": "Child", + "id": "https://ror.org/03cbgzw80" + }, + { + "label": "Central Institute for Research on Buffaloes", + "type": "Child", + "id": "https://ror.org/02wmtxq23" + }, + { + "label": "Central Institute for Research on Cattle", + "type": "Child", + "id": "https://ror.org/01j495q26" + }, + { + "label": "Central Institute for Research on Cotton Technology", + "type": "Child", + "id": "https://ror.org/00jgd4s13" + }, + { + "label": "Central Institute for Research on Goats", + "type": "Child", + "id": "https://ror.org/01n1cp186" + }, + { + "label": "Central Institute of Agricultural Engineering", + "type": "Child", + "id": "https://ror.org/026j5b854" + }, + { + "label": "Central Institute of Brackishwater Aquaculture", + "type": "Child", + "id": "https://ror.org/05e7sd388" + }, + { + "label": "Central Institute of Fisheries Education", + "type": "Child", + "id": "https://ror.org/03qfmrs34" + }, + { + "label": "Central Institute of Fisheries Technology", + "type": "Child", + "id": "https://ror.org/04cbweh98" + }, + { + "label": "Central Institute of Freshwater Aquaculture", + "type": "Child", + "id": "https://ror.org/041137e25" + }, + { + "label": "Central Institute of Post-Harvest Engineering and Technology", + "type": "Child", + "id": "https://ror.org/013qy4n59" + }, + { + "label": "Central Institute of Temperate Horticulture", + "type": "Child", + "id": "https://ror.org/032sxkb16" + }, + { + "label": "ICAR - Central Island Agricultural Research Institute", + "type": "Child", + "id": "https://ror.org/03rsgdh53" + }, + { + "label": "Central Marine Fisheries Research Institute", + "type": "Child", + "id": "https://ror.org/02jw8vr54" + }, + { + "label": "Central Plantation Crops Research Institute", + "type": "Child", + "id": "https://ror.org/052afrt88" + }, + { + "label": "Central Potato Research Institute", + "type": "Child", + "id": "https://ror.org/019nmf858" + }, + { + "label": "Central Research Institute for Dryland Agriculture", + "type": "Child", + "id": "https://ror.org/05e1f3f77" + }, + { + "label": "Central Research Institute for Jute and Allied Fibres", + "type": "Child", + "id": "https://ror.org/01tk0cw08" + }, + { + "label": "Central Rice Research Institute", + "type": "Child", + "id": "https://ror.org/029zb5621" + }, + { + "label": "Central Sheep and Wool Research Institute", + "type": "Child", + "id": "https://ror.org/024h4jv51" + }, + { + "label": "Central Soil Salinity Research Institute", + "type": "Child", + "id": "https://ror.org/0366v8040" + }, + { + "label": "Central Tobacco Research Institute", + "type": "Child", + "id": "https://ror.org/04bzq6109" + }, + { + "label": "Central Tuber Crops Research Institute", + "type": "Child", + "id": "https://ror.org/04ry4r880" + }, + { + "label": "Directorate of Cashew Research", + "type": "Child", + "id": "https://ror.org/018jrds86" + }, + { + "label": "Directorate of Coldwater Fisheries Research", + "type": "Child", + "id": "https://ror.org/03j87dy80" + }, + { + "label": "Directorate of Groundnut Research", + "type": "Child", + "id": "https://ror.org/038rpb237" + }, + { + "label": "Directorate of Medicinal and Aromatic Plants Research", + "type": "Child", + "id": "https://ror.org/04n3c2195" + }, + { + "label": "Directorate of Onion and Garlic Research", + "type": "Child", + "id": "https://ror.org/02hbdvq93" + }, + { + "label": "Directorate of Poultry Research", + "type": "Child", + "id": "https://ror.org/01c0mrz71" + }, + { + "label": "Directorate of Rapeseed-Mustard Research", + "type": "Child", + "id": "https://ror.org/01mz7kc73" + }, + { + "label": "Directorate of Weed Research", + "type": "Child", + "id": "https://ror.org/02hzb7188" + }, + { + "label": "ICAR Research Complex for NEH Region", + "type": "Child", + "id": "https://ror.org/023azs158" + }, + { + "label": "ICAR-Indian Institute of Agricultural Biotechnology", + "type": "Child", + "id": "https://ror.org/04kswek43" + }, + { + "label": "ICAR-Indian Institute of Maize Research", + "type": "Child", + "id": "https://ror.org/04v3ce875" + }, + { + "label": "Indian Agricultural Research Institute", + "type": "Child", + "id": "https://ror.org/01bzgdw81" + }, + { + "label": "Indian Agricultural Statistics Research Institute", + "type": "Child", + "id": "https://ror.org/03kkevc75" + }, + { + "label": "Indian Grassland and Fodder Research Institute", + "type": "Child", + "id": "https://ror.org/03x3mpp61" + }, + { + "label": "Indian Institute of Horticultural Research", + "type": "Child", + "id": "https://ror.org/00s2dqx11" + }, + { + "label": "Indian Institute of Millets Research", + "type": "Child", + "id": "https://ror.org/02pvp9c06" + }, + { + "label": "Indian Institute of Natural Resins and Gums", + "type": "Child", + "id": "https://ror.org/047q4fb87" + }, + { + "label": "Indian Institute of Oil Palm Research", + "type": "Child", + "id": "https://ror.org/02t72hc65" + }, + { + "label": "Indian Institute of Oilseeds Research", + "type": "Child", + "id": "https://ror.org/00wrwqa33" + }, + { + "label": "Indian Institute of Rice Research", + "type": "Child", + "id": "https://ror.org/021j5pp16" + }, + { + "label": "Indian Institute of Soil Science", + "type": "Child", + "id": "https://ror.org/05j873a45" + }, + { + "label": "Indian Institute of Soil and Water Conservation", + "type": "Child", + "id": "https://ror.org/05jdfze05" + }, + { + "label": "Indian Institute of Soybean Research", + "type": "Child", + "id": "https://ror.org/05vm6r550" + }, + { + "label": "Indian Institute of Spices Research", + "type": "Child", + "id": "https://ror.org/0599dmq43" + }, + { + "label": "Indian Institute of Sugarcane Research", + "type": "Child", + "id": "https://ror.org/030nxya44" + }, + { + "label": "Indian Institute of Vegetable Research", + "type": "Child", + "id": "https://ror.org/032kjn442" + }, + { + "label": "Indian Institute of Wheat and Barley Research", + "type": "Child", + "id": "https://ror.org/0516brw47" + }, + { + "label": "Indian Veterinary Research Institute", + "type": "Child", + "id": "https://ror.org/02jcfzc36" + }, + { + "label": "Krishi Vigyan Kendra, Hingoli", + "type": "Child", + "id": "https://ror.org/00y3zx547" + }, + { + "label": "Krishi Vigyan Kendra, Karda", + "type": "Child", + "id": "https://ror.org/05n682z45" + }, + { + "label": "Krishi Vigyan Kendra, Latur", + "type": "Child", + "id": "https://ror.org/01hmsgz49" + }, + { + "label": "National Academy of Agricultural Research Management", + "type": "Child", + "id": "https://ror.org/02rx19412" + }, + { + "label": "National Bureau of Agricultural Insect Resources", + "type": "Child", + "id": "https://ror.org/03pf1rt23" + }, + { + "label": "National Bureau of Agriculturally Important Microorganisms", + "type": "Child", + "id": "https://ror.org/02pnvb171" + }, + { + "label": "National Bureau of Animal Genetic Resources", + "type": "Child", + "id": "https://ror.org/03d3nyr92" + }, + { + "label": "National Bureau of Fish Genetic Resources", + "type": "Child", + "id": "https://ror.org/009h1nj77" + }, + { + "label": "National Bureau of Plant Genetic Resources", + "type": "Child", + "id": "https://ror.org/00scbd467" + }, + { + "label": "National Bureau of Soil Survey and Land Use Planning", + "type": "Child", + "id": "https://ror.org/05vm7ws26" + }, + { + "label": "National Dairy Research Institute", + "type": "Child", + "id": "https://ror.org/03ap5bg83" + }, + { + "label": "National Institute Of Veterinary Epidemiology And Disease Informatics", + "type": "Child", + "id": "https://ror.org/04s9fyw02" + }, + { + "label": "National Institute of Abiotic Stress Management", + "type": "Child", + "id": "https://ror.org/05h9t7c44" + }, + { + "label": "National Institute of Animal Nutrition and Physiology", + "type": "Child", + "id": "https://ror.org/03ep3hs23" + }, + { + "label": "National Institute of High Security Animal Diseases", + "type": "Child", + "id": "https://ror.org/0354ckp94" + }, + { + "label": "National Institute of Research on Jute and Allied Fibre Technology", + "type": "Child", + "id": "https://ror.org/02netwe45" + }, + { + "label": "National Research Centre for Banana", + "type": "Child", + "id": "https://ror.org/00rq8ty33" + }, + { + "label": "National Research Centre for Grapes", + "type": "Child", + "id": "https://ror.org/003709a13" + }, + { + "label": "National Research Centre for Integrated Pest Management", + "type": "Child", + "id": "https://ror.org/01d9dyv42" + }, + { + "label": "National Research Centre on Camel", + "type": "Child", + "id": "https://ror.org/02xh2ys40" + }, + { + "label": "National Research Centre on Equines", + "type": "Child", + "id": "https://ror.org/04jzz0b06" + }, + { + "label": "National Research Centre on Litchi", + "type": "Child", + "id": "https://ror.org/007w39b04" + }, + { + "label": "ICAR - National Meat Research Institute", + "type": "Child", + "id": "https://ror.org/03bjcbf76" + }, + { + "label": "National Research Centre on Mithun", + "type": "Child", + "id": "https://ror.org/043w1y866" + }, + { + "label": "National Research Centre on Plant Biotechnology", + "type": "Child", + "id": "https://ror.org/00cq3cz72" + }, + { + "label": "National Research Centre on Seed Spices", + "type": "Child", + "id": "https://ror.org/02fcamb19" + }, + { + "label": "National Research Centre on Yak", + "type": "Child", + "id": "https://ror.org/0052nmr57" + }, + { + "label": "Project Directorate on Foot and Mouth Disease", + "type": "Child", + "id": "https://ror.org/026695c98" + }, + { + "label": "Sugarcane Breeding Institute", + "type": "Child", + "id": "https://ror.org/04q18mv54" + }, + { + "label": "University of Agricultural Sciences, Dharwad", + "type": "Child", + "id": "https://ror.org/02qn0hf26" + }, + { + "label": "Vivekananda Parvatiya Krishi Anusandhan Sansthan", + "type": "Child", + "id": "https://ror.org/043m3hn34" + }, + { + "label": "Central Institute for Arid Horticulture", + "type": "Child", + "id": "https://ror.org/00se82r08" + } + ], + "addresses": [ + { + "lat": 28.62137, + "lng": 77.2148, + "state": null, + "state_code": null, + "city": "New Delhi", + "geonames_city": { + "id": 1261481, + "city": "New Delhi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.icar.org.in/" + ], + "aliases": [ + "Imperial Council of Agricultural Research" + ], + "acronyms": [ + "ICAR" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Indian_Council_of_Agricultural_Research", + "labels": [ + { + "label": "भारतीय कृषि अनुसंधान परिषद", + "iso639": "hi" + }, + { + "label": "இந்திய வேளாண் ஆய்வுக் கழகம்", + "iso639": "ta" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001503" + ], + "preferred": null + }, + "GRID": { + "all": "grid.418105.9", + "preferred": "grid.418105.9" + }, + "ISNI": { + "all": [ + "0000 0001 0643 7375" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3522398" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04fxmcy40.json b/v1.52/v1/04fxmcy40.json new file mode 100644 index 000000000..cf6757d6d --- /dev/null +++ b/v1.52/v1/04fxmcy40.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04fxmcy40", + "name": "Army Command College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Chinese People's Liberation Army", + "type": "Parent", + "id": "https://ror.org/05tf9r976" + } + ], + "addresses": [ + { + "lat": 32.06167, + "lng": 118.77778, + "state": null, + "state_code": null, + "city": "Nanjing", + "geonames_city": { + "id": 1799962, + "city": "Nanjing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Chinese People's Liberation Army Army Command Academy", + "Ground Force Command College", + "Nanjing Army Command College" + ], + "acronyms": [ + "NACC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "中国人民解放军陆军指挥学院播报", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/04g5gcg95.json b/v1.52/v1/04g5gcg95.json new file mode 100644 index 000000000..0d82d5297 --- /dev/null +++ b/v1.52/v1/04g5gcg95.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04g5gcg95", + "name": "Heilbronn University", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.13995, + "lng": 9.22054, + "state": null, + "state_code": null, + "city": "Heilbronn", + "geonames_city": { + "id": 2907669, + "city": "Heilbronn", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hs-heilbronn.de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Heilbronn_University", + "labels": [ + { + "label": "Hochschule Heilbronn", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.461673.1", + "preferred": "grid.461673.1" + }, + "ISNI": { + "all": [ + "0000 0001 0462 6615" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q327693" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04gcfqs37.json b/v1.52/v1/04gcfqs37.json new file mode 100644 index 000000000..6b52b8066 --- /dev/null +++ b/v1.52/v1/04gcfqs37.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/04gcfqs37", + "name": "National Highway Traffic Safety Administration", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "United States Department of Transportation", + "type": "Parent", + "id": "https://ror.org/02xfw2e90" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nhtsa.gov" + ], + "aliases": [ + "National Highway Safety Bureau" + ], + "acronyms": [ + "NHTSA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Highway_Traffic_Safety_Administration", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008760" + ], + "preferred": null + }, + "GRID": { + "all": "grid.467654.2", + "preferred": "grid.467654.2" + }, + "ISNI": { + "all": [ + "0000 0001 2342 8278" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1967350" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04gvvdt54.json b/v1.52/v1/04gvvdt54.json new file mode 100644 index 000000000..eefdbb0cf --- /dev/null +++ b/v1.52/v1/04gvvdt54.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/04gvvdt54", + "name": "Public Health Laboratory", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.20056, + "lng": 113.54611, + "state": null, + "state_code": null, + "city": "Macao", + "geonames_city": { + "id": 1821274, + "city": "Macao", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.gov.mo/en/services/ps-1578/" + ], + "aliases": [ + "Public Health Laboratory of Macao" + ], + "acronyms": [ + "PHL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Macao", + "country_code": "MO" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/04h4z8k05.json b/v1.52/v1/04h4z8k05.json new file mode 100644 index 000000000..b01a662ca --- /dev/null +++ b/v1.52/v1/04h4z8k05.json @@ -0,0 +1,164 @@ +{ + "id": "https://ror.org/04h4z8k05", + "name": "UNESCO", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Intergovernmental Oceanographic Commission of UNESCO", + "type": "Child", + "id": "https://ror.org/01qk7v094" + }, + { + "label": "Iranian National Commission for UNESCO", + "type": "Child", + "id": "https://ror.org/03v6e0402" + }, + { + "label": "Life Sciences International Postgraduate Educational Center", + "type": "Child", + "id": "https://ror.org/02yqgb753" + }, + { + "label": "UNESCO Institute for Lifelong Learning", + "type": "Child", + "id": "https://ror.org/03k51ct10" + }, + { + "label": "UNESCO-UNEVOC International Centre for Technical and Vocational Education and Training", + "type": "Child", + "id": "https://ror.org/02rm8h934" + }, + { + "label": "United Nations Educational, Scientific and Cultural Organization Afghanistan", + "type": "Child", + "id": "https://ror.org/018wzhc20" + }, + { + "label": "United Nations Educational, Scientific and Cultural Organization Switzerland", + "type": "Child", + "id": "https://ror.org/029bre548" + }, + { + "label": "The Abdus Salam International Centre for Theoretical Physics (ICTP)", + "type": "Child", + "id": "https://ror.org/009gyvm78" + }, + { + "label": "United Nations Economic and Social Council", + "type": "Parent", + "id": "https://ror.org/01eb8ek77" + }, + { + "label": "European Regional Centre for Ecohydrology", + "type": "Related", + "id": "https://ror.org/03tq3c028" + }, + { + "label": "IHE Delft Institute for Water Education", + "type": "Related", + "id": "https://ror.org/030deh410" + }, + { + "label": "World Glacier Monitoring Service", + "type": "Related", + "id": "https://ror.org/01jtrvx49" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.unesco.org" + ], + "aliases": [], + "acronyms": [ + "ONUESC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/UNESCO", + "labels": [ + { + "label": "Organisation des Nations Unies pour l'Éducation, la Science et la Culture", + "iso639": "fr" + }, + { + "label": "United Nations Educational, Scientific and Cultural Organization", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100005243" + ], + "preferred": null + }, + "GRID": { + "all": "grid.15819.34", + "preferred": "grid.15819.34" + }, + "ISNI": { + "all": [ + "0000 0004 0452 3255" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7809" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04h9xka55.json b/v1.52/v1/04h9xka55.json new file mode 100644 index 000000000..7d05baa93 --- /dev/null +++ b/v1.52/v1/04h9xka55.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04h9xka55", + "name": "Teknologi Pendidikan ID (Indonesia)", + "email_address": null, + "ip_addresses": [], + "established": 2023, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": -7.4478, + "lng": 112.7183, + "state": null, + "state_code": null, + "city": "Sidoarjo", + "geonames_city": { + "id": 1627253, + "city": "Sidoarjo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://teknologipendidikan.or.id" + ], + "aliases": [ + "EDTECH-ID", + "EDTECH-ID Institute", + "PT Inovasi Teknologi Pembelajaran" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 0942 0893" + ], + "preferred": "0000 0005 0942 0893" + }, + "Wikidata": { + "all": [ + "Q114913113" + ], + "preferred": "Q114913113" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04hjzsd20.json b/v1.52/v1/04hjzsd20.json new file mode 100644 index 000000000..bbccce5fd --- /dev/null +++ b/v1.52/v1/04hjzsd20.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04hjzsd20", + "name": "Sekisui XenoTech (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "BioIVT (United States)", + "type": "Parent", + "id": "https://ror.org/034rkw812" + } + ], + "addresses": [ + { + "lat": 38.95362, + "lng": -94.73357, + "state": null, + "state_code": null, + "city": "Lenexa", + "geonames_city": { + "id": 4274356, + "city": "Lenexa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.xenotech.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.422828.6", + "preferred": "grid.422828.6" + }, + "ISNI": { + "all": [ + "0000 0004 1798 670X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30283941" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04hx99g79.json b/v1.52/v1/04hx99g79.json new file mode 100644 index 000000000..0dccd52bc --- /dev/null +++ b/v1.52/v1/04hx99g79.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/04hx99g79", + "name": "XIM University", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 20.27241, + "lng": 85.83385, + "state": null, + "state_code": null, + "city": "Bhubaneswar", + "geonames_city": { + "id": 1275817, + "city": "Bhubaneswar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://xim.edu.in" + ], + "aliases": [ + "Xavier University" + ], + "acronyms": [ + "XUB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Xavier_University,_Bhubaneswar", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.463040.5", + "preferred": "grid.463040.5" + }, + "Wikidata": { + "all": [ + "Q19600175", + "Q8043258" + ], + "preferred": "Q19600175" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04jb47e97.json b/v1.52/v1/04jb47e97.json new file mode 100644 index 000000000..fd1f8ba0c --- /dev/null +++ b/v1.52/v1/04jb47e97.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/04jb47e97", + "name": "Centre de recherches sociologiques et politiques de Paris", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Ile-de-France Ouest et Nord", + "type": "Parent", + "id": "https://ror.org/02ft5tp06" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "Université Paris Nanterre", + "type": "Parent", + "id": "https://ror.org/013bkhk48" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://cresppa.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CRESPPA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Center for Sociological and Political Research in Paris", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.493854.7", + "preferred": "grid.493854.7" + }, + "ISNI": { + "all": [ + "0000 0004 0368 2246" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04jpfrv51.json b/v1.52/v1/04jpfrv51.json new file mode 100644 index 000000000..4d38c775e --- /dev/null +++ b/v1.52/v1/04jpfrv51.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/04jpfrv51", + "name": "Directorate General for Scientific Research and Technological Development", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre de Recherche en Technologies Agro-Alimentaires", + "type": "Child", + "id": "https://ror.org/00yf0rv20" + } + ], + "addresses": [ + { + "lat": 36.73225, + "lng": 3.08746, + "state": null, + "state_code": null, + "city": "Algiers", + "geonames_city": { + "id": 2507480, + "city": "Algiers", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.dgrsdt.dz/En/index.php" + ], + "aliases": [ + "Direction Générale de la Recherche Scientifique et du Développement Technologique" + ], + "acronyms": [ + "DG-RSDT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "المديرية العامة للبحث العلمي والتطوير التكنولوجي", + "iso639": "ar" + } + ], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005307" + ], + "preferred": null + }, + "GRID": { + "all": "grid.467765.1", + "preferred": "grid.467765.1" + }, + "ISNI": { + "all": [ + "0000 0004 0495 8726" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04jrf3m62.json b/v1.52/v1/04jrf3m62.json new file mode 100644 index 000000000..0370b372e --- /dev/null +++ b/v1.52/v1/04jrf3m62.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04jrf3m62", + "name": "Chronic Granulomatous Disorder Society", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cgdsociety.org/" + ], + "aliases": [ + "Chronic Granulomatous Disorder Research Trust" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008182", + "501100007555", + "501100000370", + "100011844" + ], + "preferred": "100011844" + }, + "GRID": { + "all": "grid.468561.8", + "preferred": "grid.468561.8" + }, + "ISNI": { + "all": [ + "0000 0004 0623 3569" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04jzps455.json b/v1.52/v1/04jzps455.json new file mode 100644 index 000000000..b8e7ca0c1 --- /dev/null +++ b/v1.52/v1/04jzps455.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04jzps455", + "name": "Structural Genomics Consortium", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.70643, + "lng": -79.39864, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.thesgc.org/" + ], + "aliases": [], + "acronyms": [ + "SGC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Structural_Genomics_Consortium", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023921" + ], + "preferred": "501100023921" + }, + "GRID": { + "all": "grid.438219.5", + "preferred": "grid.438219.5" + }, + "ISNI": { + "all": [ + "0000 0000 8810 8972" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7624992" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04k69sk69.json b/v1.52/v1/04k69sk69.json new file mode 100644 index 000000000..bafa713c0 --- /dev/null +++ b/v1.52/v1/04k69sk69.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04k69sk69", + "name": "The Charutar Vidya Mandal University", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 22.53333, + "lng": 72.9, + "state": null, + "state_code": null, + "city": "Vallabh Vidyanagar", + "geonames_city": { + "id": 1253482, + "city": "Vallabh Vidyanagar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cvmu.edu.in" + ], + "aliases": [ + "Charutar Vidya Mandal University", + "The CVM University", + "ધ ચારુતર વિદ્યા મંડળ યુનિવર્સિટી" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1776 1690" + ], + "preferred": "0000 0004 1776 1690" + }, + "Wikidata": { + "all": [ + "Q126915070" + ], + "preferred": "Q126915070" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04k7nem08.json b/v1.52/v1/04k7nem08.json new file mode 100644 index 000000000..2d2fbfb5a --- /dev/null +++ b/v1.52/v1/04k7nem08.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/04k7nem08", + "name": "Saint Louis University", + "email_address": null, + "ip_addresses": [], + "established": 1911, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Taylor Geospatial Institute", + "type": "Related", + "id": "https://ror.org/0573j3j10" + } + ], + "addresses": [ + { + "lat": 16.41639, + "lng": 120.59306, + "state": null, + "state_code": null, + "city": "Baguio City", + "geonames_city": { + "id": 1728930, + "city": "Baguio City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.slu.edu.ph" + ], + "aliases": [ + "St. Louis College", + "St. Louis School" + ], + "acronyms": [ + "SLU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saint_Louis_University_(Philippines)", + "labels": [ + { + "label": "Unibersidad ng San Luis", + "iso639": "tl" + } + ], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "GRID": { + "all": "grid.442911.b", + "preferred": "grid.442911.b" + }, + "ISNI": { + "all": [ + "0000 0001 0940 6304" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7401676" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04ka0vh05.json b/v1.52/v1/04ka0vh05.json new file mode 100644 index 000000000..09f17c842 --- /dev/null +++ b/v1.52/v1/04ka0vh05.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/04ka0vh05", + "name": "Instituto de Astrofísica de Andalucía", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Consejo Superior de Investigaciones Científicas", + "type": "Parent", + "id": "https://ror.org/02gfc7t72" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 37.18817, + "lng": -3.60667, + "state": null, + "state_code": null, + "city": "Granada", + "geonames_city": { + "id": 2517117, + "city": "Granada", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.iaa.csic.es" + ], + "aliases": [], + "acronyms": [ + "IAA", + "IAA-CSIC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Instituto_de_Astrof%C3%ADsica_de_Andaluc%C3%ADa", + "labels": [ + { + "label": "Institute of Astrophysics of Andalusia", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100020812" + ], + "preferred": "501100020812" + }, + "GRID": { + "all": "grid.450285.e", + "preferred": "grid.450285.e" + }, + "ISNI": { + "all": [ + "0000 0004 1793 7043" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6041634" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04kb0nk47.json b/v1.52/v1/04kb0nk47.json new file mode 100644 index 000000000..0377705ce --- /dev/null +++ b/v1.52/v1/04kb0nk47.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04kb0nk47", + "name": "Impaq International (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "American Institutes for Research", + "type": "Successor", + "id": "https://ror.org/00490n048" + } + ], + "addresses": [ + { + "lat": 39.24038, + "lng": -76.83942, + "state": null, + "state_code": null, + "city": "Columbia", + "geonames_city": { + "id": 4352053, + "city": "Columbia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://impaqint.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.427006.7", + "preferred": "grid.427006.7" + }, + "ISNI": { + "all": [ + "0000 0000 8755 1294" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30285903" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04kfz4b98.json b/v1.52/v1/04kfz4b98.json new file mode 100644 index 000000000..b6e7f572e --- /dev/null +++ b/v1.52/v1/04kfz4b98.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04kfz4b98", + "name": "Harbin Finance University", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.75, + "lng": 126.65, + "state": null, + "state_code": null, + "city": "Harbin", + "geonames_city": { + "id": 2037013, + "city": "Harbin", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hrbfu.edu.cn" + ], + "aliases": [ + "Harbin Institute of Finance", + "哈尔滨金融专科学校" + ], + "acronyms": [ + "哈金院" + ], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E5%93%88%E5%B0%94%E6%BB%A8%E9%87%91%E8%9E%8D%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "哈尔滨金融学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1761 5108" + ], + "preferred": "0000 0004 1761 5108" + }, + "Wikidata": { + "all": [ + "Q56271941" + ], + "preferred": "Q56271941" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04m15mz97.json b/v1.52/v1/04m15mz97.json new file mode 100644 index 000000000..6651465ae --- /dev/null +++ b/v1.52/v1/04m15mz97.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04m15mz97", + "name": "National Labor College", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.99067, + "lng": -77.02609, + "state": null, + "state_code": null, + "city": "Silver Spring", + "geonames_city": { + "id": 4369596, + "city": "Silver Spring", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nlc.edu/" + ], + "aliases": [], + "acronyms": [ + "NLC" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Labor_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.434835.d", + "preferred": "grid.434835.d" + }, + "ISNI": { + "all": [ + "0000 0004 0511 4082" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6973931" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04m69ya83.json b/v1.52/v1/04m69ya83.json new file mode 100644 index 000000000..b7ae9107d --- /dev/null +++ b/v1.52/v1/04m69ya83.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/04m69ya83", + "name": "Théâtre antique : textes, histoire et réception", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Toulouse - Jean Jaurès", + "type": "Parent", + "id": "https://ror.org/04ezk3x31" + }, + { + "label": "Université de Tours", + "type": "Parent", + "id": "https://ror.org/02wwzvj46" + }, + { + "label": "Université Jean Moulin Lyon III", + "type": "Parent", + "id": "https://ror.org/05b5c0584" + }, + { + "label": "Université de Rouen Normandie", + "type": "Parent", + "id": "https://ror.org/03nhjew95" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Nantes Université", + "type": "Parent", + "id": "https://ror.org/03gnr7b55" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "GDR Théâtre antique : textes, histoire et réception", + "Groupement de Recherche Théâtre antique : textes, histoire et réception" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q123694954" + ], + "preferred": "Q123694954" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04mfpmj78.json b/v1.52/v1/04mfpmj78.json new file mode 100644 index 000000000..80740d059 --- /dev/null +++ b/v1.52/v1/04mfpmj78.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/04mfpmj78", + "name": "K.S. Rangasamy College of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Anna University, Chennai", + "type": "Related", + "id": "https://ror.org/01qhf1r47" + }, + { + "label": "KS Rangasamy College of Arts and Science", + "type": "Related", + "id": "https://ror.org/05957a955" + } + ], + "addresses": [ + { + "lat": 11.22126, + "lng": 78.16524, + "state": null, + "state_code": null, + "city": "Namakkal", + "geonames_city": { + "id": 1262039, + "city": "Namakkal", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ksrct.ac.in" + ], + "aliases": [ + "K.S.R. College of Technology" + ], + "acronyms": [ + "KSRCT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/K._S._Rangasamy_College_of_Technology", + "labels": [ + { + "label": "கே. எஸ். ரங்கசாமி தொழில்நுட்பக் கல்லூரி", + "iso639": "hi" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 8743 5269" + ], + "preferred": "0000 0000 8743 5269" + }, + "Wikidata": { + "all": [ + "Q6323970" + ], + "preferred": "Q6323970" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04mjzst24.json b/v1.52/v1/04mjzst24.json new file mode 100644 index 000000000..33bd2fe5c --- /dev/null +++ b/v1.52/v1/04mjzst24.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04mjzst24", + "name": "Colfuturo", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.colfuturo.org/english" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100010459" + ], + "preferred": "501100010459" + }, + "GRID": { + "all": "grid.484037.c", + "preferred": "grid.484037.c" + }, + "ISNI": { + "all": [ + "0000 0004 7777 467X" + ], + "preferred": "0000 0004 7777 467X" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04mn0nr69.json b/v1.52/v1/04mn0nr69.json new file mode 100644 index 000000000..55e177e6a --- /dev/null +++ b/v1.52/v1/04mn0nr69.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/04mn0nr69", + "name": "Interactions, Corpus, Apprentissages, Représentations", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "École Centrale de Lyon", + "type": "Parent", + "id": "https://ror.org/05s6rge65" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://icar.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "ICAR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.469454.e", + "preferred": "grid.469454.e" + }, + "ISNI": { + "all": [ + "0000 0000 8952 2454" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04mqc6b03.json b/v1.52/v1/04mqc6b03.json new file mode 100644 index 000000000..e98a96b6c --- /dev/null +++ b/v1.52/v1/04mqc6b03.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/04mqc6b03", + "name": "Ministry of Agriculture, Fisheries and Food", + "email_address": null, + "ip_addresses": [], + "established": 1867, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Institut de Technologie Agroalimentaire", + "type": "Child", + "id": "https://ror.org/038yc9530" + } + ], + "addresses": [ + { + "lat": 46.81228, + "lng": -71.21454, + "state": null, + "state_code": null, + "city": "Québec", + "geonames_city": { + "id": 6325494, + "city": "Québec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.mapaq.gouv.qc.ca/fr/Pages/Accueil.aspx" + ], + "aliases": [], + "acronyms": [ + "MAPAQ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Agriculture,_Fisheries_and_Food_(Quebec)", + "labels": [ + { + "label": "Ministre de l'Agriculture, des Pêcheries et de l'Alimentation", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008777", + "501100020637" + ], + "preferred": "501100020637" + }, + "GRID": { + "all": "grid.410550.5", + "preferred": "grid.410550.5" + }, + "ISNI": { + "all": [ + "0000 0001 0130 3327" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3315185" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04msyas67.json b/v1.52/v1/04msyas67.json new file mode 100644 index 000000000..f74671b39 --- /dev/null +++ b/v1.52/v1/04msyas67.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04msyas67", + "name": "Onondaga Community College", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 43.04812, + "lng": -76.14742, + "state": null, + "state_code": null, + "city": "Syracuse", + "geonames_city": { + "id": 5140405, + "city": "Syracuse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sunyocc.edu" + ], + "aliases": [ + "SUNY Onondaga Community College", + "State University of New York Onondaga Community College" + ], + "acronyms": [ + "OCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Onondaga_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.447623.0", + "preferred": "grid.447623.0" + }, + "ISNI": { + "all": [ + "0000 0000 9068 6288" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7094484" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04mxhn923.json b/v1.52/v1/04mxhn923.json new file mode 100644 index 000000000..56ffed126 --- /dev/null +++ b/v1.52/v1/04mxhn923.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/04mxhn923", + "name": "Kansas Geological Survey", + "email_address": null, + "ip_addresses": [], + "established": 1889, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Kansas", + "type": "Parent", + "id": "https://ror.org/001tmjg57" + } + ], + "addresses": [ + { + "lat": 42.70704, + "lng": -71.16311, + "state": null, + "state_code": null, + "city": "Lawrence", + "geonames_city": { + "id": 4941720, + "city": "Lawrence", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kgs.ku.edu" + ], + "aliases": [], + "acronyms": [ + "KGS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kansas_Geological_Survey", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0495 1989" + ], + "preferred": "0000 0004 0495 1989" + }, + "Wikidata": { + "all": [ + "Q6364985" + ], + "preferred": "Q6364985" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04nmj9827.json b/v1.52/v1/04nmj9827.json new file mode 100644 index 000000000..bd441fb51 --- /dev/null +++ b/v1.52/v1/04nmj9827.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/04nmj9827", + "name": "Institut Européen des Membranes", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "Parent", + "id": "https://ror.org/03sgyqj04" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://iem.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "IEM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "European Institute for Membranes", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100021523" + ], + "preferred": "501100021523" + }, + "GRID": { + "all": "grid.461901.b", + "preferred": "grid.461901.b" + }, + "ISNI": { + "all": [ + "0000 0001 2194 0104" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04p5baq95.json b/v1.52/v1/04p5baq95.json new file mode 100644 index 000000000..7859560db --- /dev/null +++ b/v1.52/v1/04p5baq95.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04p5baq95", + "name": "Mattel Children's Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "UCLA Health", + "type": "Parent", + "id": "https://ror.org/01d88se56" + }, + { + "label": "University of California, Los Angeles", + "type": "Related", + "id": "https://ror.org/046rm7j60" + } + ], + "addresses": [ + { + "lat": 34.05223, + "lng": -118.24368, + "state": null, + "state_code": null, + "city": "Los Angeles", + "geonames_city": { + "id": 5368361, + "city": "Los Angeles", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uclahealth.org/mattel/Pages/default.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018498" + ], + "preferred": "100018498" + }, + "GRID": { + "all": "grid.416593.c", + "preferred": "grid.416593.c" + }, + "ISNI": { + "all": [ + "0000 0004 0434 9920" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04pcmb734.json b/v1.52/v1/04pcmb734.json new file mode 100644 index 000000000..1c4672277 --- /dev/null +++ b/v1.52/v1/04pcmb734.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/04pcmb734", + "name": "Mildred Elley College", + "email_address": null, + "ip_addresses": [], + "established": 1917, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.65258, + "lng": -73.75623, + "state": null, + "state_code": null, + "city": "Albany", + "geonames_city": { + "id": 5106834, + "city": "Albany", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mildred-elley.edu" + ], + "aliases": [ + "Mildred Elley", + "Mildred Elley Business School" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mildred_Elley", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0526 0928" + ], + "preferred": "0000 0004 0526 0928" + }, + "Wikidata": { + "all": [ + "Q6850968" + ], + "preferred": "Q6850968" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04pw1zg89.json b/v1.52/v1/04pw1zg89.json new file mode 100644 index 000000000..673d88be1 --- /dev/null +++ b/v1.52/v1/04pw1zg89.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/04pw1zg89", + "name": "PARADIM", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Science Foundation", + "type": "Parent", + "id": "https://ror.org/021nxhr62" + }, + { + "label": "Cornell University", + "type": "Parent", + "id": "https://ror.org/05bnh6r87" + }, + { + "label": "Johns Hopkins University", + "type": "Parent", + "id": "https://ror.org/00za53h95" + } + ], + "addresses": [ + { + "lat": 39.29038, + "lng": -76.61219, + "state": null, + "state_code": null, + "city": "Baltimore", + "geonames_city": { + "id": 4347778, + "city": "Baltimore", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://paradim.org" + ], + "aliases": [ + "PARADIM Materials Innovation Platform", + "Platform for the Accelerated Realization, Analysis, and Discovery of Interface Materials" + ], + "acronyms": [ + "PARADIM MIP" + ], + "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.52/v1/04q5r0746.json b/v1.52/v1/04q5r0746.json new file mode 100644 index 000000000..a279f3b7b --- /dev/null +++ b/v1.52/v1/04q5r0746.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/04q5r0746", + "name": "Liverpool Womens NHS Foundation Trust", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Liverpool Women's Hospital", + "type": "Child", + "id": "https://ror.org/00eysw063" + }, + { + "label": "Liverpool John Moores University", + "type": "Related", + "id": "https://ror.org/04zfme737" + }, + { + "label": "University of Liverpool", + "type": "Related", + "id": "https://ror.org/04xs57h96" + } + ], + "addresses": [ + { + "lat": 53.41058, + "lng": -2.97794, + "state": null, + "state_code": null, + "city": "Liverpool", + "geonames_city": { + "id": 2644210, + "city": "Liverpool", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.liverpoolwomens.nhs.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Liverpool_Women%27s_NHS_Foundation_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015909" + ], + "preferred": "100015909" + }, + "GRID": { + "all": "grid.419317.9", + "preferred": "grid.419317.9" + }, + "ISNI": { + "all": [ + "0000 0004 0421 1251" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6658631" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04qa46285.json b/v1.52/v1/04qa46285.json new file mode 100644 index 000000000..61a43e01e --- /dev/null +++ b/v1.52/v1/04qa46285.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04qa46285", + "name": "Dietrich Bonhoeffer Klinikum", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.56414, + "lng": 13.27532, + "state": null, + "state_code": null, + "city": "Neubrandenburg", + "geonames_city": { + "id": 2866135, + "city": "Neubrandenburg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dbknb.de" + ], + "aliases": [], + "acronyms": [ + "DBK" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.491786.5", + "preferred": "grid.491786.5" + }, + "ISNI": { + "all": [ + "0000 0001 0211 9062" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04qj6xg77.json b/v1.52/v1/04qj6xg77.json new file mode 100644 index 000000000..df65265b5 --- /dev/null +++ b/v1.52/v1/04qj6xg77.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04qj6xg77", + "name": "Healthcare Quality Improvement Partnership", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.hqip.org.uk/" + ], + "aliases": [], + "acronyms": [ + "HQIP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Healthcare_Quality_Improvement_Partnership", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100024396" + ], + "preferred": "501100024396" + }, + "GRID": { + "all": "grid.484216.d", + "preferred": "grid.484216.d" + }, + "ISNI": { + "all": [ + "0000 0000 9151 842X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5691234" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04qmjst50.json b/v1.52/v1/04qmjst50.json new file mode 100644 index 000000000..c4562e885 --- /dev/null +++ b/v1.52/v1/04qmjst50.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04qmjst50", + "name": "D2iA - Dynamiques, Interactions et Interculturalité en Asie", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de La Rochelle", + "type": "Parent", + "id": "https://ror.org/04mv1z119" + }, + { + "label": "Université Bordeaux Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + } + ], + "addresses": [ + { + "lat": 44.80565, + "lng": -0.6324, + "state": null, + "state_code": null, + "city": "Pessac", + "geonames_city": { + "id": 2987805, + "city": "Pessac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://d2ia.fr" + ], + "aliases": [ + "Dynamiques, intéractions, interculturalité asiatiques" + ], + "acronyms": [ + "D2iA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q119438986" + ], + "preferred": "Q119438986" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04qp98b92.json b/v1.52/v1/04qp98b92.json new file mode 100644 index 000000000..2fb89b45f --- /dev/null +++ b/v1.52/v1/04qp98b92.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/04qp98b92", + "name": "Iren Centro", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": -11.91762, + "lng": -75.31401, + "state": null, + "state_code": null, + "city": "Concepción", + "geonames_city": { + "id": 3942548, + "city": "Concepción", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://portal.irencentro.gob.pe" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Instituto Regional De Enfermedades Neoplásicas Del Centro", + "iso639": "es" + } + ], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/04r17kf39.json b/v1.52/v1/04r17kf39.json new file mode 100644 index 000000000..97e1991f7 --- /dev/null +++ b/v1.52/v1/04r17kf39.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/04r17kf39", + "name": "New York State College of Veterinary Medicine", + "email_address": null, + "ip_addresses": [], + "established": 1894, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cornell University", + "type": "Parent", + "id": "https://ror.org/05bnh6r87" + }, + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.44063, + "lng": -76.49661, + "state": null, + "state_code": null, + "city": "Ithaca", + "geonames_city": { + "id": 5122432, + "city": "Ithaca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vet.cornell.edu/" + ], + "aliases": [ + "Cornell University College of Veterinary Medicine" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cornell_University_College_of_Veterinary_Medicine", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.507859.6", + "preferred": "grid.507859.6" + }, + "ISNI": { + "all": [ + "0000 0004 0609 3519" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q50809363" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04rcxhq50.json b/v1.52/v1/04rcxhq50.json new file mode 100644 index 000000000..4d6f4be65 --- /dev/null +++ b/v1.52/v1/04rcxhq50.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04rcxhq50", + "name": "Novartis (Italy)", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Novartis (Switzerland)", + "type": "Parent", + "id": "https://ror.org/02f9zrr09" + } + ], + "addresses": [ + { + "lat": 45.46427, + "lng": 9.18951, + "state": null, + "state_code": null, + "city": "Milan", + "geonames_city": { + "id": 3173435, + "city": "Milan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.novartis.it/" + ], + "aliases": [ + "Novartis Farma SpA Italy" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Novartis", + "labels": [ + { + "label": "Novartis Farma S.p.A.", + "iso639": null + }, + { + "label": "Novartis Italia", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.15585.3c", + "preferred": "grid.15585.3c" + }, + "Wikidata": { + "all": [ + "Q29123437" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04rre2k21.json b/v1.52/v1/04rre2k21.json new file mode 100644 index 000000000..7016e90f0 --- /dev/null +++ b/v1.52/v1/04rre2k21.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04rre2k21", + "name": "Tommy's", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tommys.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100000306", + "501100009324", + "501100021274" + ], + "preferred": "501100021274" + }, + "GRID": { + "all": "grid.468514.a", + "preferred": "grid.468514.a" + }, + "ISNI": { + "all": [ + "0000 0004 0623 6014" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04rtjaj74.json b/v1.52/v1/04rtjaj74.json new file mode 100644 index 000000000..ea24cc0fb --- /dev/null +++ b/v1.52/v1/04rtjaj74.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04rtjaj74", + "name": "Health Data Research UK", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.hdruk.ac.uk" + ], + "aliases": [], + "acronyms": [ + "HDRUK" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023699" + ], + "preferred": "501100023699" + }, + "GRID": { + "all": "grid.507332.0", + "preferred": "grid.507332.0" + }, + "ISNI": { + "all": [ + "0000 0004 9548 940X" + ], + "preferred": "0000 0004 9548 940X" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04sjchr03.json b/v1.52/v1/04sjchr03.json new file mode 100644 index 000000000..cbdfac448 --- /dev/null +++ b/v1.52/v1/04sjchr03.json @@ -0,0 +1,154 @@ +{ + "id": "https://ror.org/04sjchr03", + "name": "Université Laval", + "email_address": null, + "ip_addresses": [], + "established": 1663, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Northern Studies", + "type": "Child", + "id": "https://ror.org/01q8ytn75" + }, + { + "label": "Amundsen Science", + "type": "Child", + "id": "https://ror.org/02s3xv195" + }, + { + "label": "Sentinelle Nord", + "type": "Child", + "id": "https://ror.org/03tzsdk41" + }, + { + "label": "CentrEau - Quebec Water Management Research Centre", + "type": "Child", + "id": "https://ror.org/03wx0vn75" + }, + { + "label": "Centre hospitalier universitaire de Québec", + "type": "Related", + "id": "https://ror.org/006a7pj43" + }, + { + "label": "Centre hospitalier de l'Université Laval", + "type": "Related", + "id": "https://ror.org/041v96n47" + }, + { + "label": "Hôtel-Dieu de Québec", + "type": "Related", + "id": "https://ror.org/034sbqc84" + }, + { + "label": "Institut Universitaire de Cardiologie et de Pneumologie de Québec", + "type": "Related", + "id": "https://ror.org/03gf7z214" + }, + { + "label": "Institut Universitaire en Santé Mentale de Québec", + "type": "Related", + "id": "https://ror.org/03mt5nv96" + }, + { + "label": "Érudit", + "type": "Related", + "id": "https://ror.org/05xay3m79" + }, + { + "label": "fabriqueREL", + "type": "Related", + "id": "https://ror.org/0155edt85" + } + ], + "addresses": [ + { + "lat": 46.81228, + "lng": -71.21454, + "state": null, + "state_code": null, + "city": "Québec", + "geonames_city": { + "id": 6325494, + "city": "Québec", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ulaval.ca" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Laval_University", + "labels": [ + { + "label": "Laval University", + "iso639": "en" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007867", + "100008082" + ], + "preferred": "100007867" + }, + "GRID": { + "all": "grid.23856.3a", + "preferred": "grid.23856.3a" + }, + "ISNI": { + "all": [ + "0000 0004 1936 8390" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1067935" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04sqpc563.json b/v1.52/v1/04sqpc563.json new file mode 100644 index 000000000..d8ea698b0 --- /dev/null +++ b/v1.52/v1/04sqpc563.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04sqpc563", + "name": "Anglian Water Services (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.33049, + "lng": -0.18651, + "state": null, + "state_code": null, + "city": "Huntingdon", + "geonames_city": { + "id": 2646393, + "city": "Huntingdon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.anglianwater.co.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Anglian_Water", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015289" + ], + "preferred": "100015289" + }, + "GRID": { + "all": "grid.422673.6", + "preferred": "grid.422673.6" + }, + "ISNI": { + "all": [ + "0000 0004 0509 4069" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4763422" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04sw7nr96.json b/v1.52/v1/04sw7nr96.json new file mode 100644 index 000000000..127f157c2 --- /dev/null +++ b/v1.52/v1/04sw7nr96.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04sw7nr96", + "name": "Instituto de Astrofísica de La Plata", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centro Científico Tecnológico - La Plata", + "type": "Parent", + "id": "https://ror.org/03qan4b12" + }, + { + "label": "Universidad Nacional de La Plata", + "type": "Parent", + "id": "https://ror.org/01tjs6929" + } + ], + "addresses": [ + { + "lat": -34.92145, + "lng": -57.95453, + "state": null, + "state_code": null, + "city": "La Plata", + "geonames_city": { + "id": 3432043, + "city": "La Plata", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ialp.fcaglp.unlp.edu.ar" + ], + "aliases": [ + "Inst Ast La Plata", + "Instituto de Astrofisica La Plata" + ], + "acronyms": [ + "IALP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute of Astrophysics La Plata", + "iso639": "en" + } + ], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1773 8183" + ], + "preferred": "0000 0004 1773 8183" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04szabx38.json b/v1.52/v1/04szabx38.json new file mode 100644 index 000000000..4249e315e --- /dev/null +++ b/v1.52/v1/04szabx38.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/04szabx38", + "name": "Institut de Biologie Structurale", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Institut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ibs.fr" + ], + "aliases": [ + "Institut de Biologie Structurale Jean-Pierre Ebel" + ], + "acronyms": [ + "IBS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.418192.7", + "preferred": "grid.418192.7" + }, + "ISNI": { + "all": [ + "0000 0004 0641 5776" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q21619458" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04tj63d06.json b/v1.52/v1/04tj63d06.json new file mode 100644 index 000000000..6a78211ff --- /dev/null +++ b/v1.52/v1/04tj63d06.json @@ -0,0 +1,162 @@ +{ + "id": "https://ror.org/04tj63d06", + "name": "North Carolina State University", + "email_address": null, + "ip_addresses": [], + "established": 1887, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Dielectrics & Piezoelectrics", + "type": "Child", + "id": "https://ror.org/04nv7tt16" + }, + { + "label": "North Carolina Sea Grant", + "type": "Child", + "id": "https://ror.org/01kgxxx41" + }, + { + "label": "North Carolina Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/058465397" + }, + { + "label": "UNC/NCSU Joint Department of Biomedical Engineering", + "type": "Child", + "id": "https://ror.org/03hakdk41" + }, + { + "label": "Triangle Center for Evolutionary Medicine", + "type": "Child", + "id": "https://ror.org/02yjqwr70" + }, + { + "label": "Southeast Climate Adaptation Science Center", + "type": "Child", + "id": "https://ror.org/009hmnr85" + }, + { + "label": "Renaissance Computing Institute", + "type": "Child", + "id": "https://ror.org/01s91ey96" + }, + { + "label": "The Nonwovens Institute", + "type": "Child", + "id": "https://ror.org/0568g2481" + }, + { + "label": "University of North Carolina System", + "type": "Parent", + "id": "https://ror.org/0566a8c54" + }, + { + "label": "North Carolina State Climate Office", + "type": "Child", + "id": "https://ror.org/03mpd4h52" + } + ], + "addresses": [ + { + "lat": 35.7721, + "lng": -78.63861, + "state": null, + "state_code": null, + "city": "Raleigh", + "geonames_city": { + "id": 4487042, + "city": "Raleigh", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ncsu.edu/" + ], + "aliases": [], + "acronyms": [ + "NCSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/North_Carolina_State_University", + "labels": [ + { + "label": "Universidad Estatal de Carolina del Norte", + "iso639": "es" + }, + { + "label": "Université d'État de caroline du nord", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007703", + "100005904", + "100006446", + "100010541", + "100009591", + "100003203", + "100002260", + "100005568", + "100011490" + ], + "preferred": "100007703" + }, + "GRID": { + "all": "grid.40803.3f", + "preferred": "grid.40803.3f" + }, + "ISNI": { + "all": [ + "0000 0001 2173 6074" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1132346" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04v54gj93.json b/v1.52/v1/04v54gj93.json new file mode 100644 index 000000000..f5a345da9 --- /dev/null +++ b/v1.52/v1/04v54gj93.json @@ -0,0 +1,140 @@ +{ + "id": "https://ror.org/04v54gj93", + "name": "Cambridge University Hospitals NHS Foundation Trust", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Addenbrooke's Hospital", + "type": "Child", + "id": "https://ror.org/055vbxf86" + }, + { + "label": "NIHR Cambridge Dementia Biomedical Research Unit", + "type": "Child", + "id": "https://ror.org/02d2g0205" + }, + { + "label": "Rosie Hospital", + "type": "Child", + "id": "https://ror.org/01ncx3917" + }, + { + "label": "Royston Hospital", + "type": "Child", + "id": "https://ror.org/04d87jn14" + }, + { + "label": "Saffron Walden Community Hospital", + "type": "Child", + "id": "https://ror.org/01t881g83" + }, + { + "label": "Wellcome/MRC Institute of Metabolic Science", + "type": "Child", + "id": "https://ror.org/0264dxb48" + }, + { + "label": "NIHR Cambridge Biomedical Research Centre", + "type": "Child", + "id": "https://ror.org/05m8dr349" + }, + { + "label": "Addenbrooke's Charitable Trust", + "type": "Related", + "id": "https://ror.org/04ssevy49" + }, + { + "label": "Cambridge IVF", + "type": "Child", + "id": "https://ror.org/05x3amg60" + } + ], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cuh.org.uk/" + ], + "aliases": [], + "acronyms": [ + "CUH" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Cambridge_University_Hospitals_NHS_Foundation_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002926" + ], + "preferred": null + }, + "GRID": { + "all": "grid.24029.3d", + "preferred": "grid.24029.3d" + }, + "ISNI": { + "all": [ + "0000 0004 0383 8386" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5025595" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04vfs2w97.json b/v1.52/v1/04vfs2w97.json new file mode 100644 index 000000000..0c035dd85 --- /dev/null +++ b/v1.52/v1/04vfs2w97.json @@ -0,0 +1,472 @@ +{ + "id": "https://ror.org/04vfs2w97", + "name": "Université de Lorraine", + "email_address": null, + "ip_addresses": [], + "established": 1572, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Animal et Fonctionnalités des Produits Animaux", + "type": "Child", + "id": "https://ror.org/02ynmc580" + }, + { + "label": "Archives Henri-Poincaré - Philosophie et Recherches sur les Sciences et les Technologies", + "type": "Child", + "id": "https://ror.org/02fdf4056" + }, + { + "label": "Bureau d'Economie Théorique et Appliquée", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Centre d'Investigation Clinique Pierre Drouin", + "type": "Child", + "id": "https://ror.org/04ghtjd11" + }, + { + "label": "Centre de Recherches Pétrographiques et Géochimiques", + "type": "Child", + "id": "https://ror.org/011nqat45" + }, + { + "label": "Analyse et Traitement Informatique de la Langue Française", + "type": "Child", + "id": "https://ror.org/02cy9g557" + }, + { + "label": "Imagerie Adaptative Diagnostique et Interventionnelle", + "type": "Child", + "id": "https://ror.org/025mhc977" + }, + { + "label": "Dynamique des Génomes et Adaptation Microbienne", + "type": "Child", + "id": "https://ror.org/01gbppd30" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "Child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Groupe de Recherche en Énergie Électrique de Nancy", + "type": "Child", + "id": "https://ror.org/01kwx4m12" + }, + { + "label": "Ingénierie Moléculaire et Physiopathologie Articulaire", + "type": "Child", + "id": "https://ror.org/04yc2e502" + }, + { + "label": "Institut Jean Lamour", + "type": "Child", + "id": "https://ror.org/05k1smh27" + }, + { + "label": "Institut Élie Cartan de Lorraine", + "type": "Child", + "id": "https://ror.org/04rvw8791" + }, + { + "label": "Maison des sciences de l'homme Lorraine", + "type": "Child", + "id": "https://ror.org/01petg633" + }, + { + "label": "Interactions Arbres-Microorganismes", + "type": "Child", + "id": "https://ror.org/03c4rpa03" + }, + { + "label": "Laboratoire Interdisciplinaire des Environnements Continentaux", + "type": "Child", + "id": "https://ror.org/05je79696" + }, + { + "label": "Labex ARBRE", + "type": "Child", + "id": "https://ror.org/00gyb4719" + }, + { + "label": "Laboratoire Matériaux Optiques, Photonique et Systèmes", + "type": "Child", + "id": "https://ror.org/055swm364" + }, + { + "label": "Laboratoire Réactions et Génie des Procédés", + "type": "Child", + "id": "https://ror.org/00p6sn362" + }, + { + "label": "Laboratoire d'Energétique et de Mécanique Théorique et Appliquée", + "type": "Child", + "id": "https://ror.org/01pfter31" + }, + { + "label": "Laboratoire de Chimie Physique et Microbiologie pour l'Environnement", + "type": "Child", + "id": "https://ror.org/03nknpw16" + }, + { + "label": "Laboratoire de Conception Fabrication Commande", + "type": "Child", + "id": "https://ror.org/01xd0ys45" + }, + { + "label": "Laboratoire de Cristallographie, Résonance Magnétique et Modélisations", + "type": "Child", + "id": "https://ror.org/017je3b10" + }, + { + "label": "Laboratoire d'Étude des Microstructures et de Mécanique des Matériaux", + "type": "Child", + "id": "https://ror.org/01nyrrx14" + }, + { + "label": "Laboratoire Sols et Environnement", + "type": "Child", + "id": "https://ror.org/01e8etd40" + }, + { + "label": "Laboratoire Lorrain de Recherche en Informatique et ses Applications", + "type": "Child", + "id": "https://ror.org/02vnf0c38" + }, + { + "label": "Centre de Recherche en Automatique de Nancy", + "type": "Child", + "id": "https://ror.org/022r5hc56" + }, + { + "label": "Silva", + "type": "Child", + "id": "https://ror.org/01d5v2p67" + }, + { + "label": "Zone Atelier Moselle", + "type": "Child", + "id": "https://ror.org/016vxbe23" + }, + { + "label": "Centre Européen de Recherche en Economie Financière et Gestion des Entreprises", + "type": "Child", + "id": "https://ror.org/0106d5c37" + }, + { + "label": "Laboratoire Interuniversitaire des Sciences de l'Education et de la Communication", + "type": "Child", + "id": "https://ror.org/04n2vwk08" + }, + { + "label": "Laboratoire de Génie Informatique, de Production et de Maintenance", + "type": "Child", + "id": "https://ror.org/04xykxd72" + }, + { + "label": "Laboratoire Agronomie et Environnement", + "type": "Child", + "id": "https://ror.org/01dg9a450" + }, + { + "label": "GeoRessources", + "type": "Child", + "id": "https://ror.org/04mq2px33" + }, + { + "label": "Observatoire Terre et environnement de Lorraine", + "type": "Child", + "id": "https://ror.org/02cyw3861" + }, + { + "label": "Laboratoire de Chimie-Physique Macromoléculaire", + "type": "Child", + "id": "https://ror.org/0371yc337" + }, + { + "label": "Laboratoire Lorrain de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/020azc393" + }, + { + "label": "Laboratoire de Physique et Chimie Théoriques", + "type": "Child", + "id": "https://ror.org/02atkd403" + }, + { + "label": "Centre de Recherche sur les Médiations", + "type": "Child", + "id": "https://ror.org/04ev1zs55" + }, + { + "label": "Laboratoire d'Ingénierie des Biomolécules", + "type": "Child", + "id": "https://ror.org/03d28dw78" + }, + { + "label": "Laboratoire de Conception, Optimisation et Modélisation des Systèmes", + "type": "Child", + "id": "https://ror.org/04x6jg419" + }, + { + "label": "Cibles thérapeutiques, formulation et expertise préclinique du médicament", + "type": "Child", + "id": "https://ror.org/05adajg67" + }, + { + "label": "Défaillance Cardiovasculaire Aiguë et Chronique", + "type": "Child", + "id": "https://ror.org/05ft9wv42" + }, + { + "label": "Développement, Adaptation et Handicap", + "type": "Child", + "id": "https://ror.org/019c1xz73" + }, + { + "label": "Interactions Gène-Environnement en Physiopathologie Cardio-Vasculaire", + "type": "Child", + "id": "https://ror.org/01evjjx71" + }, + { + "label": "Nutrition-Génétique et Exposition aux Risques Environnementaux", + "type": "Child", + "id": "https://ror.org/053d03003" + }, + { + "label": "Stress, immunité, pathogènes", + "type": "Child", + "id": "https://ror.org/04f50n919" + }, + { + "label": "Interpsy", + "type": "Child", + "id": "https://ror.org/0495mzm65" + }, + { + "label": "Psychologie Ergonomique et Sociale pour l'Expérience Utilisateurs", + "type": "Child", + "id": "https://ror.org/018d4rr63" + }, + { + "label": "Laboratoire de Chimie et Physique - Approche Multi-échelle des Milieux Complexes", + "type": "Child", + "id": "https://ror.org/05yc49b49" + }, + { + "label": "Composés Alimentaires : Biofonctionnalités et risques Neurotoxiques", + "type": "Child", + "id": "https://ror.org/02vc99v03" + }, + { + "label": "Équipe de Recherche sur les Processus Innovatifs", + "type": "Child", + "id": "https://ror.org/01hntn815" + }, + { + "label": "Laboratoire d'Etude et de Recherche sur le Matériau Bois", + "type": "Child", + "id": "https://ror.org/01sp9jb48" + }, + { + "label": "Institut François Gény", + "type": "Child", + "id": "https://ror.org/05kjgf606" + }, + { + "label": "Institut de recherches sur l'évolution de la nation et de l'État", + "type": "Child", + "id": "https://ror.org/04gmrh438" + }, + { + "label": "Centre d'Etudes Germaniques Interculturelles de Lorraine", + "type": "Child", + "id": "https://ror.org/055yrx709" + }, + { + "label": "Centre de Recherche sur les Cultures et les Littératures Européennes", + "type": "Child", + "id": "https://ror.org/03hhwe765" + }, + { + "label": "Centre de Recherche en Géographie", + "type": "Child", + "id": "https://ror.org/03pz4q672" + }, + { + "label": "Centre de Recherche Universitaire Lorrain d’Histoire", + "type": "Child", + "id": "https://ror.org/00xngy573" + }, + { + "label": "Centre lorrain de recherches interdisciplinaires dans les domaines des littératures, des cultures et de la théologie", + "type": "Child", + "id": "https://ror.org/01e0n5141" + }, + { + "label": "Histoire et Cultures de l'Antiquité et du Moyen Âge", + "type": "Child", + "id": "https://ror.org/00wbse129" + }, + { + "label": "Interdisciplinarité dans les Etudes Anglophones", + "type": "Child", + "id": "https://ror.org/052k52s41" + }, + { + "label": "Littératures, Imaginaire, Sociétés", + "type": "Child", + "id": "https://ror.org/00mny5z95" + }, + { + "label": "Laboratoire lorrain de psychologie et neurosciences de la dynamique des comportements", + "type": "Child", + "id": "https://ror.org/00e8hwt93" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Adaptation, mesure et évaluation en santé. Approches interdisciplinaires", + "type": "Child", + "id": "https://ror.org/04dx32582" + }, + { + "label": "Centre Hospitalier Universitaire de Nancy", + "type": "Related", + "id": "https://ror.org/016ncsr12" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Centre de Recherche sur les Expertises, les Arts et les Transitions", + "type": "Child", + "id": "https://ror.org/047q8av65" + }, + { + "label": "Laboratoire de sociologie des Territoires, du travail, des âges et de la santé", + "type": "Child", + "id": "https://ror.org/01mq1e256" + } + ], + "addresses": [ + { + "lat": 48.68439, + "lng": 6.18496, + "state": null, + "state_code": null, + "city": "Nancy", + "geonames_city": { + "id": 2990999, + "city": "Nancy", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-lorraine.fr" + ], + "aliases": [], + "acronyms": [ + "UL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Lorraine", + "labels": [ + { + "label": "University of Lorraine", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008990" + ], + "preferred": null + }, + "GRID": { + "all": "grid.29172.3f", + "preferred": "grid.29172.3f" + }, + "ISNI": { + "all": [ + "0000 0001 2194 6418" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4173330", + "Q1132955", + "Q1465237" + ], + "preferred": "Q4173330" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04w07sc25.json b/v1.52/v1/04w07sc25.json new file mode 100644 index 000000000..78c273ba3 --- /dev/null +++ b/v1.52/v1/04w07sc25.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/04w07sc25", + "name": "Sciences pour L’Œnologie", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "Parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://spo.montpellier.hub.inrae.fr" + ], + "aliases": [], + "acronyms": [ + "SPO", + "UMR SPO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503407.5", + "preferred": "grid.503407.5" + }, + "ISNI": { + "all": [ + "0000 0004 0445 8043" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51780435" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04wedba92.json b/v1.52/v1/04wedba92.json new file mode 100644 index 000000000..b295bf4fd --- /dev/null +++ b/v1.52/v1/04wedba92.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/04wedba92", + "name": "Shell (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1912, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Shell (Netherlands)", + "type": "Parent", + "id": "https://ror.org/00b5m4j81" + } + ], + "addresses": [ + { + "lat": 29.76328, + "lng": -95.36327, + "state": null, + "state_code": null, + "city": "Houston", + "geonames_city": { + "id": 4699066, + "city": "Houston", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.shell.us/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Shell_Oil_Company", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100011092", + "100013731" + ], + "preferred": "100013731" + }, + "GRID": { + "all": "grid.419137.9", + "preferred": "grid.419137.9" + }, + "ISNI": { + "all": [ + "0000 0004 0519 2857" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3240764" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04wez5e68.json b/v1.52/v1/04wez5e68.json new file mode 100644 index 000000000..1d47c1f3b --- /dev/null +++ b/v1.52/v1/04wez5e68.json @@ -0,0 +1,187 @@ +{ + "id": "https://ror.org/04wez5e68", + "name": "Université Paris 8", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de recherches sociologiques et politiques de Paris", + "type": "Child", + "id": "https://ror.org/04jb47e97" + }, + { + "label": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "type": "Child", + "id": "https://ror.org/03p76m698" + }, + { + "label": "Laboratoire Analyse, Géométrie et Applications", + "type": "Child", + "id": "https://ror.org/018nzqy79" + }, + { + "label": "Laboratoire Cognitions Humaine et Artificielle", + "type": "Child", + "id": "https://ror.org/02k8f5n40" + }, + { + "label": "Laboratoire Dynamiques Sociales et Recomposition des Espaces", + "type": "Child", + "id": "https://ror.org/045r56524" + }, + { + "label": "Laboratoire Architecture Ville Urbanisme Environnement", + "type": "Child", + "id": "https://ror.org/01dqmj897" + }, + { + "label": "Structures Formelles du Langage", + "type": "Child", + "id": "https://ror.org/00nrven85" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Centre d’histoire des sociétés Médiévales et Modernes", + "type": "Child", + "id": "https://ror.org/0014xh077" + }, + { + "label": "Laboratoire Paragraphe", + "type": "Child", + "id": "https://ror.org/00mgd1d10" + }, + { + "label": "Laboratoire Parisien de Psychologie Sociale", + "type": "Child", + "id": "https://ror.org/05xrx2377" + }, + { + "label": "Fonctionnement et dysfonctionnement cognitifs: les âges de la vie", + "type": "Child", + "id": "https://ror.org/051n2s460" + }, + { + "label": "Laboratoire d'études de genre et de sexualité", + "type": "Child", + "id": "https://ror.org/005w2mm89" + }, + { + "label": "Laboratoire Interuniversitaire Expérience, Ressources culturelles, Education", + "type": "Child", + "id": "https://ror.org/0127n6542" + }, + { + "label": "Centre interdisciplinaire de recherche \"Culture, éducation, formation, travail\"", + "type": "Child", + "id": "https://ror.org/0389fzc60" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "Child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "Child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Campus Condorcet", + "type": "Related", + "id": "https://ror.org/00cd48p72" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.univ-paris8.fr" + ], + "aliases": [ + "University of Paris VIII", + "Université Paris 8 Vincennes - Saint-Denis", + "Université Paris-VIII-Vincennes-Saint-Denis", + "Université de Paris-VIII" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Paris_8_University", + "labels": [ + { + "label": "Paris 8 University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.15878.33", + "preferred": "grid.15878.33" + }, + "ISNI": { + "all": [ + "0000 0001 2110 7200" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1194988" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04wk1rj64.json b/v1.52/v1/04wk1rj64.json new file mode 100644 index 000000000..0171aded5 --- /dev/null +++ b/v1.52/v1/04wk1rj64.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/04wk1rj64", + "name": "Bioland e.V.", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.98419, + "lng": 8.2791, + "state": null, + "state_code": null, + "city": "Mainz", + "geonames_city": { + "id": 2874225, + "city": "Mainz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bioland.de" + ], + "aliases": [ + "Bioland", + "Bioland Verband für organisch-biologischen Landbau e.V." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q864442" + ], + "preferred": "Q864442" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04wsqd844.json b/v1.52/v1/04wsqd844.json new file mode 100644 index 000000000..7333b0749 --- /dev/null +++ b/v1.52/v1/04wsqd844.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/04wsqd844", + "name": "Direction Générale de l'Armement", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministère des Armées", + "type": "Parent", + "id": "https://ror.org/025er3q23" + }, + { + "label": "DGA Techniques aérospatiales", + "type": "Child", + "id": "https://ror.org/02q398w70" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.defense.gouv.fr/dga" + ], + "aliases": [], + "acronyms": [ + "DGA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Direction_g%C3%A9n%C3%A9rale_de_l%27armement", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006021" + ], + "preferred": "501100006021" + }, + "GRID": { + "all": "grid.484080.0", + "preferred": "grid.484080.0" + }, + "ISNI": { + "all": [ + "0000 0001 0671 8206" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q3029559" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04x7ec535.json b/v1.52/v1/04x7ec535.json new file mode 100644 index 000000000..818c6adb9 --- /dev/null +++ b/v1.52/v1/04x7ec535.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04x7ec535", + "name": "BioCampus Montpellier", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.biocampus.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "BCM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780898" + ], + "preferred": "Q51780898" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04xgzv028.json b/v1.52/v1/04xgzv028.json new file mode 100644 index 000000000..d81bec177 --- /dev/null +++ b/v1.52/v1/04xgzv028.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04xgzv028", + "name": "Cooperative Institute for Great Lakes Research", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Michigan–Ann Arbor", + "type": "Parent", + "id": "https://ror.org/00jmfr291" + }, + { + "label": "NOAA Great Lakes Environmental Research Laboratory", + "type": "Parent", + "id": "https://ror.org/01jeee804" + } + ], + "addresses": [ + { + "lat": 42.27756, + "lng": -83.74088, + "state": null, + "state_code": null, + "city": "Ann Arbor", + "geonames_city": { + "id": 4984247, + "city": "Ann Arbor", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ciglr.seas.umich.edu" + ], + "aliases": [ + "Cooperative Institute for Limnology and Ecosystems Research" + ], + "acronyms": [ + "CIGLR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cooperative_Institute_for_Great_Lakes_Research", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100022414" + ], + "preferred": "100022414" + }, + "Wikidata": { + "all": [ + "Q5167898" + ], + "preferred": "Q5167898" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/04xsrsp28.json b/v1.52/v1/04xsrsp28.json new file mode 100644 index 000000000..315ce0c35 --- /dev/null +++ b/v1.52/v1/04xsrsp28.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04xsrsp28", + "name": "King's Fertility", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Fetal Medicine Foundation", + "type": "Related", + "id": "https://ror.org/0261b7b91" + }, + { + "label": "King's College Hospital", + "type": "Parent", + "id": "https://ror.org/044nptt90" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kingsfertility.co.uk" + ], + "aliases": [], + "acronyms": [], + "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.52/v1/04y9m7a06.json b/v1.52/v1/04y9m7a06.json new file mode 100644 index 000000000..00a748f53 --- /dev/null +++ b/v1.52/v1/04y9m7a06.json @@ -0,0 +1,73 @@ +{ + "id": "https://ror.org/04y9m7a06", + "name": "Društvo lekara Vojvodine", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.25167, + "lng": 19.83694, + "state": null, + "state_code": null, + "city": "Novi Sad", + "geonames_city": { + "id": 3194360, + "city": "Novi Sad", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dlv.org.rs" + ], + "aliases": [ + "Друштво Лекара Војводине Српског Лекарског Друштва" + ], + "acronyms": [ + "DLV" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/04yqcxp07.json b/v1.52/v1/04yqcxp07.json new file mode 100644 index 000000000..8a120c2fb --- /dev/null +++ b/v1.52/v1/04yqcxp07.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/04yqcxp07", + "name": "Quantum Source Labs Ltd (Israel)", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 31.92933, + "lng": 34.79868, + "state": null, + "state_code": null, + "city": "Ness Ziona", + "geonames_city": { + "id": 294074, + "city": "Ness Ziona", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.qs-labs.com" + ], + "aliases": [ + "QS Labs", + "Quantum Source Labs", + "קוואנטום סורס לאבס בע\"מ" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Quantum Source Labs Ltd", + "iso639": "en" + } + ], + "country": { + "country_name": "Israel", + "country_code": "IL" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/04zmssz18.json b/v1.52/v1/04zmssz18.json new file mode 100644 index 000000000..a7357aeba --- /dev/null +++ b/v1.52/v1/04zmssz18.json @@ -0,0 +1,288 @@ +{ + "id": "https://ror.org/04zmssz18", + "name": "École Normale Supérieure de Lyon", + "email_address": null, + "ip_addresses": [], + "established": 1880, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Max Weber", + "type": "Child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Education, Cultures, Politiques", + "type": "Child", + "id": "https://ror.org/037xc1874" + }, + { + "label": "Environnement, ville, société", + "type": "Child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Equipe de recherche de Lyon en Sciences de l'Information et de la Communication", + "type": "Child", + "id": "https://ror.org/04y24xj84" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "Child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Histoire et Sources des Mondes Antiques", + "type": "Child", + "id": "https://ror.org/01yx7av22" + }, + { + "label": "Histoire, Archéologie, Littératures des Mondes Chrétiens et Musulmans Médiévaux", + "type": "Child", + "id": "https://ror.org/05mqwtr17" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "Child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "Child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "Child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Interactions, Corpus, Apprentissages, Représentations", + "type": "Child", + "id": "https://ror.org/04mn0nr69" + }, + { + "label": "Centre International de Recherche en Infectiologie", + "type": "Child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "Child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Chimie", + "type": "Child", + "id": "https://ror.org/02gaw1s20" + }, + { + "label": "Laboratoire de Physique de l'ENS de Lyon", + "type": "Child", + "id": "https://ror.org/00w5ay796" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "Child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "Child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire de Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/0453rk787" + }, + { + "label": "Laboratoire de l'Informatique du Parallélisme", + "type": "Child", + "id": "https://ror.org/04msnz457" + }, + { + "label": "Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles", + "type": "Child", + "id": "https://ror.org/04rkh0096" + }, + { + "label": "Institut d'Asie Orientale", + "type": "Child", + "id": "https://ror.org/007dy3y92" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "Child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "Child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Centre Européen de Résonance Magnétique Nucléaire A Très Hauts Champs", + "type": "Child", + "id": "https://ror.org/00j29pk38" + }, + { + "label": "Triangle", + "type": "Child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Unité de Mathématiques Pures et Appliquées", + "type": "Child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Virologie et Pathologies Humaines", + "type": "Child", + "id": "https://ror.org/031xg0236" + }, + { + "label": "Center for Economic Research on Governance, Inequality and Conflict", + "type": "Child", + "id": "https://ror.org/055gja518" + }, + { + "label": "Sciences, Société, Historicité, Éducation et Pratiques", + "type": "Child", + "id": "https://ror.org/04cre2h49" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "Child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "Child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Centre de Recherche Astrophysique de Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Observatoire de Lyon", + "type": "Child", + "id": "https://ror.org/03j307b25" + }, + { + "label": "Université de Lyon", + "type": "Parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ens-lyon.eu/ecole-normale-superieure-de-lyon-accueil-77247.kjsp" + ], + "aliases": [ + "ENS Lyon", + "Normale Sup' Lyon" + ], + "acronyms": [ + "ENSL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure_de_Lyon", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100018692" + ], + "preferred": "501100018692" + }, + "GRID": { + "all": "grid.15140.31", + "preferred": "grid.15140.31" + }, + "ISNI": { + "all": [ + "0000 0001 2175 9188" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q10159" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05079x435.json b/v1.52/v1/05079x435.json new file mode 100644 index 000000000..2088906d0 --- /dev/null +++ b/v1.52/v1/05079x435.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/05079x435", + "name": "Maison des Sciences de l'Homme Paris Nord", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Sorbonne Paris Nord", + "type": "Parent", + "id": "https://ror.org/0199hds37" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 48.93564, + "lng": 2.35387, + "state": null, + "state_code": null, + "city": "Saint-Denis", + "geonames_city": { + "id": 2980916, + "city": "Saint-Denis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.mshparisnord.fr" + ], + "aliases": [], + "acronyms": [ + "MSHPN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9831 039X" + ], + "preferred": "0000 0000 9831 039X" + }, + "Wikidata": { + "all": [ + "Q51781445" + ], + "preferred": "Q51781445" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0518wrr32.json b/v1.52/v1/0518wrr32.json new file mode 100644 index 000000000..54c6421bf --- /dev/null +++ b/v1.52/v1/0518wrr32.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/0518wrr32", + "name": "LIGO Scientific Collaboration", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.14778, + "lng": -118.14452, + "state": null, + "state_code": null, + "city": "Pasadena", + "geonames_city": { + "id": 5381396, + "city": "Pasadena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ligo.org" + ], + "aliases": [], + "acronyms": [ + "LIGO", + "LSC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/LIGO", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.440318.a", + "preferred": "grid.440318.a" + }, + "Wikidata": { + "all": [ + "Q6458663" + ], + "preferred": "Q6458663" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/051arnj27.json b/v1.52/v1/051arnj27.json new file mode 100644 index 000000000..ee9728581 --- /dev/null +++ b/v1.52/v1/051arnj27.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/051arnj27", + "name": "Teledyne FLIR (Belgium)", + "email_address": null, + "ip_addresses": [], + "established": 1978, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Teledyne FLIR (United States)", + "type": "Parent", + "id": "https://ror.org/01j1gwp17" + } + ], + "addresses": [ + { + "lat": 51.40029, + "lng": 4.76034, + "state": null, + "state_code": null, + "city": "Hoogstraten", + "geonames_city": { + "id": 2795398, + "city": "Hoogstraten", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.flir.eu" + ], + "aliases": [ + "FLIR Systems Belgium" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/FLIR_Systems", + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "GRID": { + "all": "grid.438658.4", + "preferred": "grid.438658.4" + }, + "Wikidata": { + "all": [ + "Q30292305" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/051awsb83.json b/v1.52/v1/051awsb83.json new file mode 100644 index 000000000..5bb16d4a0 --- /dev/null +++ b/v1.52/v1/051awsb83.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/051awsb83", + "name": "Tompkins Cortland Community College", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.49091, + "lng": -76.29716, + "state": null, + "state_code": null, + "city": "Dryden", + "geonames_city": { + "id": 5115374, + "city": "Dryden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.tompkinscortland.edu" + ], + "aliases": [ + "SUNY Tompkins Cortland Community College", + "State University of New York Tompkins Cortland Community College" + ], + "acronyms": [ + "TC3" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Tompkins_Cortland_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.427619.f", + "preferred": "grid.427619.f" + }, + "ISNI": { + "all": [ + "0000 0004 0388 4235" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7820362" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/051br2d77.json b/v1.52/v1/051br2d77.json new file mode 100644 index 000000000..d81d1c784 --- /dev/null +++ b/v1.52/v1/051br2d77.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/051br2d77", + "name": "Lettres et Civilisations Etrangères", + "email_address": null, + "ip_addresses": [], + "established": 1853, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lce.univ-lyon2.fr" + ], + "aliases": [ + "Langues et Cultures Européennes" + ], + "acronyms": [ + "LCE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482749.4", + "preferred": "grid.482749.4" + }, + "ISNI": { + "all": [ + "0000 0001 2176 1317" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/051escj72.json b/v1.52/v1/051escj72.json new file mode 100644 index 000000000..4218eab7a --- /dev/null +++ b/v1.52/v1/051escj72.json @@ -0,0 +1,528 @@ +{ + "id": "https://ror.org/051escj72", + "name": "Université de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1289, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Ingénierie des Agropolymères et Technologies Emergentes", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Institut des Sciences des Plantes de Montpellier", + "type": "Child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "UMR Botanique et Modélisation de l’Architecture des Plantes et des végétations", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie Structurale", + "type": "Child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Recherche en Biologie cellulaire de Montpellier", + "type": "Child", + "id": "https://ror.org/01xpc6869" + }, + { + "label": "Diversité, adaptation et développement des plantes", + "type": "Child", + "id": "https://ror.org/02banhz78" + }, + { + "label": "Diversité, génomes et interactions micro-organismes-insectes", + "type": "Child", + "id": "https://ror.org/03q1qx424" + }, + { + "label": "Forests and Societies", + "type": "Child", + "id": "https://ror.org/02pzyz439" + }, + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Institut Charles Gerhardt Montpellier", + "type": "Child", + "id": "https://ror.org/028wq3277" + }, + { + "label": "Institut Européen des Membranes", + "type": "Child", + "id": "https://ror.org/04nmj9827" + }, + { + "label": "Institut d'Électronique et des Systèmes", + "type": "Child", + "id": "https://ror.org/0431hh004" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "Child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Génétique Moléculaire de Montpellier", + "type": "Child", + "id": "https://ror.org/02785qs39" + }, + { + "label": "Institut Montpelliérain Alexander Grothendieck", + "type": "Child", + "id": "https://ror.org/044kxby82" + }, + { + "label": "Institut de Recherche en Infectiologie de Montpellier", + "type": "Child", + "id": "https://ror.org/036eg1q44" + }, + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "Child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "Child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institut de Chimie Séparative de Marcoule", + "type": "Child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institut de Recherche en Cancérologie de Montpellier", + "type": "Child", + "id": "https://ror.org/03capj968" + }, + { + "label": "Institut de Génétique Humaine", + "type": "Child", + "id": "https://ror.org/05ee10k25" + }, + { + "label": "Laboratoire Charles Coulomb", + "type": "Child", + "id": "https://ror.org/02ftce284" + }, + { + "label": "Laboratoire Univers et Particules de Montpellier", + "type": "Child", + "id": "https://ror.org/00nrbzg90" + }, + { + "label": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "type": "Child", + "id": "https://ror.org/03fte3n86" + }, + { + "label": "Laboratoire de Mécanique et Génie Civil", + "type": "Child", + "id": "https://ror.org/02fke9256" + }, + { + "label": "Laboratoire HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "Child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Marine Biodiversity Exploitation and Conservation", + "type": "Child", + "id": "https://ror.org/049dk3691" + }, + { + "label": "Laboratoire d'Informatique, de Robotique et de Microélectronique de Montpellier", + "type": "Child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Physiologie et Médecine Expérimentale du Coeur et des Muscles", + "type": "Child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Sciences pour L’Œnologie", + "type": "Child", + "id": "https://ror.org/04w07sc25" + }, + { + "label": "Centre d’Etudes Politiques Et sociaLes", + "type": "Child", + "id": "https://ror.org/02wzg8t73" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "Child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "Child", + "id": "https://ror.org/03kbarg82" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "Child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "Child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "Observatoire de Recherche Montpelliérain de l'Environnement OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "Child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "Genopolys", + "type": "Child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "Child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "Child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "Child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Centre Méditerranéen de l’Environnement et de la Biodiversité", + "type": "Child", + "id": "https://ror.org/04eeyfe07" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "Child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "Child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "Université Montpellier 1", + "type": "Predecessor", + "id": "https://ror.org/0227fbx80" + }, + { + "label": "Université Montpellier 2", + "type": "Predecessor", + "id": "https://ror.org/00wh4bp03" + }, + { + "label": "Hôpital Lapeyronie", + "type": "Related", + "id": "https://ror.org/03xzagw65" + }, + { + "label": "Hôpital Saint Eloi", + "type": "Related", + "id": "https://ror.org/04pwyfk22" + }, + { + "label": "Institut Universitaire de Recherche Clinique", + "type": "Related", + "id": "https://ror.org/03kfkzp90" + }, + { + "label": "Centre Hospitalier Universitaire de Montpellier", + "type": "Related", + "id": "https://ror.org/00mthsf17" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Genetic Improvement and Adaptation of Mediterranean and Tropical Plants", + "type": "Child", + "id": "https://ror.org/02w4exq36" + }, + { + "label": "Pathogenesis and Control of Chronic and Emerging Infections", + "type": "Child", + "id": "https://ror.org/01yw9jt43" + }, + { + "label": "Maison des Sciences de l'Homme SUD", + "type": "Child", + "id": "https://ror.org/05s6hm275" + }, + { + "label": "Montpellier Recherche en Economie", + "type": "Child", + "id": "https://ror.org/0100zmm86" + }, + { + "label": "Laboratoire Bioingénierie et Nanosciences", + "type": "Child", + "id": "https://ror.org/05g7gad22" + }, + { + "label": "Laboratoire de droit privé", + "type": "Child", + "id": "https://ror.org/05h1c9n12" + }, + { + "label": "Laboratoire Innovation Communication et Marché", + "type": "Child", + "id": "https://ror.org/0262z1d94" + }, + { + "label": "Laboratory of Pathogens and Host Immunity", + "type": "Child", + "id": "https://ror.org/00rt27171" + }, + { + "label": "Initial MAnagement and prevention of acute orGan failures IN critically ill patiEnts", + "type": "Child", + "id": "https://ror.org/05frk8994" + }, + { + "label": "Institut d'Histoire du Droit", + "type": "Child", + "id": "https://ror.org/03wttga88" + }, + { + "label": "Institut Desbrest d'Epidémiologie et de Santé Publique", + "type": "Child", + "id": "https://ror.org/01dwzy755" + }, + { + "label": "Institut de Droit Européen des Droits de l'Homme", + "type": "Child", + "id": "https://ror.org/00mmgvh45" + }, + { + "label": "Equipe de Droit Pénal et de sciences Forensiques de Montpellier", + "type": "Child", + "id": "https://ror.org/045n3eg64" + }, + { + "label": "Centre du Droit de l'Entreprise", + "type": "Child", + "id": "https://ror.org/013r8c450" + }, + { + "label": "Santé, Education et Situations de Handicap", + "type": "Child", + "id": "https://ror.org/007bw2y16" + }, + { + "label": "Centre de Recherches et d'Etudes Administratives de Montpellier", + "type": "Child", + "id": "https://ror.org/03e835785" + }, + { + "label": "Centre d'Etudes et de Recherches Comparatives Constitutionnelles et Politiques", + "type": "Child", + "id": "https://ror.org/01m1tbs81" + }, + { + "label": "Développement Embryonnaire, Fertilité et Environnement", + "type": "Child", + "id": "https://ror.org/019v7sr25" + }, + { + "label": "Biocommunication en Cardio-Métabolique", + "type": "Child", + "id": "https://ror.org/025g2e477" + }, + { + "label": "BioCampus Montpellier", + "type": "Child", + "id": "https://ror.org/04x7ec535" + }, + { + "label": "Institute for Neurosciences of Montpellier", + "type": "Child", + "id": "https://ror.org/0428ctr80" + }, + { + "label": "EuroMov Digital Health in Motion", + "type": "Child", + "id": "https://ror.org/054b22910" + }, + { + "label": "Ecole de droit social de Montpellier", + "type": "Child", + "id": "https://ror.org/02nwb8925" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.umontpellier.fr/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Montpellier", + "labels": [ + { + "label": "University of Montpellier", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008222" + ], + "preferred": null + }, + "GRID": { + "all": "grid.121334.6", + "preferred": "grid.121334.6" + }, + "ISNI": { + "all": [ + "0000 0001 2097 0141" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q776223" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/051exe838.json b/v1.52/v1/051exe838.json new file mode 100644 index 000000000..ae9690cca --- /dev/null +++ b/v1.52/v1/051exe838.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/051exe838", + "name": "Army Infantry College of PLA", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Chinese People's Liberation Army", + "type": "Parent", + "id": "https://ror.org/05tf9r976" + } + ], + "addresses": [ + { + "lat": 28.68396, + "lng": 115.85306, + "state": null, + "state_code": null, + "city": "Nanchang", + "geonames_city": { + "id": 1800163, + "city": "Nanchang", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Army Infantry Academy", + "Army Infantry College of PLA", + "Army Infantry College of People's Liberation Army", + "PLA Army Infantry Academy", + "陆军步兵学院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E4%B8%AD%E5%9B%BD%E4%BA%BA%E6%B0%91%E8%A7%A3%E6%94%BE%E5%86%9B%E9%99%86%E5%86%9B%E6%AD%A5%E5%85%B5%E5%AD%A6%E9%99%A2", + "labels": [ + { + "label": "中国人民解放军陆军步兵学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q10872957" + ], + "preferred": "Q10872957" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/051n2s460.json b/v1.52/v1/051n2s460.json new file mode 100644 index 000000000..79b35bfa5 --- /dev/null +++ b/v1.52/v1/051n2s460.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/051n2s460", + "name": "Fonctionnement et dysfonctionnement cognitifs: les âges de la vie", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris Nanterre", + "type": "Parent", + "id": "https://ror.org/013bkhk48" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + } + ], + "addresses": [ + { + "lat": 48.89198, + "lng": 2.20675, + "state": null, + "state_code": null, + "city": "Nanterre", + "geonames_city": { + "id": 2990970, + "city": "Nanterre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dysco.parisnanterre.fr" + ], + "aliases": [ + "Cognitive Functioning and Dysfunction", + "Cognitive Functioning and Dysfunction: Ages of Life", + "Fonctionnement et dysfonctionnement cognitifs" + ], + "acronyms": [ + "DysCo" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/052bz7812.json b/v1.52/v1/052bz7812.json new file mode 100644 index 000000000..014dcc446 --- /dev/null +++ b/v1.52/v1/052bz7812.json @@ -0,0 +1,136 @@ +{ + "id": "https://ror.org/052bz7812", + "name": "Université Paris Dauphine-PSL", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre de Recherche en Mathématiques de la Décision", + "type": "Child", + "id": "https://ror.org/03s0gj002" + }, + { + "label": "Dauphine Recherches en Management", + "type": "Child", + "id": "https://ror.org/01mzxgm71" + }, + { + "label": "Institut de Recherche Interdisciplinaire en Sciences Sociales", + "type": "Child", + "id": "https://ror.org/05mmjvv12" + }, + { + "label": "Lamsade", + "type": "Child", + "id": "https://ror.org/03pnp1a74" + }, + { + "label": "Laboratoire d’Economie de Dauphine", + "type": "Child", + "id": "https://ror.org/026exgg05" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Centre de recherche droit Dauphine", + "type": "Child", + "id": "https://ror.org/01ag91m47" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dauphine.psl.eu" + ], + "aliases": [ + "Paris Dauphine University", + "University Paris Dauphine-PSL", + "Université Paris 9 Dauphine" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Paris_Dauphine_University", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.11024.36", + "preferred": "grid.11024.36" + }, + "ISNI": { + "all": [ + "0000 0001 2097 7052" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1546437" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/052g8jq94.json b/v1.52/v1/052g8jq94.json new file mode 100644 index 000000000..afff2f858 --- /dev/null +++ b/v1.52/v1/052g8jq94.json @@ -0,0 +1,238 @@ +{ + "id": "https://ror.org/052g8jq94", + "name": "Universitat Autònoma de Barcelona", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Center for Research in Agricultural Genomics", + "type": "Child", + "id": "https://ror.org/04tz2h245" + }, + { + "label": "Institut Català de Nanociència i Nanotecnologia", + "type": "Child", + "id": "https://ror.org/00k1qja49" + }, + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "Related", + "id": "https://ror.org/03abrgd14" + }, + { + "label": "Hospital Universitari Germans Trias i Pujol", + "type": "Related", + "id": "https://ror.org/04wxdxa47" + }, + { + "label": "Barcelona School of Economics", + "type": "Related", + "id": "https://ror.org/02k09n368" + }, + { + "label": "Centre de Recerca Matemàtica", + "type": "Related", + "id": "https://ror.org/020s51w82" + }, + { + "label": "Computer Vision Center", + "type": "Related", + "id": "https://ror.org/00s0nnj93" + }, + { + "label": "Centre for Demographic Studies", + "type": "Related", + "id": "https://ror.org/02dm87055" + }, + { + "label": "Institut Universitari d'Investigació en Atenció Primària Jordi Gol", + "type": "Related", + "id": "https://ror.org/0370bpp07" + }, + { + "label": "Puigvert Foundation", + "type": "Related", + "id": "https://ror.org/03qwx2883" + }, + { + "label": "Fundació Salut i Envelliment UAB", + "type": "Related", + "id": "https://ror.org/03c7e3050" + }, + { + "label": "Hospital del Mar Research Institute", + "type": "Related", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Institut Barcelona d'Estudis Internacionals", + "type": "Related", + "id": "https://ror.org/05rke5d69" + }, + { + "label": "Institut Català de Paleontologia Miquel Crusafont", + "type": "Related", + "id": "https://ror.org/04qeh2h86" + }, + { + "label": "Institut Català d'Oncologia", + "type": "Related", + "id": "https://ror.org/01j1eb875" + }, + { + "label": "Institut de Recerca Sant Pau", + "type": "Related", + "id": "https://ror.org/005teat46" + }, + { + "label": "Vall d'Hebron Institut de Recerca", + "type": "Related", + "id": "https://ror.org/01d5vx451" + }, + { + "label": "Institut d'Estudis Espacials de Catalunya", + "type": "Related", + "id": "https://ror.org/00k6njn28" + }, + { + "label": "Institut d'Investigació en Ciències de la Salut Germans Trias i Pujol", + "type": "Related", + "id": "https://ror.org/03bzdww12" + }, + { + "label": "Institute of Research and Innovation Parc Tauli", + "type": "Related", + "id": "https://ror.org/038c0gc18" + }, + { + "label": "Vall d'Hebron Institute of Oncology", + "type": "Related", + "id": "https://ror.org/054xx3904" + }, + { + "label": "IrsiCaixa", + "type": "Related", + "id": "https://ror.org/001synm23" + }, + { + "label": "Institute for High Energy Physics", + "type": "Related", + "id": "https://ror.org/01sdrjx85" + }, + { + "label": "Centre d'Esclerosi Múltiple de Catalunya", + "type": "Related", + "id": "https://ror.org/01kzbqm05" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 41.49109, + "lng": 2.14079, + "state": null, + "state_code": null, + "city": "Cerdanyola del Vallès", + "geonames_city": { + "id": 3109402, + "city": "Cerdanyola del Vallès", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uab.cat" + ], + "aliases": [], + "acronyms": [ + "UAB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Autonomous_University_of_Barcelona", + "labels": [ + { + "label": "Autonomous University of Barcelona", + "iso639": "en" + }, + { + "label": "Bartzelonako Unibertsitate Autonomoa", + "iso639": "eu" + }, + { + "label": "Universidad Autónoma de Barcelona", + "iso639": "es" + }, + { + "label": "Universidade Autónoma de Barcelona", + "iso639": "gl" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100011104" + ], + "preferred": "501100011104" + }, + "GRID": { + "all": "grid.7080.f", + "preferred": "grid.7080.f" + }, + "ISNI": { + "all": [ + "0000 0001 2296 0625", + "0000 0001 2097 0205" + ], + "preferred": "0000 0001 2296 0625" + }, + "Wikidata": { + "all": [ + "Q43452" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/052qegn86.json b/v1.52/v1/052qegn86.json new file mode 100644 index 000000000..70bdb9f17 --- /dev/null +++ b/v1.52/v1/052qegn86.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/052qegn86", + "name": "Instituto de España", + "email_address": null, + "ip_addresses": [], + "established": 1938, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Real Academia de Bellas Artes de San Fernando", + "type": "Child", + "id": "https://ror.org/00zy6vr46" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://institutodeespana.es" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_de_Espa%C3%B1a", + "labels": [ + { + "label": "Institute of Spain", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 0941 0338" + ], + "preferred": "0000 0001 0941 0338" + }, + "Wikidata": { + "all": [ + "Q3100331" + ], + "preferred": "Q3100331" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0532vdr17.json b/v1.52/v1/0532vdr17.json new file mode 100644 index 000000000..aff710c15 --- /dev/null +++ b/v1.52/v1/0532vdr17.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/0532vdr17", + "name": "Signify (Netherlands)", + "email_address": null, + "ip_addresses": [], + "established": 1891, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Philips (Netherlands)", + "type": "Related", + "id": "https://ror.org/02p2bgp27" + } + ], + "addresses": [ + { + "lat": 51.44083, + "lng": 5.47778, + "state": null, + "state_code": null, + "city": "Eindhoven", + "geonames_city": { + "id": 2756253, + "city": "Eindhoven", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.signify.com/" + ], + "aliases": [ + "Philips Lighting", + "Philips Lighting N.V." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Signify_N.V.", + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "GRID": { + "all": "grid.510043.3", + "preferred": "grid.510043.3" + }, + "Wikidata": { + "all": [ + "Q2336380" + ], + "preferred": "Q2336380" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0535cbn94.json b/v1.52/v1/0535cbn94.json new file mode 100644 index 000000000..c45d91034 --- /dev/null +++ b/v1.52/v1/0535cbn94.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/0535cbn94", + "name": "Systèmes Moléculaires et nanoMatériaux pour l'Énergie et la Santé", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Institut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.symmes.fr" + ], + "aliases": [ + "Molecular Systems and nanoMaterials for Energy and Health" + ], + "acronyms": [ + "SyMMES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q30262431" + ], + "preferred": "Q30262431" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0537aj111.json b/v1.52/v1/0537aj111.json new file mode 100644 index 000000000..c8ca1363d --- /dev/null +++ b/v1.52/v1/0537aj111.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/0537aj111", + "name": "Crohn's in Childhood Research Association", + "email_address": null, + "ip_addresses": [], + "established": 1978, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cicra.org/" + ], + "aliases": [], + "acronyms": [ + "CICRA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001276", + "100011700" + ], + "preferred": "100011700" + }, + "GRID": { + "all": "grid.499939.7", + "preferred": "grid.499939.7" + }, + "Wikidata": { + "all": [ + "Q30264682" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/053j19t39.json b/v1.52/v1/053j19t39.json new file mode 100644 index 000000000..b47c03a06 --- /dev/null +++ b/v1.52/v1/053j19t39.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/053j19t39", + "name": "Genesee Community College", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.99812, + "lng": -78.18752, + "state": null, + "state_code": null, + "city": "Batavia", + "geonames_city": { + "id": 5108093, + "city": "Batavia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.genesee.edu" + ], + "aliases": [ + "SUNY Genesee Community College", + "State University of New York Genesee Community College" + ], + "acronyms": [ + "SUNY GCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Genesee_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.421731.2", + "preferred": "grid.421731.2" + }, + "ISNI": { + "all": [ + "0000 0004 0388 0795" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5532715" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0541jr710.json b/v1.52/v1/0541jr710.json new file mode 100644 index 000000000..3e53e10b6 --- /dev/null +++ b/v1.52/v1/0541jr710.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0541jr710", + "name": "European Space Operations Centre", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "European Space Agency", + "type": "Parent", + "id": "https://ror.org/03wd9za21" + } + ], + "addresses": [ + { + "lat": 49.87167, + "lng": 8.65027, + "state": null, + "state_code": null, + "city": "Darmstadt", + "geonames_city": { + "id": 2938913, + "city": "Darmstadt", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.esa.int/ger/ESA_in_your_country/Germany" + ], + "aliases": [], + "acronyms": [ + "ESOC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_Space_Operations_Centre", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "all": "grid.461733.4", + "preferred": "grid.461733.4" + }, + "ISNI": { + "all": [ + "0000 0001 2375 6474" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q697711" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05478fx36.json b/v1.52/v1/05478fx36.json new file mode 100644 index 000000000..4ad7daa80 --- /dev/null +++ b/v1.52/v1/05478fx36.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/05478fx36", + "name": "INFN Sezione di Perugia", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "University of Perugia", + "type": "Parent", + "id": "https://ror.org/00x27da85" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 43.1122, + "lng": 12.38878, + "state": null, + "state_code": null, + "city": "Perugia", + "geonames_city": { + "id": 3171180, + "city": "Perugia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pg.infn.it/" + ], + "aliases": [ + "Istituto Nazionale di Fisica Nucleare Sezione di Perugia" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.470215.5", + "preferred": "grid.470215.5" + }, + "Wikidata": { + "all": [ + "Q30265296" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/054b22910.json b/v1.52/v1/054b22910.json new file mode 100644 index 000000000..efa681792 --- /dev/null +++ b/v1.52/v1/054b22910.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/054b22910", + "name": "EuroMov Digital Health in Motion", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "IMT Mines Alès", + "type": "Parent", + "id": "https://ror.org/03e8rf594" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://dhm.euromov.eu" + ], + "aliases": [ + "EuroMov DHM" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/054d78x30.json b/v1.52/v1/054d78x30.json new file mode 100644 index 000000000..6b925c0a6 --- /dev/null +++ b/v1.52/v1/054d78x30.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/054d78x30", + "name": "IMRA Europe", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "IMRA America (United States)", + "type": "Related", + "id": "https://ror.org/014t9mt17" + }, + { + "label": "Aisin (Japan)", + "type": "Parent", + "id": "https://ror.org/00vtxwp63" + } + ], + "addresses": [ + { + "lat": 43.63292, + "lng": 6.99911, + "state": null, + "state_code": null, + "city": "Valbonne", + "geonames_city": { + "id": 2971117, + "city": "Valbonne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.imra.eu" + ], + "aliases": [ + "IMRA France", + "Institut Minoru de Recherche Avancé", + "Institut Minoru de Recherche Avancé Europe" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "IMRA Europe SAS", + "iso639": null + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.482144.f", + "preferred": "grid.482144.f" + }, + "ISNI": { + "all": [ + "0000 0004 1783 9339" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/054mp6682.json b/v1.52/v1/054mp6682.json new file mode 100644 index 000000000..3f2b2d363 --- /dev/null +++ b/v1.52/v1/054mp6682.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/054mp6682", + "name": "PAP Non-commissioned Officer School", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.29365, + "lng": 120.16142, + "state": null, + "state_code": null, + "city": "Hangzhou", + "geonames_city": { + "id": 1808926, + "city": "Hangzhou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Chinese People's Armed Police Force Non commissioned Officer School", + "Noncommissioned Officer Academy of PAP", + "PAP NCO College", + "People's Armed Police - Non-commissioned Officer School" + ], + "acronyms": [ + "PAP NCO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "中国人民武装警察部队士官学校", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q10872907" + ], + "preferred": "Q10872907" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0557vhy43.json b/v1.52/v1/0557vhy43.json new file mode 100644 index 000000000..56941e797 --- /dev/null +++ b/v1.52/v1/0557vhy43.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/0557vhy43", + "name": "Laboratoire Biologie et Biotechnologie pour la Santé", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "type": "Parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Institut de Recherche Interdisciplinaire de Grenoble", + "type": "Parent", + "id": "https://ror.org/00byxdz40" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://biosante-lab.fr" + ], + "aliases": [ + "Biology and Biotechnology for Health Laboratory", + "Laboratoire BioSanté" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05586es19.json b/v1.52/v1/05586es19.json new file mode 100644 index 000000000..4b9b14967 --- /dev/null +++ b/v1.52/v1/05586es19.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05586es19", + "name": "Khwaja Yunus Ali Medical College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.33333, + "lng": 89.61667, + "state": null, + "state_code": null, + "city": "Sirajganj", + "geonames_city": { + "id": 1337168, + "city": "Sirajganj", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://kyamc.edu.bd" + ], + "aliases": [ + "Khwaja Yunus Ali Medical College & Hospital", + "Khwaja Yunus Ali Medical College and Hospital" + ], + "acronyms": [ + "KYAMC", + "KYAMCH" + ], + "status": "active", + "wikipedia_url": "https://bn.wikipedia.org/wiki/%E0%A6%96%E0%A6%BE%E0%A6%9C%E0%A6%BE_%E0%A6%87%E0%A6%89%E0%A6%A8%E0%A7%81%E0%A6%B8_%E0%A6%86%E0%A6%B2%E0%A7%80_%E0%A6%AE%E0%A7%87%E0%A6%A1%E0%A6%BF%E0%A6%95%E0%A7%87%E0%A6%B2_%E0%A6%95%E0%A6%B2%E0%A7%87%E0%A6%9C", + "labels": [ + { + "label": "খাজা ইউনুস আলী মেডিকেল কলেজ", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q56806290" + ], + "preferred": "Q56806290" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05591te55.json b/v1.52/v1/05591te55.json new file mode 100644 index 000000000..9a13c3867 --- /dev/null +++ b/v1.52/v1/05591te55.json @@ -0,0 +1,166 @@ +{ + "id": "https://ror.org/05591te55", + "name": "Ludwig-Maximilians-Universität München", + "email_address": null, + "ip_addresses": [], + "established": 1472, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Zentrum für Klinische Tiermedizin", + "type": "Child", + "id": "https://ror.org/02qqvpd39" + }, + { + "label": "Munich Cluster for Systems Neurology", + "type": "Child", + "id": "https://ror.org/025z3z560" + }, + { + "label": "Excellence Cluster Origins", + "type": "Child", + "id": "https://ror.org/010wkny21" + }, + { + "label": "Munich Center for Quantum Science and Technology", + "type": "Child", + "id": "https://ror.org/04xrcta15" + }, + { + "label": "Nanosystems Initiative Munich", + "type": "Child", + "id": "https://ror.org/01mvrj242" + }, + { + "label": "Center for Integrated Protein Science Munich", + "type": "Child", + "id": "https://ror.org/032hzb643" + }, + { + "label": "Center for NanoScience", + "type": "Child", + "id": "https://ror.org/002epp671" + }, + { + "label": "Centre for Advanced Laser Applications", + "type": "Child", + "id": "https://ror.org/04j4kfb22" + }, + { + "label": "Rachel Carson Center for Environment and Society", + "type": "Child", + "id": "https://ror.org/01h2vtb84" + }, + { + "label": "Collegium Carolinum", + "type": "Related", + "id": "https://ror.org/02jjvb954" + }, + { + "label": "LMU Klinikum", + "type": "Child", + "id": "https://ror.org/02jet3w32" + }, + { + "label": "Ifo Institute for Economic Research", + "type": "Related", + "id": "https://ror.org/045495t75" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.lmu.de" + ], + "aliases": [ + "Ludwig Maximilian University of Munich", + "University of Munich", + "Universität München" + ], + "acronyms": [ + "LMU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ludwig_Maximilian_University_of_Munich", + "labels": [ + { + "label": "Ludwig-Maximilians-Universität in Munich", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005722", + "501100006192", + "501100009401" + ], + "preferred": "501100005722" + }, + "GRID": { + "all": "grid.5252.0", + "preferred": "grid.5252.0" + }, + "ISNI": { + "all": [ + "0000 0004 1936 973X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q55044" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0559cv935.json b/v1.52/v1/0559cv935.json new file mode 100644 index 000000000..1f738c35d --- /dev/null +++ b/v1.52/v1/0559cv935.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/0559cv935", + "name": "Moshood Abiola Polytechnic", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.15571, + "lng": 3.34509, + "state": null, + "state_code": null, + "city": "Abeokuta", + "geonames_city": { + "id": 2352947, + "city": "Abeokuta", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.mapoly.edu.ng" + ], + "aliases": [ + "Ogun State Polytechnic, Abeokuta" + ], + "acronyms": [ + "MAPOLY" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Moshood_Abiola_Polytechnic", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0000 9089 5960" + ], + "preferred": "0000 0000 9089 5960" + }, + "Wikidata": { + "all": [ + "Q17109158" + ], + "preferred": "Q17109158" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0566bfb96.json b/v1.52/v1/0566bfb96.json new file mode 100644 index 000000000..5369bdd67 --- /dev/null +++ b/v1.52/v1/0566bfb96.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/0566bfb96", + "name": "Naturalis Biodiversity Center", + "email_address": null, + "ip_addresses": [], + "established": 1820, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Distributed System of Scientific Collections", + "type": "Related", + "id": "https://ror.org/02wddde16" + } + ], + "addresses": [ + { + "lat": 52.15833, + "lng": 4.49306, + "state": null, + "state_code": null, + "city": "Leiden", + "geonames_city": { + "id": 2751773, + "city": "Leiden", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.naturalis.nl/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Naturalis_Biodiversity_Center", + "labels": [ + { + "label": "Nederlands Centrum voor Biodiversiteit Naturalis", + "iso639": "nl" + } + ], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100013345" + ], + "preferred": "501100013345" + }, + "GRID": { + "all": "grid.425948.6", + "preferred": "grid.425948.6" + }, + "ISNI": { + "all": [ + "0000 0001 2159 802X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q641676" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/056d84691.json b/v1.52/v1/056d84691.json new file mode 100644 index 000000000..3944ed998 --- /dev/null +++ b/v1.52/v1/056d84691.json @@ -0,0 +1,139 @@ +{ + "id": "https://ror.org/056d84691", + "name": "Karolinska Institutet", + "email_address": null, + "ip_addresses": [], + "established": 1810, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Integrated Cardio Metabolic Centre", + "type": "Child", + "id": "https://ror.org/01pgex273" + }, + { + "label": "Ming Wai Lau Centre for Reparative Medicine", + "type": "Child", + "id": "https://ror.org/03j0jxk49" + }, + { + "label": "Center for Innovative Medicine", + "type": "Child", + "id": "https://ror.org/00dgqhm63" + }, + { + "label": "Karolinska University Hospital", + "type": "Related", + "id": "https://ror.org/00m8d6786" + }, + { + "label": "National Bioinformatics Infrastructure Sweden", + "type": "Related", + "id": "https://ror.org/00enajs79" + }, + { + "label": "Swedish National Data Service", + "type": "Related", + "id": "https://ror.org/00ancw882" + }, + { + "label": "Swedish Biodiversity Data Infrastructure", + "type": "Related", + "id": "https://ror.org/0221pcv84" + } + ], + "addresses": [ + { + "lat": 59.32938, + "lng": 18.06871, + "state": null, + "state_code": null, + "city": "Stockholm", + "geonames_city": { + "id": 2673730, + "city": "Stockholm", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ki.se" + ], + "aliases": [ + "Karolinska Institute", + "Royal Caroline Institute" + ], + "acronyms": [ + "KI" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Karolinska_Institutet", + "labels": [ + { + "label": "Karoliininen instituutti", + "iso639": "fi" + } + ], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100004047", + "501100009741" + ], + "preferred": null + }, + "GRID": { + "all": "grid.4714.6", + "preferred": "grid.4714.6" + }, + "ISNI": { + "all": [ + "0000 0004 1937 0626" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q219564" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/056tn4839.json b/v1.52/v1/056tn4839.json new file mode 100644 index 000000000..f5672cb6d --- /dev/null +++ b/v1.52/v1/056tn4839.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/056tn4839", + "name": "Sogang University", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.566, + "lng": 126.9784, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835848, + "city": "Seoul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sogang.ac.kr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Sogang_University", + "labels": [ + { + "label": "서강대학교", + "iso639": "ko" + } + ], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002646" + ], + "preferred": null + }, + "GRID": { + "all": "grid.263736.5", + "preferred": "grid.263736.5" + }, + "ISNI": { + "all": [ + "0000 0001 0286 5954" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q374457" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0573j3j10.json b/v1.52/v1/0573j3j10.json new file mode 100644 index 000000000..731207ff0 --- /dev/null +++ b/v1.52/v1/0573j3j10.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/0573j3j10", + "name": "Taylor Geospatial Institute", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Saint Louis University", + "type": "Related", + "id": "https://ror.org/04k7nem08" + }, + { + "label": "Donald Danforth Plant Science Center", + "type": "Related", + "id": "https://ror.org/000cyem11" + }, + { + "label": "University of Missouri", + "type": "Related", + "id": "https://ror.org/02ymw8z06" + }, + { + "label": "Missouri University of Science and Technology", + "type": "Related", + "id": "https://ror.org/00scwqd12" + }, + { + "label": "University of Missouri–St. Louis", + "type": "Related", + "id": "https://ror.org/037cnag11" + }, + { + "label": "University of Illinois Urbana-Champaign", + "type": "Related", + "id": "https://ror.org/047426m28" + }, + { + "label": "Harris–Stowe State University", + "type": "Related", + "id": "https://ror.org/00fqyhf62" + }, + { + "label": "Washington University in St. Louis", + "type": "Related", + "id": "https://ror.org/01yc7t268" + } + ], + "addresses": [ + { + "lat": 38.62727, + "lng": -90.19789, + "state": null, + "state_code": null, + "city": "St Louis", + "geonames_city": { + "id": 4407066, + "city": "St Louis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://taylorgeospatial.org" + ], + "aliases": [], + "acronyms": [ + "TGI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1232 4931" + ], + "preferred": "0000 0005 1232 4931" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0576q1t15.json b/v1.52/v1/0576q1t15.json new file mode 100644 index 000000000..85457d004 --- /dev/null +++ b/v1.52/v1/0576q1t15.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/0576q1t15", + "name": "Universidad Autónoma de Nayarit", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Unidad Académica del Norte del Estado de Nayarit", + "type": "Child", + "id": "https://ror.org/02d31v873" + } + ], + "addresses": [ + { + "lat": 21.50951, + "lng": -104.89569, + "state": null, + "state_code": null, + "city": "Tepic", + "geonames_city": { + "id": 3981941, + "city": "Tepic", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uan.edu.mx" + ], + "aliases": [ + "Autonomous University of Nayarit" + ], + "acronyms": [ + "UAN" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Autonomous_University_of_Nayarit", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008746" + ], + "preferred": "501100008746" + }, + "GRID": { + "all": "grid.412858.2", + "preferred": "grid.412858.2" + }, + "ISNI": { + "all": [ + "0000 0001 2164 1788" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4826833" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/057skhv53.json b/v1.52/v1/057skhv53.json new file mode 100644 index 000000000..44a5a19e2 --- /dev/null +++ b/v1.52/v1/057skhv53.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/057skhv53", + "name": "Northumbrian Water Group (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 54.77676, + "lng": -1.57566, + "state": null, + "state_code": null, + "city": "Durham", + "geonames_city": { + "id": 2650628, + "city": "Durham", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.nwg.co.uk/" + ], + "aliases": [], + "acronyms": [ + "NWG" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Northumbrian_Water_Group", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100024093" + ], + "preferred": "501100024093" + }, + "GRID": { + "all": "grid.101970.e", + "preferred": "grid.101970.e" + }, + "ISNI": { + "all": [ + "0000 0000 9354 471X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q17017321" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/057trrr89.json b/v1.52/v1/057trrr89.json new file mode 100644 index 000000000..3b09f99e5 --- /dev/null +++ b/v1.52/v1/057trrr89.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/057trrr89", + "name": "Purchase College", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 41.04093, + "lng": -73.71457, + "state": null, + "state_code": null, + "city": "Purchase", + "geonames_city": { + "id": 5133135, + "city": "Purchase", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.purchase.edu" + ], + "aliases": [ + "SUNY Purchase", + "State University of New York Purchase College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Purchase", + "labels": [ + { + "label": "Université d'État de new york à purchase", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100009476" + ], + "preferred": null + }, + "GRID": { + "all": "grid.264276.3", + "preferred": "grid.264276.3" + }, + "ISNI": { + "all": [ + "0000 0001 0165 1508" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4359408" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/057zvny46.json b/v1.52/v1/057zvny46.json new file mode 100644 index 000000000..a64b9971d --- /dev/null +++ b/v1.52/v1/057zvny46.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/057zvny46", + "name": "Genocide and Resistance Research Centre of Lithuania", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 54.68916, + "lng": 25.2798, + "state": null, + "state_code": null, + "city": "Vilnius", + "geonames_city": { + "id": 593116, + "city": "Vilnius", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://genocid.lt" + ], + "aliases": [ + "Genocide and Resistance Research Center of Lithuania", + "Центр исследования геноцида и резистенции жителей Литвы" + ], + "acronyms": [ + "LGGRTC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Genocide_and_Resistance_Research_Centre_of_Lithuania", + "labels": [ + { + "label": "Lietuvos gyventojų genocido ir rezistencijos tyrimo centras", + "iso639": "lt" + } + ], + "country": { + "country_name": "Lithuania", + "country_code": "LT" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 1014 3206" + ], + "preferred": "0000 0001 1014 3206" + }, + "Wikidata": { + "all": [ + "Q5533464" + ], + "preferred": "Q5533464" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0583nw070.json b/v1.52/v1/0583nw070.json new file mode 100644 index 000000000..95cd602fa --- /dev/null +++ b/v1.52/v1/0583nw070.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/0583nw070", + "name": "Cure Parkinson's Trust", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cureparkinsons.org.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008487", + "100015659" + ], + "preferred": "100015659" + }, + "GRID": { + "all": "grid.468359.5", + "preferred": "grid.468359.5" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/058cb6311.json b/v1.52/v1/058cb6311.json new file mode 100644 index 000000000..7e98a0a21 --- /dev/null +++ b/v1.52/v1/058cb6311.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/058cb6311", + "name": "The Charitable Foundation \"BELA. Butterfly Children\"", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Healthcare", + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.75222, + "lng": 37.61556, + "state": null, + "state_code": null, + "city": "Moscow", + "geonames_city": { + "id": 524901, + "city": "Moscow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://deti-bela.ru" + ], + "aliases": [ + "Благотворительный фонд помощи детям, страдающим заболеванием буллезный эпидермолиз «БЭЛА. Дети-бабочки»", + "Бф \"БЭЛА. Дети-Бабочки\"" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Благотворительный фонд «БЭЛА. Дети-бабочки»", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/058e0mz85.json b/v1.52/v1/058e0mz85.json new file mode 100644 index 000000000..c8bd877b8 --- /dev/null +++ b/v1.52/v1/058e0mz85.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/058e0mz85", + "name": "Habiganj Agricultural University", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.38044, + "lng": 91.41299, + "state": null, + "state_code": null, + "city": "Habiganj", + "geonames_city": { + "id": 1185209, + "city": "Habiganj", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://hau.ac.bd" + ], + "aliases": [], + "acronyms": [ + "HAU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Habiganj_Agricultural_University", + "labels": [ + { + "label": "হবিগঞ্জ কৃষি বিশ্ববিদ্যালয়", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q65318701" + ], + "preferred": "Q65318701" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/058v0cd57.json b/v1.52/v1/058v0cd57.json new file mode 100644 index 000000000..971f33ba1 --- /dev/null +++ b/v1.52/v1/058v0cd57.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/058v0cd57", + "name": "Genus (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1933, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Genus (United States)", + "type": "Child", + "id": "https://ror.org/03qvyw596" + } + ], + "addresses": [ + { + "lat": 51.26249, + "lng": -1.08708, + "state": null, + "state_code": null, + "city": "Basingstoke", + "geonames_city": { + "id": 2656192, + "city": "Basingstoke", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.genusplc.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Genus_plc", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100018516" + ], + "preferred": "100018516" + }, + "GRID": { + "all": "grid.434755.4", + "preferred": "grid.434755.4" + }, + "Wikidata": { + "all": [ + "Q5533836" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/058y2sm81.json b/v1.52/v1/058y2sm81.json new file mode 100644 index 000000000..9cc4a65ad --- /dev/null +++ b/v1.52/v1/058y2sm81.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/058y2sm81", + "name": "Dayforce (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.97997, + "lng": -93.26384, + "state": null, + "state_code": null, + "city": "Minneapolis", + "geonames_city": { + "id": 5037649, + "city": "Minneapolis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dayforce.com" + ], + "aliases": [ + "Ceridian", + "Ceridian HCM" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ceridian", + "labels": [ + { + "label": "Ceridian (United States)", + "iso639": null + }, + { + "label": "Dayforce", + "iso639": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.421532.3", + "preferred": "grid.421532.3" + }, + "ISNI": { + "all": [ + "0000 0004 0639 6915" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5064245" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05957a955.json b/v1.52/v1/05957a955.json new file mode 100644 index 000000000..06ada3134 --- /dev/null +++ b/v1.52/v1/05957a955.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05957a955", + "name": "KS Rangasamy College of Arts and Science", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "K.S. Rangasamy College of Technology", + "type": "Related", + "id": "https://ror.org/04mfpmj78" + } + ], + "addresses": [ + { + "lat": 11.38876, + "lng": 77.97123, + "state": null, + "state_code": null, + "city": "Tiruchengode", + "geonames_city": { + "id": 12681679, + "city": "Tiruchengode", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ksrcas.edu" + ], + "aliases": [ + "K. S. R. College of Arts and Science" + ], + "acronyms": [ + "KSRCAS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/K._S._R._College_of_Arts_and_Science", + "labels": [ + { + "label": "கே எஸ் ரங்கசாமி கலை மற்றும் அறிவியல் கல்லூரி", + "iso639": "ta" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1771 5213" + ], + "preferred": "0000 0004 1771 5213" + }, + "Wikidata": { + "all": [ + "Q16862760" + ], + "preferred": "Q16862760" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/0595f4b08.json b/v1.52/v1/0595f4b08.json new file mode 100644 index 000000000..a1a340feb --- /dev/null +++ b/v1.52/v1/0595f4b08.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/0595f4b08", + "name": "Air Force Life Cycle Management Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [ + { + "label": "Air Force Materiel Command", + "type": "Parent", + "id": "https://ror.org/02m4c1x70" + } + ], + "addresses": [ + { + "lat": 39.82201, + "lng": -84.0368, + "state": null, + "state_code": null, + "city": "Wright-Patterson Air Force Base", + "geonames_city": { + "id": 7701733, + "city": "Wright-Patterson Air Force Base", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.aflcmc.af.mil" + ], + "aliases": [], + "acronyms": [ + "AFLCMC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Air_Force_Life_Cycle_Management_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q16974004" + ], + "preferred": "Q16974004" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/059b5pb30.json b/v1.52/v1/059b5pb30.json new file mode 100644 index 000000000..e3af36cc5 --- /dev/null +++ b/v1.52/v1/059b5pb30.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/059b5pb30", + "name": "Konan University", + "email_address": null, + "ip_addresses": [], + "established": 1919, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 34.6913, + "lng": 135.183, + "state": null, + "state_code": null, + "city": "Kobe", + "geonames_city": { + "id": 1859171, + "city": "Kobe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.konan-u.ac.jp/" + ], + "aliases": [ + "Konan Gakuen Middle School", + "Konan University opens" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Konan_University", + "labels": [ + { + "label": "甲南大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "all": "grid.258669.6", + "preferred": "grid.258669.6" + }, + "ISNI": { + "all": [ + "0000 0000 8565 5938" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1037145" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/059xs3104.json b/v1.52/v1/059xs3104.json new file mode 100644 index 000000000..feaef822c --- /dev/null +++ b/v1.52/v1/059xs3104.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/059xs3104", + "name": "Archéorient", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.archeorient.mom.fr" + ], + "aliases": [ + "Laboratoire Archéorient" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463757.4", + "preferred": "grid.463757.4" + }, + "ISNI": { + "all": [ + "0000 0004 0382 8970" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/059yx9a68.json b/v1.52/v1/059yx9a68.json new file mode 100644 index 000000000..1780a63d1 --- /dev/null +++ b/v1.52/v1/059yx9a68.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/059yx9a68", + "name": "Universidad Nacional de Colombia", + "email_address": null, + "ip_addresses": [], + "established": 1867, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centro de Información de Medicamentos de la Universidad Nacional", + "type": "Child", + "id": "https://ror.org/045y2nc52" + } + ], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://unal.edu.co/" + ], + "aliases": [], + "acronyms": [ + "UNAL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/National_University_of_Colombia", + "labels": [], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100002753", + "501100002945", + "501100007627" + ], + "preferred": "501100002753" + }, + "GRID": { + "all": "grid.10689.36", + "preferred": "grid.10689.36" + }, + "ISNI": { + "all": [ + "0000 0004 9129 0751" + ], + "preferred": "0000 0004 9129 0751" + }, + "Wikidata": { + "all": [ + "Q1150419", + "Q6979236", + "Q6979235" + ], + "preferred": "Q1150419" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05a0dhs15.json b/v1.52/v1/05a0dhs15.json new file mode 100644 index 000000000..348a27049 --- /dev/null +++ b/v1.52/v1/05a0dhs15.json @@ -0,0 +1,308 @@ +{ + "id": "https://ror.org/05a0dhs15", + "name": "École Normale Supérieure - PSL", + "email_address": null, + "ip_addresses": [], + "established": 1794, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Archéologie et Philologie d’Orient et d’Occident", + "type": "Child", + "id": "https://ror.org/05nsvn336" + }, + { + "label": "Centre Maurice-Halbwachs", + "type": "Child", + "id": "https://ror.org/01paa1e42" + }, + { + "label": "Centre de Théorie et Analyse du Droit", + "type": "Child", + "id": "https://ror.org/04bg5j190" + }, + { + "label": "Cereep Ecotron Île-de-France", + "type": "Child", + "id": "https://ror.org/05j6qf006" + }, + { + "label": "Département de mathématiques et applications", + "type": "Child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Département d'Informatique", + "type": "Child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Institut Jean Nicod", + "type": "Child", + "id": "https://ror.org/01qfab443" + }, + { + "label": "Institut d'Histoire Moderne et Contemporaine", + "type": "Child", + "id": "https://ror.org/04795e365" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut des Textes et Manuscrits Modernes", + "type": "Child", + "id": "https://ror.org/00x1d4q78" + }, + { + "label": "Institut d'Histoire et de Philosophie des Sciences et des Techniques", + "type": "Child", + "id": "https://ror.org/02nnpw434" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "Child", + "id": "https://ror.org/01h14ww21" + }, + { + "label": "Laboratoire de Géologie de l’École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/05vg9cw43" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Sciences Cognitives et Psycholinguistique", + "type": "Child", + "id": "https://ror.org/05fvhm231" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "Child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire des Systèmes Perceptifs", + "type": "Child", + "id": "https://ror.org/030za3c40" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Langues, Textes, Traitements Informatiques, Cognition", + "type": "Child", + "id": "https://ror.org/03ms1y683" + }, + { + "label": "Pays Germaniques", + "type": "Child", + "id": "https://ror.org/04f9rh541" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "Child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Théorie et Histoire des Arts et des Littératures de la Modernité", + "type": "Child", + "id": "https://ror.org/00ca65425" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "Child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "Child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "Child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "Child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "Child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Fondation de l'Ecole Normale Superieure", + "type": "Child", + "id": "https://ror.org/02fcsjn79" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "Child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "Child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "Child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "Child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "Child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "Paris School of Economics", + "type": "Child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "PHOTOSYNTHESE", + "type": "Related", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "Related", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Université Paris Sciences et Lettres", + "type": "Parent", + "id": "https://ror.org/013cjyk83" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ens.psl.eu/" + ], + "aliases": [ + "ENS Paris", + "Normale sup" + ], + "acronyms": [ + "ENS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/%C3%89cole_Normale_Sup%C3%A9rieure", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007649" + ], + "preferred": null + }, + "GRID": { + "all": "grid.5607.4", + "preferred": "grid.5607.4" + }, + "ISNI": { + "all": [ + "0000 0001 2353 2622" + ], + "preferred": "0000 0001 2353 2622" + }, + "Wikidata": { + "all": [ + "Q83259" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05a28rw58.json b/v1.52/v1/05a28rw58.json new file mode 100644 index 000000000..674f45d6d --- /dev/null +++ b/v1.52/v1/05a28rw58.json @@ -0,0 +1,148 @@ +{ + "id": "https://ror.org/05a28rw58", + "name": "ETH Zurich", + "email_address": null, + "ip_addresses": [], + "established": 1855, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institute for Biomedical Engineering", + "type": "Child", + "id": "https://ror.org/00baskk38" + }, + { + "label": "Swiss Data Science Center", + "type": "Child", + "id": "https://ror.org/02hdt9m26" + }, + { + "label": "CSCS - Swiss National Supercomputing Centre", + "type": "Child", + "id": "https://ror.org/04rzmms09" + }, + { + "label": "NCCR SwissMAP", + "type": "Child", + "id": "https://ror.org/00xzacp61" + }, + { + "label": "Board of the Swiss Federal Institutes of Technology", + "type": "Parent", + "id": "https://ror.org/01rvn4p91" + }, + { + "label": "ETH Zürich Foundation", + "type": "Related", + "id": "https://ror.org/03nqkz164" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ethz.ch" + ], + "aliases": [ + "Eidgenössische Technische Hochschule Zürich", + "Politecnico Federale di Zurigo", + "Swiss Federal Institute of Technology in Zurich", + "École Polytechnique Fédérale de Zurich" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/ETH_Zurich", + "labels": [ + { + "label": "ETH Zurich", + "iso639": "fr" + }, + { + "label": "ETH Zürich", + "iso639": "de" + }, + { + "label": "ETH di Zurigo", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100003006", + "501100001710", + "501100003070" + ], + "preferred": "501100003006" + }, + "GRID": { + "all": "grid.5801.c", + "preferred": "grid.5801.c" + }, + "ISNI": { + "all": [ + "0000 0001 2156 2780" + ], + "preferred": "0000 0001 2156 2780" + }, + "Wikidata": { + "all": [ + "Q11942" + ], + "preferred": "Q11942" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05a353079.json b/v1.52/v1/05a353079.json new file mode 100644 index 000000000..3467d09d4 --- /dev/null +++ b/v1.52/v1/05a353079.json @@ -0,0 +1,150 @@ +{ + "id": "https://ror.org/05a353079", + "name": "University Hospital of Lausanne", + "email_address": null, + "ip_addresses": [], + "established": 1236, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hôpital Nestlé", + "type": "Child", + "id": "https://ror.org/03egrq064" + }, + { + "label": "Hôpital Orthopédique de la Suisse Romande", + "type": "Child", + "id": "https://ror.org/022vd9g66" + }, + { + "label": "Hôpital de Beaumont", + "type": "Child", + "id": "https://ror.org/024009532" + }, + { + "label": "Hôpital de Cery", + "type": "Child", + "id": "https://ror.org/00vqmez57" + }, + { + "label": "Hôpital de l'enfance", + "type": "Child", + "id": "https://ror.org/05d9rr978" + }, + { + "label": "Swiss Cancer Center Léman", + "type": "Child", + "id": "https://ror.org/03kwyfa97" + }, + { + "label": "University Centre of Legal Medicine", + "type": "Child", + "id": "https://ror.org/03grgv984" + }, + { + "label": "Institute of Radiation Physics", + "type": "Child", + "id": "https://ror.org/03ts7z477" + }, + { + "label": "University of Lausanne", + "type": "Related", + "id": "https://ror.org/019whta54" + }, + { + "label": "The Sense Innovation and Research Center", + "type": "Related", + "id": "https://ror.org/01eas9a07" + } + ], + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.chuv.ch/" + ], + "aliases": [], + "acronyms": [ + "CHUV" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lausanne_University_Hospital", + "labels": [ + { + "label": "Centre Hospitalier Universitaire Vaudois", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006392" + ], + "preferred": null + }, + "GRID": { + "all": "grid.8515.9", + "preferred": "grid.8515.9" + }, + "ISNI": { + "all": [ + "0000 0001 0423 4662" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945783" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05a4kwh70.json b/v1.52/v1/05a4kwh70.json new file mode 100644 index 000000000..b854d1f10 --- /dev/null +++ b/v1.52/v1/05a4kwh70.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05a4kwh70", + "name": "Universitas Islam Negeri Syekh Ali Hasan Ahmad Addary Padangsidimpuan", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 1.37952, + "lng": 99.27146, + "state": null, + "state_code": null, + "city": "Padangsidempuan", + "geonames_city": { + "id": 1214369, + "city": "Padangsidempuan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uinsyahada.ac.id" + ], + "aliases": [ + "UIN SYAHADA Padangsidimpuan" + ], + "acronyms": [ + "UIN SYAHADA" + ], + "status": "active", + "wikipedia_url": "https://id.wikipedia.org/wiki/Universitas_Islam_Negeri_Syekh_Ali_Hasan_Ahmad_Addary_Padangsidimpuan", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q19726442" + ], + "preferred": "Q19726442" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05a4pj207.json b/v1.52/v1/05a4pj207.json new file mode 100644 index 000000000..dfb32a4f4 --- /dev/null +++ b/v1.52/v1/05a4pj207.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/05a4pj207", + "name": "SUNY Cortland", + "email_address": null, + "ip_addresses": [], + "established": 1868, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 42.60118, + "lng": -76.18048, + "state": null, + "state_code": null, + "city": "Cortland", + "geonames_city": { + "id": 5113790, + "city": "Cortland", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www2.cortland.edu" + ], + "aliases": [ + "SUNY Cortland", + "State University of New York College at Cortland" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_Cortland", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010962" + ], + "preferred": "100010962" + }, + "GRID": { + "all": "grid.264266.2", + "preferred": "grid.264266.2" + }, + "ISNI": { + "all": [ + "0000 0000 9340 0716" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7603623" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05asdy483.json b/v1.52/v1/05asdy483.json new file mode 100644 index 000000000..2fba29d8b --- /dev/null +++ b/v1.52/v1/05asdy483.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/05asdy483", + "name": "U-M Rogel Cancer Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Michigan Medicine", + "type": "Parent", + "id": "https://ror.org/01zcpa714" + } + ], + "addresses": [ + { + "lat": 42.27756, + "lng": -83.74088, + "state": null, + "state_code": null, + "city": "Ann Arbor", + "geonames_city": { + "id": 4984247, + "city": "Ann Arbor", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rogelcancercenter.org" + ], + "aliases": [ + "Michigan Comprehensive Cancer Center", + "Michigan Rogel Cancer Center", + "Rogel Cancer Center", + "UM Cancer Center", + "UM Comprehensive Cancer Center", + "University of Michigan Cancer Center", + "University of Michigan Comprehensive Cancer Care Center", + "University of Michigan Comprehensive Cancer Center", + "University of Michigan Rogel Cancer Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Michigan_Rogel_Cancer_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100017065", + "100011354" + ], + "preferred": "100011354" + }, + "ISNI": { + "all": [ + "0000 0004 0611 0614" + ], + "preferred": "0000 0004 0611 0614" + }, + "Wikidata": { + "all": [ + "Q85812291" + ], + "preferred": "Q85812291" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05ax2x637.json b/v1.52/v1/05ax2x637.json new file mode 100644 index 000000000..c8aea24ed --- /dev/null +++ b/v1.52/v1/05ax2x637.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/05ax2x637", + "name": "Centre de recherche en paléontologie - Paris", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Muséum national d'Histoire naturelle", + "type": "Parent", + "id": "https://ror.org/03wkt5x30" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Sorbonne Université", + "type": "Parent", + "id": "https://ror.org/02en5vm52" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://paleo.mnhn.fr" + ], + "aliases": [ + "Centre de recherche sur la paleobiodiversite et les paleoenvironnements", + "UMR 7207" + ], + "acronyms": [ + "CR2P" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Center for Research on Palaeontology - Paris", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51780556" + ], + "preferred": "Q51780556" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05b2r4b98.json b/v1.52/v1/05b2r4b98.json new file mode 100644 index 000000000..aa861462b --- /dev/null +++ b/v1.52/v1/05b2r4b98.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/05b2r4b98", + "name": "Swiss Academies of Arts and Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Swiss Academy of Medical Sciences", + "type": "Child", + "id": "https://ror.org/011cav305" + }, + { + "label": "Swiss Academy of Humanities and Social Sciences", + "type": "Child", + "id": "https://ror.org/005381c03" + }, + { + "label": "Swiss Academy of Sciences", + "type": "Child", + "id": "https://ror.org/05tensj89" + }, + { + "label": "Stiftung für Technologiefolgen-Abschätzung", + "type": "Child", + "id": "https://ror.org/02shtak05" + }, + { + "label": "Swiss Academy of Engineering Sciences SATW", + "type": "Child", + "id": "https://ror.org/02h21fy63" + } + ], + "addresses": [ + { + "lat": 46.94761, + "lng": 7.40645, + "state": null, + "state_code": null, + "city": "Berne", + "geonames_city": { + "id": 7285212, + "city": "Berne", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.academies-suisses.ch" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Swiss_Academies_of_Arts_and_Sciences", + "labels": [ + { + "label": "Académies suisses des sciences", + "iso639": "fr" + }, + { + "label": "Akademien der Wissenschaften Schweiz", + "iso639": "de" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0001 2220 3878" + ], + "preferred": "0000 0001 2220 3878" + }, + "Wikidata": { + "all": [ + "Q414502" + ], + "preferred": "Q414502" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05b69xa56.json b/v1.52/v1/05b69xa56.json new file mode 100644 index 000000000..14262fd35 --- /dev/null +++ b/v1.52/v1/05b69xa56.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05b69xa56", + "name": "MIT Art, Design and Technology University", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://mituniversity.ac.in" + ], + "aliases": [ + "MIT ADT University", + "MIT Institute of Design", + "Maharashtra Institute of Technology - Art, Design and Technology University", + "एमआयटी कला, डिझाईन आणि तंत्रज्ञान विद्यापीठ" + ], + "acronyms": [ + "MIT-ADT", + "MIT-ADTU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Maharashtra_Institute_of_Technology_-_Art,_Design_and_Technology_University", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "GRID": { + "all": "grid.501962.9", + "preferred": "grid.501962.9" + }, + "ISNI": { + "all": [ + "0000 0004 8339 4120" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q116960702" + ], + "preferred": "Q116960702" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05bnh6r87.json b/v1.52/v1/05bnh6r87.json new file mode 100644 index 000000000..aa503b6c7 --- /dev/null +++ b/v1.52/v1/05bnh6r87.json @@ -0,0 +1,251 @@ +{ + "id": "https://ror.org/05bnh6r87", + "name": "Cornell University", + "email_address": null, + "ip_addresses": [], + "established": 1865, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "New York Sea Grant", + "type": "Child", + "id": "https://ror.org/031m8s392" + }, + { + "label": "New York Space Grant Consortium", + "type": "Child", + "id": "https://ror.org/03ycy6g75" + }, + { + "label": "New York State College of Agriculture & Life Sciences", + "type": "Child", + "id": "https://ror.org/00j52pq61" + }, + { + "label": "New York State College of Veterinary Medicine", + "type": "Child", + "id": "https://ror.org/04r17kf39" + }, + { + "label": "New York State School of Industrial and Labor Relations", + "type": "Child", + "id": "https://ror.org/00zg6dt46" + }, + { + "label": "New York State University College of Human Ecology", + "type": "Child", + "id": "https://ror.org/047g2xp14" + }, + { + "label": "Weill Cornell Medicine", + "type": "Child", + "id": "https://ror.org/02r109517" + }, + { + "label": "Cornell Lab of Ornithology", + "type": "Child", + "id": "https://ror.org/00k86w020" + }, + { + "label": "Cornell Atkinson Center for Sustainability", + "type": "Child", + "id": "https://ror.org/03h0qhk21" + }, + { + "label": "PARADIM", + "type": "Child", + "id": "https://ror.org/04pw1zg89" + }, + { + "label": "Cornell University Agricultural Experiment Station", + "type": "Child", + "id": "https://ror.org/012qsrr25" + }, + { + "label": "Burke Medical Research Institute", + "type": "Related", + "id": "https://ror.org/02sp1z620" + }, + { + "label": "Burke Rehabilitation Hospital", + "type": "Related", + "id": "https://ror.org/04dnsc767" + }, + { + "label": "Houston Methodist", + "type": "Related", + "id": "https://ror.org/027zt9171" + }, + { + "label": "Lincoln Medical Center", + "type": "Related", + "id": "https://ror.org/035a72598" + }, + { + "label": "Lower Manhattan Hospital", + "type": "Related", + "id": "https://ror.org/01skxn174" + }, + { + "label": "Memorial Sloan Kettering Cancer Center", + "type": "Related", + "id": "https://ror.org/02yrq0923" + }, + { + "label": "Morgan Stanley Children's Hospital", + "type": "Related", + "id": "https://ror.org/016m8pd54" + }, + { + "label": "Museum of the Earth", + "type": "Related", + "id": "https://ror.org/03f91xw18" + }, + { + "label": "New York Hospital Queens", + "type": "Related", + "id": "https://ror.org/01j17xg39" + }, + { + "label": "NewYork–Presbyterian Brooklyn Methodist Hospital", + "type": "Related", + "id": "https://ror.org/04929s478" + }, + { + "label": "NewYork–Presbyterian Hospital", + "type": "Related", + "id": "https://ror.org/03gzbrs57" + }, + { + "label": "The Rogosin Institute", + "type": "Related", + "id": "https://ror.org/05dvpaj72" + }, + { + "label": "Weill Cornell Medical College in Qatar", + "type": "Related", + "id": "https://ror.org/05v5hg569" + }, + { + "label": "Wyckoff Heights Medical Center", + "type": "Related", + "id": "https://ror.org/00yzb1d91" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + }, + { + "label": "arXiv", + "type": "Child", + "id": "https://ror.org/00m2zh467" + } + ], + "addresses": [ + { + "lat": 42.44063, + "lng": -76.49661, + "state": null, + "state_code": null, + "city": "Ithaca", + "geonames_city": { + "id": 5122432, + "city": "Ithaca", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.cornell.edu/" + ], + "aliases": [], + "acronyms": [ + "CU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Cornell_University", + "labels": [ + { + "label": "Universidad Cornell", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007231", + "100007604", + "100006480", + "100006077", + "100006471", + "100006923", + "100007272", + "100008586", + "100007232", + "100009083", + "100008674", + "100008585" + ], + "preferred": "100007231" + }, + "GRID": { + "all": "grid.5386.8", + "preferred": "grid.5386.8" + }, + "ISNI": { + "all": [ + "0000 0004 1936 877X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q49115" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05bp8tz46.json b/v1.52/v1/05bp8tz46.json new file mode 100644 index 000000000..9a9b80728 --- /dev/null +++ b/v1.52/v1/05bp8tz46.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05bp8tz46", + "name": "AlphaSense (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.74595, + "lng": -75.54659, + "state": null, + "state_code": null, + "city": "Wilmington", + "geonames_city": { + "id": 4145381, + "city": "Wilmington", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.alphasense.net/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100015490" + ], + "preferred": "100015490" + }, + "GRID": { + "all": "grid.455192.e", + "preferred": "grid.455192.e" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05bsra506.json b/v1.52/v1/05bsra506.json new file mode 100644 index 000000000..61aab3012 --- /dev/null +++ b/v1.52/v1/05bsra506.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05bsra506", + "name": "Glasgow Childrens Hospital Charity", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.86515, + "lng": -4.25763, + "state": null, + "state_code": null, + "city": "Glasgow", + "geonames_city": { + "id": 2648579, + "city": "Glasgow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.glasgowchildrenshospitalcharity.org/" + ], + "aliases": [ + "Yorkhill Children’s Charity" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008175", + "501100008174", + "100011733" + ], + "preferred": "100011733" + }, + "GRID": { + "all": "grid.479809.b", + "preferred": "grid.479809.b" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05cq64r17.json b/v1.52/v1/05cq64r17.json new file mode 100644 index 000000000..c57267d4d --- /dev/null +++ b/v1.52/v1/05cq64r17.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/05cq64r17", + "name": "University of Łódź", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 51.77058, + "lng": 19.47395, + "state": null, + "state_code": null, + "city": "Lodz", + "geonames_city": { + "id": 3093133, + "city": "Lodz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uni.lodz.pl" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_%C5%81%C3%B3d%C5%BA", + "labels": [ + { + "label": "Uniwersytet Łódzki", + "iso639": "pl" + } + ], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005643" + ], + "preferred": null + }, + "GRID": { + "all": "grid.10789.37", + "preferred": "grid.10789.37" + }, + "ISNI": { + "all": [ + "0000 0000 9730 2769" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q137503" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05cs9th70.json b/v1.52/v1/05cs9th70.json new file mode 100644 index 000000000..a9d1a1ebf --- /dev/null +++ b/v1.52/v1/05cs9th70.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/05cs9th70", + "name": "Conservatorio di musica \"Vecchi Tonelli\"", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.64783, + "lng": 10.92539, + "state": null, + "state_code": null, + "city": "Modena", + "geonames_city": { + "id": 3173331, + "city": "Modena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vecchitonelli.it" + ], + "aliases": [ + "Conservatorio di Musica \"Orazio Vecchi - Antonio Tonelli\"" + ], + "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.52/v1/05cshtm26.json b/v1.52/v1/05cshtm26.json new file mode 100644 index 000000000..66a55cafe --- /dev/null +++ b/v1.52/v1/05cshtm26.json @@ -0,0 +1,170 @@ +{ + "id": "https://ror.org/05cshtm26", + "name": "Great Lakes Research Consortium", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "University at Albany, State University of New York", + "type": "Related", + "id": "https://ror.org/012zs8222" + }, + { + "label": "Binghamton University", + "type": "Related", + "id": "https://ror.org/008rmbt77" + }, + { + "label": "SUNY Brockport", + "type": "Related", + "id": "https://ror.org/0306aeb62" + }, + { + "label": "University at Buffalo, State University of New York", + "type": "Related", + "id": "https://ror.org/01y64my43" + }, + { + "label": "Clarkson University", + "type": "Related", + "id": "https://ror.org/03rwgpn18" + }, + { + "label": "Cornell University", + "type": "Related", + "id": "https://ror.org/05bnh6r87" + }, + { + "label": "SUNY Cortland", + "type": "Related", + "id": "https://ror.org/05a4pj207" + }, + { + "label": "SUNY College of Environmental Science and Forestry", + "type": "Related", + "id": "https://ror.org/00qv0tw17" + }, + { + "label": "SUNY Fredonia", + "type": "Related", + "id": "https://ror.org/05vrs0r17" + }, + { + "label": "SUNY Geneseo", + "type": "Related", + "id": "https://ror.org/03g1q6c06" + }, + { + "label": "Hobart and William Smith Colleges", + "type": "Related", + "id": "https://ror.org/004majf41" + }, + { + "label": "State University of New York at Oswego", + "type": "Related", + "id": "https://ror.org/01597g643" + }, + { + "label": "SUNY Plattsburgh", + "type": "Related", + "id": "https://ror.org/033zmj163" + }, + { + "label": "State University of New York at Potsdam", + "type": "Related", + "id": "https://ror.org/032qgrc76" + }, + { + "label": "Rochester Institute of Technology", + "type": "Related", + "id": "https://ror.org/00v4yb702" + }, + { + "label": "St. Lawrence University", + "type": "Related", + "id": "https://ror.org/05pvqha70" + }, + { + "label": "Syracuse University", + "type": "Related", + "id": "https://ror.org/025r5qe02" + } + ], + "addresses": [ + { + "lat": 43.04812, + "lng": -76.14742, + "state": null, + "state_code": null, + "city": "Syracuse", + "geonames_city": { + "id": 5140405, + "city": "Syracuse", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.esf.edu/glrc/index.php" + ], + "aliases": [], + "acronyms": [ + "GLRC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100013115" + ], + "preferred": "100013115" + }, + "ISNI": { + "all": [ + "0000 0004 1483 9309" + ], + "preferred": "0000 0004 1483 9309" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05ctx1h60.json b/v1.52/v1/05ctx1h60.json new file mode 100644 index 000000000..fc921dcd9 --- /dev/null +++ b/v1.52/v1/05ctx1h60.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/05ctx1h60", + "name": "Franklin Templeton (United States)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.56299, + "lng": -122.32553, + "state": null, + "state_code": null, + "city": "San Mateo", + "geonames_city": { + "id": 5392423, + "city": "San Mateo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.franklintempleton.com" + ], + "aliases": [ + "Franklin Resources", + "Franklin Resources Inc" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Franklin_Templeton_Investments", + "labels": [ + { + "label": "Franklin Templeton", + "iso639": "en" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05d1e6v30.json b/v1.52/v1/05d1e6v30.json new file mode 100644 index 000000000..88432e118 --- /dev/null +++ b/v1.52/v1/05d1e6v30.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/05d1e6v30", + "name": "Institut des Biomolécules Max Mousseron", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre Hospitalier Universitaire de Nîmes", + "type": "Parent", + "id": "https://ror.org/0275ye937" + }, + { + "label": "Institut de Chimie", + "type": "Parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Université d'Avignon et des Pays de Vaucluse", + "type": "Parent", + "id": "https://ror.org/00mfpxb84" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université de Nîmes", + "type": "Parent", + "id": "https://ror.org/044t4x544" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "Parent", + "id": "https://ror.org/03sgyqj04" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ibmm.umontpellier.fr" + ], + "aliases": [ + "UMR 5247" + ], + "acronyms": [ + "IBMM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462008.8", + "preferred": "grid.462008.8" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05d362832.json b/v1.52/v1/05d362832.json new file mode 100644 index 000000000..04aa4e6b3 --- /dev/null +++ b/v1.52/v1/05d362832.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05d362832", + "name": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.648, + "lng": 3.80144, + "state": null, + "state_code": null, + "city": "Grabels", + "geonames_city": { + "id": 3015424, + "city": "Grabels", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://chimeco.umontpellier.fr" + ], + "aliases": [ + "ChimEco", + "Chimie Bio-Inspirée et Innovations Ecologiques", + "UMR 5021" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q52607140" + ], + "preferred": "Q52607140" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05d5m2r55.json b/v1.52/v1/05d5m2r55.json new file mode 100644 index 000000000..4574f12a1 --- /dev/null +++ b/v1.52/v1/05d5m2r55.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/05d5m2r55", + "name": "Institut des Hautes Études Scientifiques", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CEA Paris-Saclay - Etablissement de Saclay", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "Child", + "id": "https://ror.org/04g0ktq11" + } + ], + "addresses": [ + { + "lat": 48.69981, + "lng": 2.17064, + "state": null, + "state_code": null, + "city": "Bures-sur-Yvette", + "geonames_city": { + "id": 3029522, + "city": "Bures-sur-Yvette", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ihes.fr/jsp/site/Portal.jsp" + ], + "aliases": [], + "acronyms": [ + "IHÉS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_des_Hautes_%C3%89tudes_Scientifiques", + "labels": [ + { + "label": "Institut des hautes études scientifiques", + "iso639": "fr" + }, + { + "label": "Institute of Advanced Scientific Studies", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100022300" + ], + "preferred": "501100022300" + }, + "GRID": { + "all": "grid.425258.c", + "preferred": "grid.425258.c" + }, + "ISNI": { + "all": [ + "0000 0000 9123 3862" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1156553" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05dmpdy49.json b/v1.52/v1/05dmpdy49.json new file mode 100644 index 000000000..7150a1bea --- /dev/null +++ b/v1.52/v1/05dmpdy49.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05dmpdy49", + "name": "NSW Department of Communities and Justice", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of New South Wales", + "type": "Parent", + "id": "https://ror.org/0067dvq63" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.dcj.nsw.gov.au/" + ], + "aliases": [ + "Department of Communities and Justice", + "New South Wales Department of Communities and Justice" + ], + "acronyms": [ + "DCJ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Communities_and_Justice", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.507558.a", + "preferred": "grid.507558.a" + }, + "Wikidata": { + "all": [ + "Q65063344" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05e3kjq13.json b/v1.52/v1/05e3kjq13.json new file mode 100644 index 000000000..ec4cb63f5 --- /dev/null +++ b/v1.52/v1/05e3kjq13.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05e3kjq13", + "name": "Rajshahi Medical University", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.374, + "lng": 88.60114, + "state": null, + "state_code": null, + "city": "Rajshahi", + "geonames_city": { + "id": 1185128, + "city": "Rajshahi", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rmu.edu.bd" + ], + "aliases": [], + "acronyms": [ + "RMU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rajshahi_Medical_University", + "labels": [ + { + "label": "রাজশাহী মেডিকেল বিশ্ববিদ্যালয়", + "iso639": "bn" + } + ], + "country": { + "country_name": "Bangladesh", + "country_code": "BD" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q56816080" + ], + "preferred": "Q56816080" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05ed0n793.json b/v1.52/v1/05ed0n793.json new file mode 100644 index 000000000..3d70aa043 --- /dev/null +++ b/v1.52/v1/05ed0n793.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05ed0n793", + "name": "Foundation for Physical Medicine and Rehabilitation", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.99531, + "lng": -87.88451, + "state": null, + "state_code": null, + "city": "Rosemont", + "geonames_city": { + "id": 4908179, + "city": "Rosemont", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://foundationforpmr.org/" + ], + "aliases": [ + "American Academy of Physical Medicine and Rehabilitation", + "ERF-PMR" + ], + "acronyms": [ + "AAPM&R", + "FPMR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010843", + "100011537" + ], + "preferred": "100011537" + }, + "GRID": { + "all": "grid.428804.2", + "preferred": "grid.428804.2" + }, + "ISNI": { + "all": [ + "0000 0004 6084 4678" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30287425" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05em8ne27.json b/v1.52/v1/05em8ne27.json new file mode 100644 index 000000000..d2c047be3 --- /dev/null +++ b/v1.52/v1/05em8ne27.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/05em8ne27", + "name": "Bureau d'Economie Théorique et Appliquée", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université de Lorraine", + "type": "Parent", + "id": "https://ror.org/04vfs2w97" + }, + { + "label": "Université de Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.beta-economics.fr" + ], + "aliases": [], + "acronyms": [ + "BETA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Bureau for Economic Theory and Applications", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.462815.c", + "preferred": "grid.462815.c" + }, + "ISNI": { + "all": [ + "0000 0001 2186 3639" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261564" + ], + "preferred": "Q30261564" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05eytha84.json b/v1.52/v1/05eytha84.json new file mode 100644 index 000000000..63bdd0d9c --- /dev/null +++ b/v1.52/v1/05eytha84.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05eytha84", + "name": "South East Coast Ambulance Service NHS Foundation Trust", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.11303, + "lng": -0.18312, + "state": null, + "state_code": null, + "city": "Crawley", + "geonames_city": { + "id": 2652053, + "city": "Crawley", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.secamb.nhs.uk" + ], + "aliases": [ + "South East Coast Ambulance Service" + ], + "acronyms": [ + "SECAmb" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/South_East_Coast_Ambulance_Service", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0498 7690" + ], + "preferred": "0000 0004 0498 7690" + }, + "Wikidata": { + "all": [ + "Q7567104" + ], + "preferred": "Q7567104" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05fpsjc82.json b/v1.52/v1/05fpsjc82.json new file mode 100644 index 000000000..4d41e126b --- /dev/null +++ b/v1.52/v1/05fpsjc82.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05fpsjc82", + "name": "Institute of Information and Communication Technologies", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Bulgarian Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/01x8hew03" + } + ], + "addresses": [ + { + "lat": 42.69751, + "lng": 23.32415, + "state": null, + "state_code": null, + "city": "Sofia", + "geonames_city": { + "id": 727011, + "city": "Sofia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.iict.bas.bg/EN/" + ], + "aliases": [], + "acronyms": [ + "IICT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Институт по информационни и комуникационни технологии", + "iso639": "bg" + } + ], + "country": { + "country_name": "Bulgaria", + "country_code": "BG" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009494" + ], + "preferred": "501100009494" + }, + "GRID": { + "all": "grid.424988.b", + "preferred": "grid.424988.b" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05frk8994.json b/v1.52/v1/05frk8994.json new file mode 100644 index 000000000..e2a854a78 --- /dev/null +++ b/v1.52/v1/05frk8994.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05frk8994", + "name": "Initial MAnagement and prevention of acute orGan failures IN critically ill patiEnts", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Centre Hospitalier Universitaire de Nîmes", + "type": "Parent", + "id": "https://ror.org/0275ye937" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.umontpellier.fr/recherche/unites-de-recherche/pole-biologie-sante/structures-de-recherche/initial-management-and-prevention-of-acute-organ-failures-in-critically-ill-patients" + ], + "aliases": [], + "acronyms": [ + "IMAGINE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05fwzbv61.json b/v1.52/v1/05fwzbv61.json new file mode 100644 index 000000000..825cbf5fb --- /dev/null +++ b/v1.52/v1/05fwzbv61.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05fwzbv61", + "name": "Yayasan Insanulhaq Cidadungu", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -7.36806, + "lng": 108.525, + "state": null, + "state_code": null, + "city": "Kelurahan Banjar", + "geonames_city": { + "id": 8058466, + "city": "Kelurahan Banjar", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://insanulhaq.or.id" + ], + "aliases": [ + "Insanulhaq", + "Insanulhaq Cidadungu Foundation" + ], + "acronyms": [ + "YIC" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "FundRef": { + "all": [ + "100031438" + ], + "preferred": "100031438" + }, + "ISNI": { + "all": [ + "0000 0005 1712 2845" + ], + "preferred": "0000 0005 1712 2845" + }, + "Wikidata": { + "all": [ + "Q129461778" + ], + "preferred": "Q129461778" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05g16vg65.json b/v1.52/v1/05g16vg65.json new file mode 100644 index 000000000..9e9a5a0d5 --- /dev/null +++ b/v1.52/v1/05g16vg65.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05g16vg65", + "name": "Rare Disease Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.24966, + "lng": -123.11934, + "state": null, + "state_code": null, + "city": "Vancouver", + "geonames_city": { + "id": 6173331, + "city": "Vancouver", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.rarediseasefoundation.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "100012280" + ], + "preferred": "100012280" + }, + "GRID": { + "all": "grid.484594.0", + "preferred": "grid.484594.0" + }, + "ISNI": { + "all": [ + "0000 0004 6431 5685" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q36875041" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05g3dte14.json b/v1.52/v1/05g3dte14.json new file mode 100644 index 000000000..279e025d5 --- /dev/null +++ b/v1.52/v1/05g3dte14.json @@ -0,0 +1,139 @@ +{ + "id": "https://ror.org/05g3dte14", + "name": "Florida State University", + "email_address": null, + "ip_addresses": [], + "established": 1851, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Florida A&M University - Florida State University College of Engineering", + "type": "Child", + "id": "https://ror.org/01v4tq883" + }, + { + "label": "Florida State University-Panama", + "type": "Child", + "id": "https://ror.org/03k9hrc16" + }, + { + "label": "National High Magnetic Field Laboratory", + "type": "Child", + "id": "https://ror.org/03s53g630" + }, + { + "label": "State University System of Florida", + "type": "Parent", + "id": "https://ror.org/05sqd3t97" + }, + { + "label": "Moorea Coral Reef Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/017vyhs10" + }, + { + "label": "Santa Barbara Coastal Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/05hnkta08" + }, + { + "label": "FSU Coastal and Marine Laboratory", + "type": "Child", + "id": "https://ror.org/00j8x3x80" + } + ], + "addresses": [ + { + "lat": 30.43826, + "lng": -84.28073, + "state": null, + "state_code": null, + "city": "Tallahassee", + "geonames_city": { + "id": 4174715, + "city": "Tallahassee", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fsu.edu/" + ], + "aliases": [], + "acronyms": [ + "FSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Florida_State_University", + "labels": [ + { + "label": "Universidad Estatal de Florida", + "iso639": "es" + }, + { + "label": "Université d'État de Floride", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100006597" + ], + "preferred": "100006597" + }, + "GRID": { + "all": "grid.255986.5", + "preferred": "grid.255986.5" + }, + "ISNI": { + "all": [ + "0000 0004 0472 0419" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q861548" + ], + "preferred": "Q861548" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05g7gad22.json b/v1.52/v1/05g7gad22.json new file mode 100644 index 000000000..bc310f13c --- /dev/null +++ b/v1.52/v1/05g7gad22.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/05g7gad22", + "name": "Laboratoire Bioingénierie et Nanosciences", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lbn.umontpellier.fr" + ], + "aliases": [ + "Laboratoire de Bioingénierie et Nanosciences" + ], + "acronyms": [ + "LBN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05gsrh908.json b/v1.52/v1/05gsrh908.json new file mode 100644 index 000000000..da73f0327 --- /dev/null +++ b/v1.52/v1/05gsrh908.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/05gsrh908", + "name": "Ecopetrol (Colombia)", + "email_address": null, + "ip_addresses": [], + "established": 1921, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Instituto Colombiano del Petróleo y Energías de la Transición - Icpet", + "type": "Child", + "id": "https://ror.org/010bvr713" + } + ], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.ecopetrol.com.co/wps/portal/web_es/ecopetrol-web?ChangeLang=en" + ], + "aliases": [ + "Empresa Colombiana de Petróleos S.A." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ecopetrol", + "labels": [], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007222" + ], + "preferred": null + }, + "GRID": { + "all": "grid.467353.0", + "preferred": "grid.467353.0" + }, + "ISNI": { + "all": [ + "0000 0001 2222 4548" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1282130" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05gzn8n94.json b/v1.52/v1/05gzn8n94.json new file mode 100644 index 000000000..d099fc90c --- /dev/null +++ b/v1.52/v1/05gzn8n94.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05gzn8n94", + "name": "PLA Air Force Xi'an Flying College", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "People's Liberation Army Air Force", + "type": "Parent", + "id": "https://ror.org/04f13ze88" + } + ], + "addresses": [ + { + "lat": 34.25833, + "lng": 108.92861, + "state": null, + "state_code": null, + "city": "Xi'an", + "geonames_city": { + "id": 1790630, + "city": "Xi'an", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Air Force Xi'an Flight Academy", + "People's Liberation Army Air Force Xi'an Flying College", + "Xi’an Flying College of PLA Air Force", + "Xi’an Flying College of the People's Liberation Army Air Force" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "中国人民解放军空军西安飞行学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05h1c9n12.json b/v1.52/v1/05h1c9n12.json new file mode 100644 index 000000000..531d8d1e3 --- /dev/null +++ b/v1.52/v1/05h1c9n12.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05h1c9n12", + "name": "Laboratoire de droit privé", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://laboratoiredroitprive.fr" + ], + "aliases": [ + "UR 207" + ], + "acronyms": [ + "LDP" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q51782227" + ], + "preferred": "Q51782227" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05h50sq48.json b/v1.52/v1/05h50sq48.json new file mode 100644 index 000000000..bb67b6425 --- /dev/null +++ b/v1.52/v1/05h50sq48.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/05h50sq48", + "name": "Vuela for Health", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.73915, + "lng": -104.9847, + "state": null, + "state_code": null, + "city": "Denver", + "geonames_city": { + "id": 5419384, + "city": "Denver", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.vuelaforhealth.org" + ], + "aliases": [ + "Vuela" + ], + "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.52/v1/05h5a7d89.json b/v1.52/v1/05h5a7d89.json new file mode 100644 index 000000000..b1ad100a7 --- /dev/null +++ b/v1.52/v1/05h5a7d89.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/05h5a7d89", + "name": "Guiana Space Centre", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "European Space Agency", + "type": "Parent", + "id": "https://ror.org/03wd9za21" + } + ], + "addresses": [ + { + "lat": 5.16281, + "lng": -52.64265, + "state": null, + "state_code": null, + "city": "Kourou", + "geonames_city": { + "id": 3381303, + "city": "Kourou", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://centrespatialguyanais.cnes.fr/fr/" + ], + "aliases": [ + "Europe's Spaceport" + ], + "acronyms": [ + "CSG", + "GSC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Guiana_Space_Centre", + "labels": [ + { + "label": "Centre Spatial Guyanais", + "iso639": "fr" + } + ], + "country": { + "country_name": "French Guiana", + "country_code": "GF" + }, + "external_ids": { + "GRID": { + "all": "grid.507240.4", + "preferred": "grid.507240.4" + }, + "ISNI": { + "all": [ + "0000 0001 2185 1873" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q308987" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05hessd06.json b/v1.52/v1/05hessd06.json new file mode 100644 index 000000000..7067b91df --- /dev/null +++ b/v1.52/v1/05hessd06.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/05hessd06", + "name": "Sekisui Chemical (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Sekisui Kasei (Japan)", + "type": "Child", + "id": "https://ror.org/036w79395" + }, + { + "label": "Sekisui Medical (Japan)", + "type": "Child", + "id": "https://ror.org/02deetg88" + } + ], + "addresses": [ + { + "lat": 34.69379, + "lng": 135.50107, + "state": null, + "state_code": null, + "city": "Osaka", + "geonames_city": { + "id": 1853909, + "city": "Osaka", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.sekisuichemical.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "積水化学工業株式会社", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100012020" + ], + "preferred": "501100012020" + }, + "GRID": { + "all": "grid.471315.5", + "preferred": "grid.471315.5" + }, + "ISNI": { + "all": [ + "0000 0004 1770 184X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05hg41718.json b/v1.52/v1/05hg41718.json new file mode 100644 index 000000000..423b4e585 --- /dev/null +++ b/v1.52/v1/05hg41718.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/05hg41718", + "name": "Ovarian Cancer Research Alliance", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Michigan Ovarian Cancer Alliance", + "type": "Related", + "id": "https://ror.org/04jmzd816" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ocrahope.org/" + ], + "aliases": [ + "Ovarian Cancer Research Fund", + "Ovarian Cancer Research Fund Alliance" + ], + "acronyms": [ + "OCRA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ovarian_Cancer_Research_Alliance", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100001282", + "100013401", + "100014008" + ], + "preferred": "100014008" + }, + "GRID": { + "all": "grid.453334.6", + "preferred": "grid.453334.6" + }, + "ISNI": { + "all": [ + "0000 0004 5906 4973" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q17009040" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05hntsd28.json b/v1.52/v1/05hntsd28.json new file mode 100644 index 000000000..51ca8c9eb --- /dev/null +++ b/v1.52/v1/05hntsd28.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05hntsd28", + "name": "Faculdade Damas da Instrução Cristã", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -8.01175, + "lng": -34.95291, + "state": null, + "state_code": null, + "city": "Recife", + "geonames_city": { + "id": 6320570, + "city": "Recife", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.faculdadedamas.edu.br" + ], + "aliases": [ + "Faculdade Damas" + ], + "acronyms": [ + "FADIC" + ], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Faculdade_Damas_da_Instru%C3%A7%C3%A3o_Crist%C3%A3", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 7402 8129" + ], + "preferred": "0000 0004 7402 8129" + }, + "Wikidata": { + "all": [ + "Q56844764" + ], + "preferred": "Q56844764" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05ht3z286.json b/v1.52/v1/05ht3z286.json new file mode 100644 index 000000000..d856b05b6 --- /dev/null +++ b/v1.52/v1/05ht3z286.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05ht3z286", + "name": "SMEITS", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 44.80401, + "lng": 20.46513, + "state": null, + "state_code": null, + "city": "Belgrade", + "geonames_city": { + "id": 792680, + "city": "Belgrade", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.smeits.rs" + ], + "aliases": [ + "SMEITS - Savez mašinskih i elektrotehničkih inženjera i tehničara Srbije" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Savez mašinskih i elektrotehničkih inženjera i tehničara Srbije", + "iso639": "sr" + }, + { + "label": "Union of Mechanical and Electrical Engineers and Technicians of Serbia", + "iso639": "en" + } + ], + "country": { + "country_name": "Serbia", + "country_code": "RS" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05hy3tk52.json b/v1.52/v1/05hy3tk52.json new file mode 100644 index 000000000..e21c64196 --- /dev/null +++ b/v1.52/v1/05hy3tk52.json @@ -0,0 +1,255 @@ +{ + "id": "https://ror.org/05hy3tk52", + "name": "École Polytechnique", + "email_address": null, + "ip_addresses": [], + "established": 1794, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Laboratoire de Biochimie", + "type": "Child", + "id": "https://ror.org/01c6vgf77" + }, + { + "label": "Centre de Recherche en Économie et Statistique", + "type": "Child", + "id": "https://ror.org/0449khs19" + }, + { + "label": "Centre de Physique Théorique", + "type": "Child", + "id": "https://ror.org/02bsd9p69" + }, + { + "label": "Centre de Gestion Scientifique", + "type": "Child", + "id": "https://ror.org/003y0kg83" + }, + { + "label": "Centre de Mathématiques Appliquées", + "type": "Child", + "id": "https://ror.org/012e1xn46" + }, + { + "label": "Laboratoire d'Informatique de l'École Polytechnique", + "type": "Child", + "id": "https://ror.org/04afed728" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Heteroelements and Coordination Chemistry Lab", + "type": "Child", + "id": "https://ror.org/02cf97417" + }, + { + "label": "Laboratoire des Solides Irradiés", + "type": "Child", + "id": "https://ror.org/015x8rz21" + }, + { + "label": "Laboratoire d'Hydrodynamique", + "type": "Child", + "id": "https://ror.org/018b0x874" + }, + { + "label": "Laboratoire d'Optique Appliquée", + "type": "Child", + "id": "https://ror.org/03czns913" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "Child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "Child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire d'Optique et Biosciences", + "type": "Child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratoire de Synthèse Organique", + "type": "Child", + "id": "https://ror.org/04qgfge56" + }, + { + "label": "Laboratoire de Physique des Interfaces et des Couches Minces", + "type": "Child", + "id": "https://ror.org/023f9y602" + }, + { + "label": "Centre de Mathématiques Laurent Schwartz", + "type": "Child", + "id": "https://ror.org/00b7djk73" + }, + { + "label": "Laboratoire Leprince-Ringuet", + "type": "Child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "CEA Paris-Saclay - Etablissement de Saclay", + "type": "Child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Laboratoire Mécanique des Solides", + "type": "Child", + "id": "https://ror.org/00xd1ek73" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "Child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Microfluidique Physique et Bio-ingénierie", + "type": "Child", + "id": "https://ror.org/05hvqzx20" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "Child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "Child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Institut Polytechnique de Paris", + "type": "Parent", + "id": "https://ror.org/042tfbd02" + }, + { + "label": "École Nationale Supérieure d'Électrotechnique, d'Électronique, d'Informatique, d'Hydraulique et des Télécommunications", + "type": "Related", + "id": "https://ror.org/05wfw4946" + }, + { + "label": "INFRANALYTICS", + "type": "Related", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "Related", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "Related", + "id": "https://ror.org/01sgwka45" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.polytechnique.edu/en" + ], + "aliases": [ + "l'X" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/%C3%89cole_Polytechnique", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007242" + ], + "preferred": null + }, + "GRID": { + "all": "grid.10877.39", + "preferred": "grid.10877.39" + }, + "ISNI": { + "all": [ + "0000 0001 2158 1279" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q273626" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05hz48k23.json b/v1.52/v1/05hz48k23.json new file mode 100644 index 000000000..c8b6416a2 --- /dev/null +++ b/v1.52/v1/05hz48k23.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05hz48k23", + "name": "Vision RT (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.visionrt.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023963" + ], + "preferred": "501100023963" + }, + "GRID": { + "all": "grid.510172.0", + "preferred": "grid.510172.0" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05j3snm48.json b/v1.52/v1/05j3snm48.json new file mode 100644 index 000000000..0327ca1ac --- /dev/null +++ b/v1.52/v1/05j3snm48.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/05j3snm48", + "name": "INFN Sezione di Trieste", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "University of Trieste", + "type": "Parent", + "id": "https://ror.org/02n742c10" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 45.64953, + "lng": 13.77678, + "state": null, + "state_code": null, + "city": "Trieste", + "geonames_city": { + "id": 3165185, + "city": "Trieste", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ts.infn.it/" + ], + "aliases": [ + "Istituto Nazionale di Fisica Nucleare Sezione di Trieste" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.470223.0", + "preferred": "grid.470223.0" + }, + "ISNI": { + "all": [ + "0000 0004 1760 7175" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30265303" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05j96kg65.json b/v1.52/v1/05j96kg65.json new file mode 100644 index 000000000..7918999df --- /dev/null +++ b/v1.52/v1/05j96kg65.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05j96kg65", + "name": "Janeway Children's Health and Rehabilitation Centre", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 47.56494, + "lng": -52.70931, + "state": null, + "state_code": null, + "city": "St. John's", + "geonames_city": { + "id": 6324733, + "city": "St. John's", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.janewayfoundation.nf.ca/about-us/about-the-janeway-hospital/" + ], + "aliases": [ + "Janeway Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Janeway_Children's_Health_and_Rehabilitation_Centre", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100021155" + ], + "preferred": "501100021155" + }, + "GRID": { + "all": "grid.477424.6", + "preferred": "grid.477424.6" + }, + "ISNI": { + "all": [ + "0000 0004 0640 6407" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6153718" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05jm22562.json b/v1.52/v1/05jm22562.json new file mode 100644 index 000000000..ad940860e --- /dev/null +++ b/v1.52/v1/05jm22562.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05jm22562", + "name": "Ausonius Institut de Recherche sur l'Antiquité et le Moyen age", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "Parent", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Université Bordeaux Montaigne", + "type": "Parent", + "id": "https://ror.org/03pbgwk21" + } + ], + "addresses": [ + { + "lat": 44.80565, + "lng": -0.6324, + "state": null, + "state_code": null, + "city": "Pessac", + "geonames_city": { + "id": 2987805, + "city": "Pessac", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://ausonius.u-bordeaux-montaigne.fr" + ], + "aliases": [], + "acronyms": [ + "IRAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.503128.d", + "preferred": "grid.503128.d" + }, + "ISNI": { + "all": [ + "0000 0001 2172 0574" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q51781032" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05jpzcy63.json b/v1.52/v1/05jpzcy63.json new file mode 100644 index 000000000..a28855494 --- /dev/null +++ b/v1.52/v1/05jpzcy63.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05jpzcy63", + "name": "Association for Project Management", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.72549, + "lng": -0.83144, + "state": null, + "state_code": null, + "city": "Princes Risborough", + "geonames_city": { + "id": 2639888, + "city": "Princes Risborough", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.apm.org.uk/" + ], + "aliases": [], + "acronyms": [ + "APM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Association_for_Project_Management", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100024397" + ], + "preferred": "501100024397" + }, + "GRID": { + "all": "grid.499750.6", + "preferred": "grid.499750.6" + }, + "ISNI": { + "all": [ + "0000 0001 0687 6132" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q743620" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05jyayj71.json b/v1.52/v1/05jyayj71.json new file mode 100644 index 000000000..f3a7247c2 --- /dev/null +++ b/v1.52/v1/05jyayj71.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05jyayj71", + "name": "National Hospital Organization Saitama Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "National Hospital Organization", + "type": "Parent", + "id": "https://ror.org/03ntccx93" + } + ], + "addresses": [ + { + "lat": 35.90807, + "lng": 139.65657, + "state": null, + "state_code": null, + "city": "Saitama", + "geonames_city": { + "id": 6940394, + "city": "Saitama", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://saitama.hosp.go.jp" + ], + "aliases": [ + "NHO Saitama Hospital", + "Saitama Hospital", + "埼玉病院" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://ja.wikipedia.org/wiki/%E5%9B%BD%E7%AB%8B%E7%97%85%E9%99%A2%E6%A9%9F%E6%A7%8B%E5%9F%BC%E7%8E%89%E7%97%85%E9%99%A2", + "labels": [ + { + "label": "独立行政法人 国立病院機構 埼玉病院", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q11571594" + ], + "preferred": "Q11571594" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05jytbt55.json b/v1.52/v1/05jytbt55.json new file mode 100644 index 000000000..f120be299 --- /dev/null +++ b/v1.52/v1/05jytbt55.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/05jytbt55", + "name": "National Institute of Metrology Myanmar", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility", + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 21.15214, + "lng": 96.77477, + "state": null, + "state_code": null, + "city": "Yagon", + "geonames_city": { + "id": 1285954, + "city": "Yagon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.myanmarstandards.org.mm/national-institute-of-metrology-myanmar/" + ], + "aliases": [ + "NIM, Myanmar" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "တိကျစွာတိုင်းတာခြင်းနည်းပညာဌာန", + "iso639": "my" + } + ], + "country": { + "country_name": "Myanmar", + "country_code": "MM" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05k0hd440.json b/v1.52/v1/05k0hd440.json new file mode 100644 index 000000000..4e21d2939 --- /dev/null +++ b/v1.52/v1/05k0hd440.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05k0hd440", + "name": "Sonova (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Sonova (Switzerland)", + "type": "Parent", + "id": "https://ror.org/027rr8795" + } + ], + "addresses": [ + { + "lat": 34.44361, + "lng": -118.60953, + "state": null, + "state_code": null, + "city": "Valencia", + "geonames_city": { + "id": 5405288, + "city": "Valencia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.sonova.com/usa/en-us" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Sonova", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.422013.6", + "preferred": "grid.422013.6" + }, + "Wikidata": { + "all": [ + "Q30283463" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05k6w6915.json b/v1.52/v1/05k6w6915.json new file mode 100644 index 000000000..daa0e6870 --- /dev/null +++ b/v1.52/v1/05k6w6915.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05k6w6915", + "name": "North Country Community College", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 44.3295, + "lng": -74.13127, + "state": null, + "state_code": null, + "city": "Saranac Lake", + "geonames_city": { + "id": 5136322, + "city": "Saranac Lake", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nccc.edu" + ], + "aliases": [ + "SUNY North Country Community College", + "State University of New York North Country Community College" + ], + "acronyms": [ + "NCCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/North_Country_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.469025.c", + "preferred": "grid.469025.c" + }, + "ISNI": { + "all": [ + "0000 0004 0388 2694" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q7054934" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05kf27764.json b/v1.52/v1/05kf27764.json new file mode 100644 index 000000000..f1952347f --- /dev/null +++ b/v1.52/v1/05kf27764.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05kf27764", + "name": "Anzac Research Institute", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Government of New South Wales", + "type": "Parent", + "id": "https://ror.org/0067dvq63" + } + ], + "addresses": [ + { + "lat": -33.84722, + "lng": 151.10381, + "state": null, + "state_code": null, + "city": "Concord", + "geonames_city": { + "id": 2170852, + "city": "Concord", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://slhd.health.nsw.gov.au/anzac" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "GRID": { + "all": "grid.456991.6", + "preferred": "grid.456991.6" + }, + "ISNI": { + "all": [ + "0000 0004 0428 8494" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05kpkpg04.json b/v1.52/v1/05kpkpg04.json new file mode 100644 index 000000000..8e37d7d6e --- /dev/null +++ b/v1.52/v1/05kpkpg04.json @@ -0,0 +1,256 @@ +{ + "id": "https://ror.org/05kpkpg04", + "name": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Acteurs, Ressources et Territoires dans le Développement", + "type": "Child", + "id": "https://ror.org/00f5hap04" + }, + { + "label": "Ingénierie des Agropolymères et Technologies Emergentes", + "type": "Child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Animal, Santé, Territoires, Risques et Ecosystèmes", + "type": "Child", + "id": "https://ror.org/006fhby04" + }, + { + "label": "UMR Botanique et Modélisation de l’Architecture des Plantes et des végétations", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Ecologie des Forêts de Guyane", + "type": "Child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Forests and Societies", + "type": "Child", + "id": "https://ror.org/02pzyz439" + }, + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "Child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "CIRED", + "type": "Child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "Child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Peuplements végétaux et bioagresseurs en milieu tropical", + "type": "Child", + "id": "https://ror.org/03mj14b52" + }, + { + "label": "Systèmes d’élevage méditerranéens et tropicaux", + "type": "Child", + "id": "https://ror.org/05merjr74" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "Child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Interactions hotes-vecteurs-parasites-environnement dans les maladies tropicales négligées dues aux trypanosomatides", + "type": "Child", + "id": "https://ror.org/05ye29x39" + }, + { + "label": "Savoirs, Environnement, Sociétés", + "type": "Child", + "id": "https://ror.org/04gpe6h67" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "ABSys", + "type": "Child", + "id": "https://ror.org/00n2c0309" + }, + { + "label": "Agro-écologie et intensification durable des cultures annuelles", + "type": "Child", + "id": "https://ror.org/01hv86c27" + }, + { + "label": "Biomasse, bois, énergie, bio-produits", + "type": "Child", + "id": "https://ror.org/054ktxw16" + }, + { + "label": "Fonctionnement écologique et gestion durable des agrosystèmes bananiers et ananas", + "type": "Child", + "id": "https://ror.org/03zhyf578" + }, + { + "label": "Fonctionnement agroécologique et performances des systèmes de culture horticoles", + "type": "Child", + "id": "https://ror.org/03x53g461" + }, + { + "label": "Recyclage et risque", + "type": "Child", + "id": "https://ror.org/03ze73t75" + }, + { + "label": "Analyses des eaux, sols et végétaux", + "type": "Child", + "id": "https://ror.org/05xk4yb78" + }, + { + "label": "Diversité, adaptation et développement des plantes", + "type": "Child", + "id": "https://ror.org/02banhz78" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "Related", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Genetic Improvement and Adaptation of Mediterranean and Tropical Plants", + "type": "Child", + "id": "https://ror.org/02w4exq36" + }, + { + "label": "Maison des Sciences de l'Homme SUD", + "type": "Child", + "id": "https://ror.org/05s6hm275" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cirad.fr" + ], + "aliases": [], + "acronyms": [ + "CIRAD" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "French Agricultural Research Centre for International Development", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100007204", + "100007599" + ], + "preferred": null + }, + "GRID": { + "all": "grid.8183.2", + "preferred": "grid.8183.2" + }, + "ISNI": { + "all": [ + "0000 0001 2153 9871" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2945274" + ], + "preferred": "Q2945274" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05kxbz959.json b/v1.52/v1/05kxbz959.json new file mode 100644 index 000000000..2d1f2caf6 --- /dev/null +++ b/v1.52/v1/05kxbz959.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/05kxbz959", + "name": "Hyundai Motor Group (South Korea)", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Hyundai Card (South Korea)", + "type": "Child", + "id": "https://ror.org/009z7vc79" + }, + { + "label": "Hyundai Mobis (South Korea)", + "type": "Child", + "id": "https://ror.org/038b1qn73" + }, + { + "label": "Hyundai Motors (South Korea)", + "type": "Child", + "id": "https://ror.org/016kvft77" + }, + { + "label": "Hyundai Steel (South Korea)", + "type": "Child", + "id": "https://ror.org/00rzpns50" + }, + { + "label": "Hyundai Kefico (South Korea)", + "type": "Child", + "id": "https://ror.org/00f5kdg89" + }, + { + "label": "Supernal (United States)", + "type": "Child", + "id": "https://ror.org/04c9vp017" + } + ], + "addresses": [ + { + "lat": 37.566, + "lng": 126.9784, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835848, + "city": "Seoul", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.hyundaimotorgroup.com/Index.hub" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hyundai_Motor_Group", + "labels": [], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "FundRef": { + "all": [ + "100008256", + "501100015697" + ], + "preferred": null + }, + "GRID": { + "all": "grid.467417.7", + "preferred": "grid.467417.7" + }, + "ISNI": { + "all": [ + "0000 0004 6400 465X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q59243" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05kxt4539.json b/v1.52/v1/05kxt4539.json new file mode 100644 index 000000000..015a2cdd6 --- /dev/null +++ b/v1.52/v1/05kxt4539.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05kxt4539", + "name": "Écologie Marine Tropicale des Océans Pacifique et Indien", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Écologie et Environnement", + "type": "Parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "University of Reunion Island", + "type": "Parent", + "id": "https://ror.org/005ypkf75" + }, + { + "label": "Ifremer", + "type": "Parent", + "id": "https://ror.org/044jxhp58" + } + ], + "addresses": [ + { + "lat": -20.88231, + "lng": 55.4504, + "state": null, + "state_code": null, + "city": "Saint-Denis", + "geonames_city": { + "id": 935264, + "city": "Saint-Denis", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://umr-entropie.ird.nc/" + ], + "aliases": [], + "acronyms": [ + "ENTROPIE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Réunion", + "country_code": "RE" + }, + "external_ids": { + "GRID": { + "all": "grid.483415.f", + "preferred": "grid.483415.f" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05kyy7d06.json b/v1.52/v1/05kyy7d06.json new file mode 100644 index 000000000..5d8226b43 --- /dev/null +++ b/v1.52/v1/05kyy7d06.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/05kyy7d06", + "name": "Saab (Sweden)", + "email_address": null, + "ip_addresses": [], + "established": 1937, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Saab (Switzerland)", + "type": "Child", + "id": "https://ror.org/045rgx026" + }, + { + "label": "Saab (United States)", + "type": "Child", + "id": "https://ror.org/0533jxz69" + } + ], + "addresses": [ + { + "lat": 59.34, + "lng": 17.94, + "state": null, + "state_code": null, + "city": "Bromma", + "geonames_city": { + "id": 2719111, + "city": "Bromma", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://saabgroup.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saab", + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100018891" + ], + "preferred": "501100018891" + }, + "GRID": { + "all": "grid.5595.c", + "preferred": "grid.5595.c" + }, + "ISNI": { + "all": [ + "0000 0001 1014 5201" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q219501" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05mqwtr17.json b/v1.52/v1/05mqwtr17.json new file mode 100644 index 000000000..45f7fc30d --- /dev/null +++ b/v1.52/v1/05mqwtr17.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/05mqwtr17", + "name": "Histoire, Archéologie, Littératures des Mondes Chrétiens et Musulmans Médiévaux", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Jean Moulin Lyon III", + "type": "Parent", + "id": "https://ror.org/05b5c0584" + }, + { + "label": "Université Lumière Lyon 2", + "type": "Parent", + "id": "https://ror.org/03rth4p18" + }, + { + "label": "École des hautes études en sciences sociales", + "type": "Parent", + "id": "https://ror.org/02d9dg697" + }, + { + "label": "Université d'Avignon et des Pays de Vaucluse", + "type": "Parent", + "id": "https://ror.org/00mfpxb84" + }, + { + "label": "École Normale Supérieure de Lyon", + "type": "Parent", + "id": "https://ror.org/04zmssz18" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ciham.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CIHAM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.463846.b", + "preferred": "grid.463846.b" + }, + "ISNI": { + "all": [ + "0000 0001 0664 8877" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30262233" + ], + "preferred": "Q30262233" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05ms04m92.json b/v1.52/v1/05ms04m92.json new file mode 100644 index 000000000..4a5947dde --- /dev/null +++ b/v1.52/v1/05ms04m92.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/05ms04m92", + "name": "Buffalo State University", + "email_address": null, + "ip_addresses": [], + "established": 1871, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 42.88645, + "lng": -78.87837, + "state": null, + "state_code": null, + "city": "Buffalo", + "geonames_city": { + "id": 5110629, + "city": "Buffalo", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://suny.buffalostate.edu" + ], + "aliases": [ + "Buffalo State", + "Buffalo State College", + "Buffalo State University, The State University of New York", + "SUNY Buffalo State University", + "State University College at Buffalo" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Buffalo_State_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.468712.e", + "preferred": "grid.468712.e" + }, + "ISNI": { + "all": [ + "0000 0001 0852 5651" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q4570064" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05n2vpf20.json b/v1.52/v1/05n2vpf20.json new file mode 100644 index 000000000..68cee8cc7 --- /dev/null +++ b/v1.52/v1/05n2vpf20.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05n2vpf20", + "name": "Les Roches Marbella International School of Hotel Management", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Les Roches International School of Hotel Management", + "type": "Related", + "id": "https://ror.org/008tr1381" + } + ], + "addresses": [ + { + "lat": 36.51543, + "lng": -4.88583, + "state": null, + "state_code": null, + "city": "Marbella", + "geonames_city": { + "id": 2514169, + "city": "Marbella", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.lesroches.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Les_Roches_Marbella_International_School_of_Hotel_Management", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "all": "grid.468993.9", + "preferred": "grid.468993.9" + }, + "ISNI": { + "all": [ + "0000 0004 1807 7874" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q941862" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05nfk7108.json b/v1.52/v1/05nfk7108.json new file mode 100644 index 000000000..5b42d1829 --- /dev/null +++ b/v1.52/v1/05nfk7108.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05nfk7108", + "name": "German Human Genome-Phenome Archive", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 49.40768, + "lng": 8.69079, + "state": null, + "state_code": null, + "city": "Heidelberg", + "geonames_city": { + "id": 2907911, + "city": "Heidelberg", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://ghga.dkfz.de" + ], + "aliases": [], + "acronyms": [ + "GHGA" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Deutsches_Humangenom-Ph%C3%A4nomarchiv", + "labels": [ + { + "label": "Deutsches Humangenom-Phänomarchiv", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q98380337" + ], + "preferred": "Q98380337" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05nne8c43.json b/v1.52/v1/05nne8c43.json new file mode 100644 index 000000000..0e9907cf2 --- /dev/null +++ b/v1.52/v1/05nne8c43.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/05nne8c43", + "name": "NSW Department of Education", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of New South Wales", + "type": "Parent", + "id": "https://ror.org/0067dvq63" + }, + { + "label": "NSW Office for Learning and Teaching", + "type": "Child", + "id": "https://ror.org/025rgte66" + } + ], + "addresses": [ + { + "lat": -33.86785, + "lng": 151.20732, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 2147714, + "city": "Sydney", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://education.nsw.gov.au" + ], + "aliases": [ + "Department of Education", + "NSW Technical and Further Education", + "New South Wales Department of Education", + "New South Wales Technical and Further Education", + "Technical and Further Education" + ], + "acronyms": [ + "TAFE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Education_(New_South_Wales)", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100001101", + "501100002122" + ], + "preferred": "501100001101" + }, + "GRID": { + "all": "grid.461941.f", + "preferred": "grid.461941.f" + }, + "ISNI": { + "all": [ + "0000 0001 0703 8464" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5260271" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05nspsj29.json b/v1.52/v1/05nspsj29.json new file mode 100644 index 000000000..c9d6f969d --- /dev/null +++ b/v1.52/v1/05nspsj29.json @@ -0,0 +1,71 @@ +{ + "id": "https://ror.org/05nspsj29", + "name": "Mediterranean Experts on Climate and environmental Change", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://medecc.org" + ], + "aliases": [ + "MedECC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05p330p21.json b/v1.52/v1/05p330p21.json new file mode 100644 index 000000000..1b37bf288 --- /dev/null +++ b/v1.52/v1/05p330p21.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05p330p21", + "name": "Shell (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1897, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Shell (Netherlands)", + "type": "Parent", + "id": "https://ror.org/00b5m4j81" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.shell.co.uk/" + ], + "aliases": [ + "Royal Dutch Shell" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Shell_Oil_Company", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010893" + ], + "preferred": "100010893" + }, + "GRID": { + "all": "grid.419549.4", + "preferred": "grid.419549.4" + }, + "ISNI": { + "all": [ + "0000 0001 2202 540X" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05p9e6e48.json b/v1.52/v1/05p9e6e48.json new file mode 100644 index 000000000..06a6e822e --- /dev/null +++ b/v1.52/v1/05p9e6e48.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/05p9e6e48", + "name": "Federal Center for Cardiovascular Surgery Astrakhan", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.34968, + "lng": 48.04076, + "state": null, + "state_code": null, + "city": "Astrakhan", + "geonames_city": { + "id": 580497, + "city": "Astrakhan", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://astra-cardio.ru" + ], + "aliases": [ + "FCCVS Astrakhan", + "FGBO \"FCfCVS\" of Russia Medical Department (Astrakhan)", + "ФГБУ «ФЦССХ» Минздрава России (г. Астрахань)" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Федеральный Центр Сердечно-Сосудистой Хирургии Минздрава России г. Астрахань", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05pmky480.json b/v1.52/v1/05pmky480.json new file mode 100644 index 000000000..49424d4d5 --- /dev/null +++ b/v1.52/v1/05pmky480.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05pmky480", + "name": "Uningá - Centro Universitário Ingá", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -23.42528, + "lng": -51.93861, + "state": null, + "state_code": null, + "city": "Maringá", + "geonames_city": { + "id": 3457671, + "city": "Maringá", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://uninga.br" + ], + "aliases": [ + "Inga University Center", + "Ingá Higher Education Unit LTDA", + "Unidade de Ensino Superior Ingá LTDA" + ], + "acronyms": [ + "UNINGÁ" + ], + "status": "active", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Centro_Universit%C3%A1rio_Ing%C3%A1", + "labels": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q126839671" + ], + "preferred": "Q126839671" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05pys8802.json b/v1.52/v1/05pys8802.json new file mode 100644 index 000000000..1bdd0d391 --- /dev/null +++ b/v1.52/v1/05pys8802.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/05pys8802", + "name": "Pain Labs", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.0828, + "lng": -82.79737, + "state": null, + "state_code": null, + "city": "City of New Albany", + "geonames_city": { + "id": 7317568, + "city": "City of New Albany", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://pzohio.com/pain-labs" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1105 8504" + ], + "preferred": "0000 0005 1105 8504" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05q3vnk25.json b/v1.52/v1/05q3vnk25.json new file mode 100644 index 000000000..cc5301324 --- /dev/null +++ b/v1.52/v1/05q3vnk25.json @@ -0,0 +1,466 @@ +{ + "id": "https://ror.org/05q3vnk25", + "name": "Institut de Recherche pour le Développement", + "email_address": null, + "ip_addresses": [], + "established": 1937, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "AGroecologies, Innovations & Ruralities", + "type": "Child", + "id": "https://ror.org/01sjmsj73" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "Child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "UMR Botanique et Modélisation de l’Architecture des Plantes et des végétations", + "type": "Child", + "id": "https://ror.org/020nks034" + }, + { + "label": "Center for Social Studies on African, American and Asian Worlds", + "type": "Child", + "id": "https://ror.org/03pnk9016" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "Child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "Child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Diversité, adaptation et développement des plantes", + "type": "Child", + "id": "https://ror.org/02banhz78" + }, + { + "label": "Economic & Social Sciences, Health Systems & Medical Informatics", + "type": "Child", + "id": "https://ror.org/0508wny29" + }, + { + "label": "Institut Universitaire Européen de la Mer", + "type": "Child", + "id": "https://ror.org/04pfr1b11" + }, + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "type": "Child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Géoazur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "Child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Gouvernance, Risque, Environnement, Développement", + "type": "Child", + "id": "https://ror.org/01h4rra97" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Institut Pythéas Observatoire des Sciences de l’Univers", + "type": "Child", + "id": "https://ror.org/00f945z63" + }, + { + "label": "Institut de Recherche Pour le Développement", + "type": "Child", + "id": "https://ror.org/05kf9jb93" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/051ykjw41" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/044vzpb64" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/015q23935" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/01j4h9t83" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/00bnthp71" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/03xx98n35" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Child", + "id": "https://ror.org/032qezt74" + }, + { + "label": "Institut des Mondes Africains", + "type": "Child", + "id": "https://ror.org/02qprbz18" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "Child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "Child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institut des Géosciences de l'Environnement", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "Institut de minéralogie, de physique des matériaux et de cosmochimie", + "type": "Child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "LabexMER", + "type": "Child", + "id": "https://ror.org/003n95695" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire des Sciences de l'Environnement Marin", + "type": "Child", + "id": "https://ror.org/05h929866" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratoire HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "Child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Marine Biodiversity Exploitation and Conservation", + "type": "Child", + "id": "https://ror.org/049dk3691" + }, + { + "label": "Institut Méditerranéen de Biodiversité et d'Ecologie Marine et Continentale", + "type": "Child", + "id": "https://ror.org/0409c3995" + }, + { + "label": "Institut Méditerranéen d’Océanologie", + "type": "Child", + "id": "https://ror.org/05258q350" + }, + { + "label": "Mère et Enfant en Milieu Tropical", + "type": "Child", + "id": "https://ror.org/00rd22143" + }, + { + "label": "Pharmacochimie et Pharmacologie pour le Développement", + "type": "Child", + "id": "https://ror.org/03p7xrr08" + }, + { + "label": "Laboratoire Population Environnement Développement", + "type": "Child", + "id": "https://ror.org/017qtjx43" + }, + { + "label": "Centre Population et Développement", + "type": "Child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "Child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "Child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "Child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Unité de Modélisation Mathématique et Informatique des Systèmes Complexes", + "type": "Child", + "id": "https://ror.org/053kxkj53" + }, + { + "label": "Écologie Marine Tropicale des Océans Pacifique et Indien", + "type": "Child", + "id": "https://ror.org/05kxt4539" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "Child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "Child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "UMR QualiSud", + "type": "Child", + "id": "https://ror.org/01nfvkq89" + }, + { + "label": "Patrimoines locaux, Environnement et Globalisation", + "type": "Child", + "id": "https://ror.org/00mryrd39" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "Child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Observatoire de Recherche Montpelliérain de l'Environnement OREME", + "type": "Child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "UMR Espace-Dev", + "type": "Child", + "id": "https://ror.org/01z485314" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "Child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "Child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "Ecosystèmes Insulaires Océaniens", + "type": "Child", + "id": "https://ror.org/001j26r80" + }, + { + "label": "Interactions hotes-vecteurs-parasites-environnement dans les maladies tropicales négligées dues aux trypanosomatides", + "type": "Child", + "id": "https://ror.org/05ye29x39" + }, + { + "label": "UMR Développement et Sociétés", + "type": "Child", + "id": "https://ror.org/00waz9262" + }, + { + "label": "Soutenabilité et Résilence", + "type": "Child", + "id": "https://ror.org/047rqcm40" + }, + { + "label": "Savoirs, Environnement, Sociétés", + "type": "Child", + "id": "https://ror.org/04gpe6h67" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "Child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "Child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "Child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Plant Health Institute de Montpellier", + "type": "Child", + "id": "https://ror.org/05y5s3h28" + }, + { + "label": "Observatoire des Sciences de l'Univers de la Réunion", + "type": "Child", + "id": "https://ror.org/05mv3tj33" + }, + { + "label": "Ministère de l'Europe et des Affaires étrangères", + "type": "Parent", + "id": "https://ror.org/00dfd1509" + }, + { + "label": "Ministère de l’Enseignement Supérieur et de la Recherche", + "type": "Parent", + "id": "https://ror.org/03sjk9a61" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "Related", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Maison des Sciences de l'Homme SUD", + "type": "Child", + "id": "https://ror.org/05s6hm275" + } + ], + "addresses": [ + { + "lat": 43.29695, + "lng": 5.38107, + "state": null, + "state_code": null, + "city": "Marseille", + "geonames_city": { + "id": 2995469, + "city": "Marseille", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://en.ird.fr/" + ], + "aliases": [], + "acronyms": [ + "IRD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_de_recherche_pour_le_d%C3%A9veloppement", + "labels": [ + { + "label": "Institute of Research for Development", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100006137", + "100012947" + ], + "preferred": "100012947" + }, + "GRID": { + "all": "grid.4399.7", + "preferred": "grid.4399.7" + }, + "ISNI": { + "all": [ + "0000 0001 2287 9528" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q2910510" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05q4md098.json b/v1.52/v1/05q4md098.json new file mode 100644 index 000000000..dea54f472 --- /dev/null +++ b/v1.52/v1/05q4md098.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05q4md098", + "name": "Utenos kolegija Higher Education Institution", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.49764, + "lng": 25.59918, + "state": null, + "state_code": null, + "city": "Utena", + "geonames_city": { + "id": 593672, + "city": "Utena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.utenos-kolegija.lt" + ], + "aliases": [ + "Utena University of Applied Sciences" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Utenos kolegija", + "iso639": "lt" + } + ], + "country": { + "country_name": "Lithuania", + "country_code": "LT" + }, + "external_ids": { + "GRID": { + "all": "grid.466222.6", + "preferred": "grid.466222.6" + }, + "ISNI": { + "all": [ + "0000 0004 0382 1349" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05qewa988.json b/v1.52/v1/05qewa988.json new file mode 100644 index 000000000..cbe75c701 --- /dev/null +++ b/v1.52/v1/05qewa988.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05qewa988", + "name": "R Foundation for Statistical Computing", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "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": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.r-project.org/foundation/" + ], + "aliases": [ + "R Foundation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "R Vereinigung für statistisches Rechnen", + "iso639": "de" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q111430684" + ], + "preferred": "Q111430684" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05qghxh33.json b/v1.52/v1/05qghxh33.json new file mode 100644 index 000000000..6e05cf9ae --- /dev/null +++ b/v1.52/v1/05qghxh33.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/05qghxh33", + "name": "Stony Brook University", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "New York Sea Grant", + "type": "Child", + "id": "https://ror.org/031m8s392" + }, + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Memorial Sloan Kettering Cancer Center", + "type": "Related", + "id": "https://ror.org/02yrq0923" + }, + { + "label": "Northport VA Medical Center", + "type": "Related", + "id": "https://ror.org/01xtpc441" + }, + { + "label": "Southampton Hospital", + "type": "Related", + "id": "https://ror.org/05v4bdf81" + }, + { + "label": "Stony Brook University Hospital", + "type": "Related", + "id": "https://ror.org/05wyq9e07" + }, + { + "label": "Winthrop-University Hospital", + "type": "Related", + "id": "https://ror.org/03eksqx74" + } + ], + "addresses": [ + { + "lat": 40.92565, + "lng": -73.14094, + "state": null, + "state_code": null, + "city": "Stony Brook", + "geonames_city": { + "id": 5139865, + "city": "Stony Brook", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.stonybrook.edu" + ], + "aliases": [ + "SUNY Stony Brook", + "State University of New York Stony Brook" + ], + "acronyms": [ + "SBU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Stony_Brook_University", + "labels": [ + { + "label": "Universidad de Stony Brook", + "iso639": "es" + }, + { + "label": "Université d'État de new york à stony brook", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100007259", + "100009115", + "100006802" + ], + "preferred": "100007259" + }, + "GRID": { + "all": "grid.36425.36", + "preferred": "grid.36425.36" + }, + "ISNI": { + "all": [ + "0000 0001 2216 9681" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q969850" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05qj6w324.json b/v1.52/v1/05qj6w324.json new file mode 100644 index 000000000..796472266 --- /dev/null +++ b/v1.52/v1/05qj6w324.json @@ -0,0 +1,219 @@ +{ + "id": "https://ror.org/05qj6w324", + "name": "Nationale Forschungsdateninfrastruktur", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Mathematical Research Data Initiative", + "type": "Child", + "id": "https://ror.org/04ncnzm65" + }, + { + "label": "NFDI4DS", + "type": "Child", + "id": "https://ror.org/00bb4nn95" + }, + { + "label": "DataPLANT", + "type": "Child", + "id": "https://ror.org/01v7r4v08" + }, + { + "label": "German Human Genome-Phenome Archive", + "type": "Child", + "id": "https://ror.org/05nfk7108" + }, + { + "label": "KonsortSWD", + "type": "Child", + "id": "https://ror.org/020tty630" + }, + { + "label": "NFDI4Cat", + "type": "Child", + "id": "https://ror.org/01k9z4a50" + }, + { + "label": "NFDI4Chem", + "type": "Child", + "id": "https://ror.org/05wwzbv21" + }, + { + "label": "NFDI4Culture", + "type": "Child", + "id": "https://ror.org/001jhv750" + }, + { + "label": "NFDI4Health", + "type": "Child", + "id": "https://ror.org/0305k8y39" + }, + { + "label": "NFDI4Ing", + "type": "Child", + "id": "https://ror.org/00enhv193" + }, + { + "label": "BERD@NFDI", + "type": "Child", + "id": "https://ror.org/02cxb1m07" + }, + { + "label": "DAPHNE4NFDI", + "type": "Child", + "id": "https://ror.org/03xrvbe74" + }, + { + "label": "FAIRmat", + "type": "Child", + "id": "https://ror.org/034pbpe12" + }, + { + "label": "NFDI-MatWerk", + "type": "Child", + "id": "https://ror.org/01d2qgg03" + }, + { + "label": "NFDI4Earth", + "type": "Child", + "id": "https://ror.org/01f5dqg10" + }, + { + "label": "NFDI4Microbiota", + "type": "Child", + "id": "https://ror.org/03a4sp974" + }, + { + "label": "PUNCH4NFDI", + "type": "Child", + "id": "https://ror.org/03f6sdf65" + }, + { + "label": "Text+", + "type": "Child", + "id": "https://ror.org/04dy2xw62" + }, + { + "label": "Base4NFDI", + "type": "Child", + "id": "https://ror.org/01dvske68" + }, + { + "label": "FAIRAgro", + "type": "Child", + "id": "https://ror.org/00r0qs524" + }, + { + "label": "NFDI4BIOIMAGE", + "type": "Child", + "id": "https://ror.org/01vnkaz16" + }, + { + "label": "NFDI4Energy", + "type": "Child", + "id": "https://ror.org/0238fds33" + }, + { + "label": "NFDI4Immuno", + "type": "Child", + "id": "https://ror.org/01k8bwd50" + }, + { + "label": "NFDI4Objects", + "type": "Child", + "id": "https://ror.org/01xptp363" + }, + { + "label": "NFDIxCS", + "type": "Child", + "id": "https://ror.org/0033j3009" + }, + { + "label": "NFDI4Biodiversity", + "type": "Child", + "id": "https://ror.org/03fqpzb44" + }, + { + "label": "NFDI4Memory", + "type": "Child", + "id": "https://ror.org/0310v3480" + } + ], + "addresses": [ + { + "lat": 49.00937, + "lng": 8.40444, + "state": null, + "state_code": null, + "city": "Karlsruhe", + "geonames_city": { + "id": 2892794, + "city": "Karlsruhe", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nfdi.de" + ], + "aliases": [], + "acronyms": [ + "NFDI" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Nationale_Forschungsdateninfrastruktur", + "labels": [ + { + "label": "German National Research Data Infrastructure", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q105757481" + ], + "preferred": "Q105757481" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05qqb8y62.json b/v1.52/v1/05qqb8y62.json new file mode 100644 index 000000000..8af8871a5 --- /dev/null +++ b/v1.52/v1/05qqb8y62.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05qqb8y62", + "name": "Instituto Tecnológico Superior del Occidente del Estado de Hidalgo", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tecnológico Nacional de México", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "addresses": [ + { + "lat": 20.23031, + "lng": -99.21396, + "state": null, + "state_code": null, + "city": "Mixquiahuala de Juarez", + "geonames_city": { + "id": 3523127, + "city": "Mixquiahuala de Juarez", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.itsoeh.edu.mx" + ], + "aliases": [ + "TecNM Campus Occidente del Estado de Hildago", + "Tecnológico Nacional de México Campus Occidente del Estado de Hildago" + ], + "acronyms": [ + "ITSOEH" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_Superior_del_Occidente_del_Estado_de_Hidalgo", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1770 1524" + ], + "preferred": "0000 0004 1770 1524" + }, + "Wikidata": { + "all": [ + "Q70041395" + ], + "preferred": "Q70041395" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05r0ap620.json b/v1.52/v1/05r0ap620.json new file mode 100644 index 000000000..2881d449e --- /dev/null +++ b/v1.52/v1/05r0ap620.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/05r0ap620", + "name": "Zurich University of the Arts", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "ZHAW Zurich University of Applied Sciences", + "type": "Related", + "id": "https://ror.org/05pmsvm27" + } + ], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.zhdk.ch/" + ], + "aliases": [], + "acronyms": [ + "ZHdK" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Zurich_University_of_the_Arts", + "labels": [ + { + "label": "Haute École d'Art de Zurich", + "iso639": "fr" + }, + { + "label": "Zürcher Hochschule der Künste", + "iso639": "de" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "all": "grid.449912.3", + "preferred": "grid.449912.3" + }, + "ISNI": { + "all": [ + "0000 0001 2187 6018" + ], + "preferred": "0000 0001 2187 6018" + }, + "Wikidata": { + "all": [ + "Q222450" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05r2q4835.json b/v1.52/v1/05r2q4835.json new file mode 100644 index 000000000..ed47bdec8 --- /dev/null +++ b/v1.52/v1/05r2q4835.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/05r2q4835", + "name": "Chengdu Fine Optical Engineering Research Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 30.66667, + "lng": 104.06667, + "state": null, + "state_code": null, + "city": "Chengdu", + "geonames_city": { + "id": 1815286, + "city": "Chengdu", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [], + "aliases": [ + "Chengdu Fine Optics" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "成都精密光学工程研究中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05r332y60.json b/v1.52/v1/05r332y60.json new file mode 100644 index 000000000..86bcc2b25 --- /dev/null +++ b/v1.52/v1/05r332y60.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/05r332y60", + "name": "Institut des Sciences des Plantes de Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "Parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "type": "Parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www1.montpellier.inra.fr/wp-inra/bpmp/en/" + ], + "aliases": [ + "Biochemistry and Plant Molecular Physiology", + "Biochimie et Physiologie Moléculaire des Plantes" + ], + "acronyms": [ + "BPMP", + "IPSiM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institute for Plant Sciences of Montpellier", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "all": "grid.461861.c", + "preferred": "grid.461861.c" + }, + "ISNI": { + "all": [ + "0000 0004 0445 8430" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q30261319" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05r81yb60.json b/v1.52/v1/05r81yb60.json new file mode 100644 index 000000000..1ef184f8e --- /dev/null +++ b/v1.52/v1/05r81yb60.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05r81yb60", + "name": "Jan Biziel University Hospital No. 2 in Bydgoszcz", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Collegium Medicum in Bydgoszcz", + "type": "Parent", + "id": "https://ror.org/04c5jwj47" + } + ], + "addresses": [ + { + "lat": 53.1235, + "lng": 18.00762, + "state": null, + "state_code": null, + "city": "Bydgoszcz", + "geonames_city": { + "id": 3102014, + "city": "Bydgoszcz", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.biziel.umk.pl" + ], + "aliases": [ + "Biziel", + "Jan Biziel University Hospital No. 2", + "Szpital Uniwersytecki nr 2 im. dr. Jana Biziela" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://pl.wikipedia.org/wiki/Szpital_Uniwersytecki_nr_2_im._Jana_Biziela_w_Bydgoszczy", + "labels": [ + { + "label": "Szpital Uniwersytecki nr 2 im. dr. Jana Biziela w Bydgoszczy", + "iso639": "pl" + } + ], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 6063 7919" + ], + "preferred": "0000 0004 6063 7919" + }, + "Wikidata": { + "all": [ + "Q24946187" + ], + "preferred": "Q24946187" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05r8dqr10.json b/v1.52/v1/05r8dqr10.json new file mode 100644 index 000000000..c8e6829ae --- /dev/null +++ b/v1.52/v1/05r8dqr10.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/05r8dqr10", + "name": "University of Rijeka", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Klinički Bolnički Centar Rijeka", + "type": "Related", + "id": "https://ror.org/027wyhf03" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 45.32673, + "lng": 14.44241, + "state": null, + "state_code": null, + "city": "Rijeka", + "geonames_city": { + "id": 3191648, + "city": "Rijeka", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.uniri.hr/index.php?lang=en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Rijeka", + "labels": [ + { + "label": "Sveučilište u Rijeci", + "iso639": "hr" + } + ], + "country": { + "country_name": "Croatia", + "country_code": "HR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023652" + ], + "preferred": "501100023652" + }, + "GRID": { + "all": "grid.22939.33", + "preferred": "grid.22939.33" + }, + "ISNI": { + "all": [ + "0000 0001 2236 1630" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q787388" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05s6hm275.json b/v1.52/v1/05s6hm275.json new file mode 100644 index 000000000..6c49cb885 --- /dev/null +++ b/v1.52/v1/05s6hm275.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05s6hm275", + "name": "Maison des Sciences de l'Homme SUD", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Centre National de la Recherche Scientifique", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "Parent", + "id": "https://ror.org/00qhdy563" + }, + { + "label": "Université de Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "Parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "Parent", + "id": "https://ror.org/05kpkpg04" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.mshsud.org" + ], + "aliases": [ + "MSH Sud", + "Maison des Sciences de l'Homme SUD - Sciences et société Unies pour un autre Développement", + "Maison des Sciences de l'Homme SUD de Montpellier" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05sw4wc49.json b/v1.52/v1/05sw4wc49.json new file mode 100644 index 000000000..e44d0d5df --- /dev/null +++ b/v1.52/v1/05sw4wc49.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/05sw4wc49", + "name": "University of Osijek", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Andrija Stampar Teaching Institute of Public Health", + "type": "Child", + "id": "https://ror.org/046g5hb52" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 45.55111, + "lng": 18.69389, + "state": null, + "state_code": null, + "city": "Osijek", + "geonames_city": { + "id": 3193935, + "city": "Osijek", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.unios.hr/?english&i=1004" + ], + "aliases": [ + "Josip Juraj Strossmayer University of Osijek", + "Sveučilište J.J. Strossmayera" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Osijek", + "labels": [ + { + "label": "Sveučilište Josipa Jurja Strossmayera u Osijeku", + "iso639": "hr" + } + ], + "country": { + "country_name": "Croatia", + "country_code": "HR" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100009390" + ], + "preferred": "501100009390" + }, + "GRID": { + "all": "grid.412680.9", + "preferred": "grid.412680.9" + }, + "ISNI": { + "all": [ + "0000 0001 1015 399X" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q1708709" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05sy4b952.json b/v1.52/v1/05sy4b952.json new file mode 100644 index 000000000..94712fe22 --- /dev/null +++ b/v1.52/v1/05sy4b952.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05sy4b952", + "name": "Saba University School of Medicine", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 17.62652, + "lng": -63.24971, + "state": null, + "state_code": null, + "city": "The Bottom", + "geonames_city": { + "id": 3513173, + "city": "The Bottom", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.saba.edu" + ], + "aliases": [ + "Saba Medical School", + "Saba University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saba_University_School_of_Medicine", + "labels": [], + "country": { + "country_name": "Bonaire, Sint Eustatius, and Saba", + "country_code": "BQ" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1764 5649" + ], + "preferred": "0000 0004 1764 5649" + }, + "Wikidata": { + "all": [ + "Q2105549" + ], + "preferred": "Q2105549" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05symbg58.json b/v1.52/v1/05symbg58.json new file mode 100644 index 000000000..082a7bd40 --- /dev/null +++ b/v1.52/v1/05symbg58.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/05symbg58", + "name": "INFN Sezione di Pisa", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "University of Perugia", + "type": "Parent", + "id": "https://ror.org/00x27da85" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 43.70853, + "lng": 10.4036, + "state": null, + "state_code": null, + "city": "Pisa", + "geonames_city": { + "id": 3170647, + "city": "Pisa", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.pi.infn.it/" + ], + "aliases": [ + "Istituto Nazionale di Fisica Nucleare Sezione di Pisa" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.470216.6", + "preferred": "grid.470216.6" + }, + "Wikidata": { + "all": [ + "Q30265297" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05tf9r976.json b/v1.52/v1/05tf9r976.json new file mode 100644 index 000000000..a3d77549d --- /dev/null +++ b/v1.52/v1/05tf9r976.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/05tf9r976", + "name": "Chinese People's Liberation Army", + "email_address": null, + "ip_addresses": [], + "established": 1927, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "PLA Navy Submarine Academy", + "type": "Child", + "id": "https://ror.org/0585bz443" + }, + { + "label": "Army Command College", + "type": "Child", + "id": "https://ror.org/04fxmcy40" + }, + { + "label": "Army Infantry College of PLA", + "type": "Child", + "id": "https://ror.org/051exe838" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://eng.chinamil.com.cn/" + ], + "aliases": [], + "acronyms": [ + "PLA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/People%27s_Liberation_Army", + "labels": [ + { + "label": "中国人民解放军", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100017675" + ], + "preferred": "501100017675" + }, + "GRID": { + "all": "grid.488137.1", + "preferred": "grid.488137.1" + }, + "ISNI": { + "all": [ + "0000 0001 2267 2324" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q200106" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05tppve82.json b/v1.52/v1/05tppve82.json new file mode 100644 index 000000000..6f566da6f --- /dev/null +++ b/v1.52/v1/05tppve82.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05tppve82", + "name": "Federal Polytechnic, Idah", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 7.08144, + "lng": 6.71514, + "state": null, + "state_code": null, + "city": "Idah", + "geonames_city": { + "id": 8637969, + "city": "Idah", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://fepoda.edu.ng" + ], + "aliases": [ + "Idah College of Technology" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_Polytechnic%2C_Idah", + "labels": [], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 1764 6473" + ], + "preferred": "0000 0004 1764 6473" + }, + "Wikidata": { + "all": [ + "Q25044411" + ], + "preferred": "Q25044411" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05v0vas53.json b/v1.52/v1/05v0vas53.json new file mode 100644 index 000000000..cbe974d43 --- /dev/null +++ b/v1.52/v1/05v0vas53.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05v0vas53", + "name": "Nassau Community College", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + } + ], + "addresses": [ + { + "lat": 40.72677, + "lng": -73.6343, + "state": null, + "state_code": null, + "city": "Garden City", + "geonames_city": { + "id": 5118226, + "city": "Garden City", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.ncc.edu/" + ], + "aliases": [ + "SUNY Nassau Community College", + "State University of New York Nassau Community College" + ], + "acronyms": [ + "NCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nassau_Community_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "all": "grid.502226.1", + "preferred": "grid.502226.1" + }, + "ISNI": { + "all": [ + "0000 0001 2298 4555" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6967558" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05v10bv14.json b/v1.52/v1/05v10bv14.json new file mode 100644 index 000000000..8686eb391 --- /dev/null +++ b/v1.52/v1/05v10bv14.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05v10bv14", + "name": "Researcherenye Wappayalawangka - Central Australia Academic Health Science Network", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -23.69748, + "lng": 133.88362, + "state": null, + "state_code": null, + "city": "Alice Springs", + "geonames_city": { + "id": 2077895, + "city": "Alice Springs", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://caahsn.org.au" + ], + "aliases": [ + "Central Australia Academic Health Science Network", + "Researcherenye Wappayalawangka" + ], + "acronyms": [ + "CAAHSN" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Central Australia Academic Health Science Network", + "iso639": "en" + }, + { + "label": "Researcherenye Wappayalawangka", + "iso639": null + } + ], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05ve6g218.json b/v1.52/v1/05ve6g218.json new file mode 100644 index 000000000..7d0e8ffed --- /dev/null +++ b/v1.52/v1/05ve6g218.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/05ve6g218", + "name": "China National Building Materials Group (China)", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Sinoma Science & Technology Co., Ltd. (China)", + "type": "Child", + "id": "https://ror.org/03d0r5461" + }, + { + "label": "China Building Materials Academy", + "type": "Child", + "id": "https://ror.org/020q9r015" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cnbm.com.cn" + ], + "aliases": [ + "China National Building Material Group Co.", + "China National Building Material Group Co., Ltd.", + "China National Building Materials Group", + "Sinoma" + ], + "acronyms": [ + "CNBM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/China_National_Materials_Group_Corporation", + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "all": "grid.469597.0", + "preferred": "grid.469597.0" + }, + "ISNI": { + "all": [ + "0000 0004 1771 8211" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q5099812" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05vghhr25.json b/v1.52/v1/05vghhr25.json new file mode 100644 index 000000000..9d594fb8b --- /dev/null +++ b/v1.52/v1/05vghhr25.json @@ -0,0 +1,128 @@ +{ + "id": "https://ror.org/05vghhr25", + "name": "University of Turku", + "email_address": null, + "ip_addresses": [], + "established": 1920, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Turku Centre for Computer Science", + "type": "Child", + "id": "https://ror.org/00vy7ed73" + }, + { + "label": "Turku PET Centre", + "type": "Child", + "id": "https://ror.org/01761e930" + }, + { + "label": "Turun Yliopistosäätiö", + "type": "Child", + "id": "https://ror.org/02kjggt26" + }, + { + "label": "Turku University Hospital", + "type": "Related", + "id": "https://ror.org/05dbzj528" + }, + { + "label": "MAGIC Telescopes", + "type": "Related", + "id": "https://ror.org/02w0r2764" + } + ], + "addresses": [ + { + "lat": 60.45148, + "lng": 22.26869, + "state": null, + "state_code": null, + "city": "Turku", + "geonames_city": { + "id": 633679, + "city": "Turku", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.utu.fi/en/Pages/home.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Turku", + "labels": [ + { + "label": "Turun yliopisto", + "iso639": "fi" + }, + { + "label": "Åbo universitet", + "iso639": "sv" + } + ], + "country": { + "country_name": "Finland", + "country_code": "FI" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100005609", + "501100008557" + ], + "preferred": null + }, + "GRID": { + "all": "grid.1374.1", + "preferred": "grid.1374.1" + }, + "ISNI": { + "all": [ + "0000 0001 2097 1371" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q501841" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05vn9ks38.json b/v1.52/v1/05vn9ks38.json new file mode 100644 index 000000000..abbcd9349 --- /dev/null +++ b/v1.52/v1/05vn9ks38.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05vn9ks38", + "name": "Meningitis Now", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.75, + "lng": -2.2, + "state": null, + "state_code": null, + "city": "Stroud", + "geonames_city": { + "id": 2636616, + "city": "Stroud", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.meningitisnow.org/" + ], + "aliases": [ + "Meningitis UK" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Meningitis_UK", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100008172", + "501100000387", + "100011725" + ], + "preferred": "100011725" + }, + "GRID": { + "all": "grid.468580.7", + "preferred": "grid.468580.7" + }, + "ISNI": { + "all": [ + "0000 0004 5900 3361" + ], + "preferred": "0000 0004 5900 3361" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05vrs0r17.json b/v1.52/v1/05vrs0r17.json new file mode 100644 index 000000000..d28d31cb2 --- /dev/null +++ b/v1.52/v1/05vrs0r17.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/05vrs0r17", + "name": "SUNY Fredonia", + "email_address": null, + "ip_addresses": [], + "established": 1826, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 42.44006, + "lng": -79.33171, + "state": null, + "state_code": null, + "city": "Fredonia", + "geonames_city": { + "id": 5117926, + "city": "Fredonia", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.fredonia.edu" + ], + "aliases": [ + "Fredonia State College", + "State University of New York at Fredonia" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Fredonia", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010957" + ], + "preferred": "100010957" + }, + "GRID": { + "all": "grid.264268.c", + "preferred": "grid.264268.c" + }, + "ISNI": { + "all": [ + "0000 0004 0388 0154" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q6487738" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05vt9rv16.json b/v1.52/v1/05vt9rv16.json new file mode 100644 index 000000000..03ccca3fa --- /dev/null +++ b/v1.52/v1/05vt9rv16.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/05vt9rv16", + "name": "European Space Research Institute", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "European Space Agency", + "type": "Parent", + "id": "https://ror.org/03wd9za21" + } + ], + "addresses": [ + { + "lat": 41.8091, + "lng": 12.67942, + "state": null, + "state_code": null, + "city": "Frascati", + "geonames_city": { + "id": 3176589, + "city": "Frascati", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://www.esa.int/About_Us/ESRIN" + ], + "aliases": [ + "ESA Centre for Earth Observation" + ], + "acronyms": [ + "ESRIN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ESA_Centre_for_Earth_Observation", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "all": "grid.507236.5", + "preferred": "grid.507236.5" + }, + "ISNI": { + "all": [ + "0000 0001 1013 9346" + ], + "preferred": null + }, + "Wikidata": { + "all": [ + "Q175492" + ], + "preferred": null + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05vzw3663.json b/v1.52/v1/05vzw3663.json new file mode 100644 index 000000000..04d53a9bc --- /dev/null +++ b/v1.52/v1/05vzw3663.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/05vzw3663", + "name": "British Society of Interventional Radiology", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.bsir.org/" + ], + "aliases": [], + "acronyms": [ + "BSIR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "501100023476" + ], + "preferred": "501100023476" + }, + "GRID": { + "all": "grid.489507.7", + "preferred": "grid.489507.7" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05wk90v81.json b/v1.52/v1/05wk90v81.json new file mode 100644 index 000000000..42c6507ed --- /dev/null +++ b/v1.52/v1/05wk90v81.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/05wk90v81", + "name": "Central Research Institute for Machine Building", + "email_address": null, + "ip_addresses": [], + "established": 1929, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Russian Federal Space Agency", + "type": "Parent", + "id": "https://ror.org/04abg5t05" + } + ], + "addresses": [ + { + "lat": 55.91732, + "lng": 37.81786, + "state": null, + "state_code": null, + "city": "Korolyov", + "geonames_city": { + "id": 8521441, + "city": "Korolyov", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://tsniimash.ru" + ], + "aliases": [ + "Central Research Institute of Machine Building", + "Central Scientific Research Institute of Machine Building Technology", + "JSC «TsNIIMash»", + "Joint Stock Company «Central Research Institute for Machine Building»", + "ЦНИИмаш" + ], + "acronyms": [ + "TsNIITMASH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Центральный научно-исследовательский институт машиностроения", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "GRID": { + "all": "grid.494747.d", + "preferred": "grid.494747.d" + }, + "Wikidata": { + "all": [ + "Q52844985", + "Q737127" + ], + "preferred": "Q737127" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05wwzbv21.json b/v1.52/v1/05wwzbv21.json new file mode 100644 index 000000000..604345e3d --- /dev/null +++ b/v1.52/v1/05wwzbv21.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05wwzbv21", + "name": "NFDI4Chem", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "addresses": [ + { + "lat": 50.92878, + "lng": 11.5899, + "state": null, + "state_code": null, + "city": "Jena", + "geonames_city": { + "id": 2895044, + "city": "Jena", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.nfdi4chem.de" + ], + "aliases": [ + "NFDI4Chem - Fachkonsortium Chemie in der NFDI" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/NFDI4Chem", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "all": [ + "Q96678459" + ], + "preferred": "Q96678459" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05wykb893.json b/v1.52/v1/05wykb893.json new file mode 100644 index 000000000..a7dbc8ace --- /dev/null +++ b/v1.52/v1/05wykb893.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/05wykb893", + "name": "Hellenic Survey of Geology and Mineral Exploration", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Institute of Geology and Mineral Exploration", + "type": "Predecessor", + "id": "https://ror.org/02ck2yw57" + } + ], + "addresses": [ + { + "lat": 38.08333, + "lng": 23.73333, + "state": null, + "state_code": null, + "city": "Acharnes", + "geonames_city": { + "id": 265488, + "city": "Acharnes", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://eagme.gr" + ], + "aliases": [ + "Elliniki Archi Geologikon Kai Metalleftikon Erevnon" + ], + "acronyms": [ + "HSGME", + "ΕΑΓΜΕ" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Elliniki Archi Geologikon Kai Metalleftikon Erevnon", + "iso639": "el" + }, + { + "label": "Ελληνική Αρχή Γεωλογικών & Μεταλλευτικών Ερευνών", + "iso639": "el" + } + ], + "country": { + "country_name": "Greece", + "country_code": "GR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0005 1763 9377" + ], + "preferred": "0000 0005 1763 9377" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05x3amg60.json b/v1.52/v1/05x3amg60.json new file mode 100644 index 000000000..533bd212f --- /dev/null +++ b/v1.52/v1/05x3amg60.json @@ -0,0 +1,75 @@ +{ + "id": "https://ror.org/05x3amg60", + "name": "Cambridge IVF", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Cambridge University Hospitals NHS Foundation Trust", + "type": "Parent", + "id": "https://ror.org/04v54gj93" + } + ], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.cambridge-ivf.nhs.uk" + ], + "aliases": [], + "acronyms": [], + "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.52/v1/05x6axq16.json b/v1.52/v1/05x6axq16.json new file mode 100644 index 000000000..6d5a060e6 --- /dev/null +++ b/v1.52/v1/05x6axq16.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/05x6axq16", + "name": "Moscow Institute of Psychoanalysis", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.75222, + "lng": 37.61556, + "state": null, + "state_code": null, + "city": "Moscow", + "geonames_city": { + "id": 524901, + "city": "Moscow", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://inpsycho.ru" + ], + "aliases": [ + "НОЧУ ВО «Московский институт психоанализа»" + ], + "acronyms": [ + "MIP", + "МИП" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Московский институт психоанализа", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.52/v1/05xdft911.json b/v1.52/v1/05xdft911.json new file mode 100644 index 000000000..57d470892 --- /dev/null +++ b/v1.52/v1/05xdft911.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/05xdft911", + "name": "Microsoft Research Montréal (Canada)", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Microsoft (United States)", + "type": "Parent", + "id": "https://ror.org/00d0nc645" + } + ], + "addresses": [ + { + "lat": 45.50884, + "lng": -73.58781, + "state": null, + "state_code": null, + "city": "Montreal", + "geonames_city": { + "id": 6077243, + "city": "Montreal", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://www.microsoft.com/en-us/research/lab/microsoft-research-montreal/" + ], + "aliases": [ + "MSR Montréal", + "Microsoft Research Lab – Montréal", + "Microsoft Research Montreal" + ], + "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.52/v1/05xrx2377.json b/v1.52/v1/05xrx2377.json new file mode 100644 index 000000000..b3703a472 --- /dev/null +++ b/v1.52/v1/05xrx2377.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/05xrx2377", + "name": "Laboratoire Parisien de Psychologie Sociale", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Université Paris Nanterre", + "type": "Parent", + "id": "https://ror.org/013bkhk48" + }, + { + "label": "Université Paris 8", + "type": "Parent", + "id": "https://ror.org/04wez5e68" + } + ], + "addresses": [ + { + "lat": 48.89198, + "lng": 2.20675, + "state": null, + "state_code": null, + "city": "Nanterre", + "geonames_city": { + "id": 2990970, + "city": "Nanterre", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://lapps.parisnanterre.fr" + ], + "aliases": [ + "Parisian Laboratory of Social Psychology" + ], + "acronyms": [ + "LAPPS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 0452 7213" + ], + "preferred": "0000 0004 0452 7213" + }, + "Wikidata": { + "all": [ + "Q51784789" + ], + "preferred": "Q51784789" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05y5zrm38.json b/v1.52/v1/05y5zrm38.json new file mode 100644 index 000000000..4d258cb0d --- /dev/null +++ b/v1.52/v1/05y5zrm38.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/05y5zrm38", + "name": "Scottish Salmon Producers Organisation", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 56.39522, + "lng": -3.43139, + "state": null, + "state_code": null, + "city": "Perth", + "geonames_city": { + "id": 2640358, + "city": "Perth", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "http://scottishsalmon.co.uk/" + ], + "aliases": [], + "acronyms": [ + "SSPO" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "all": [ + "100010695", + "100010694" + ], + "preferred": "100010694" + }, + "GRID": { + "all": "grid.481309.7", + "preferred": "grid.481309.7" + } + } +} \ No newline at end of file diff --git a/v1.52/v1/05yqeks58.json b/v1.52/v1/05yqeks58.json new file mode 100644 index 000000000..8c12e0ef2 --- /dev/null +++ b/v1.52/v1/05yqeks58.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05yqeks58", + "name": "The Centre for Reproductive & Genetic Health", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "geonames_admin2": { + "ascii_name": null, + "code": null, + "id": null, + "name": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "code": null, + "name": null + }, + "nuts_level2": { + "code": null, + "name": null + }, + "nuts_level3": { + "code": null, + "name": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": null + } + ], + "links": [ + "https://crgh.co.uk" + ], + "aliases": [ + "Centre for Reproductive and Genetic Health" + ], + "acronyms": [ + "CRGH" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "all": [ + "0000 0004 4666 2413" + ], + "preferred": "0000 0004 4666 2413" + }, + "Wikidata": { + "all": [ + "Q102867797" + ], + "preferred": "Q102867797" + } + } +} \ No newline at end of file